From 8f63463c8c68efd0943757c590849e482d293ace Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Mon, 7 Aug 2023 09:54:33 +0200 Subject: [PATCH 1/7] Adjusted logic for testnet run --- .github/workflows/e2e_testnet_daily.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e_testnet_daily.yml b/.github/workflows/e2e_testnet_daily.yml index 53ffc5e41..ff2eee724 100644 --- a/.github/workflows/e2e_testnet_daily.yml +++ b/.github/workflows/e2e_testnet_daily.yml @@ -1,5 +1,6 @@ name: e2e_testnet_daily on: + pull_request: workflow_dispatch: inputs: cl_branch_ref: @@ -162,14 +163,14 @@ jobs: CHAINLINK_ENV_USER: ${{ github.actor }} TEST_LOG_LEVEL: debug SELECTED_NETWORKS: SIMULATED - RPC_URL: ${{ github.event_name == 'schedule' && 'https://api.devnet.solana.com' || github.event.inputs.RPC_URL }} - WS_URL: ${{ github.event_name == 'schedule' && 'wss://api.devnet.solana.com/' || github.event.inputs.WS_URL }} + RPC_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.RPC_URL || 'https://api.devnet.solana.com' }} + WS_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.WS_URL || 'wss://api.devnet.solana.com/' }} PROGRAM_ID_OCR2: 9v5sGbNhyTM23yVvczzPbk5NtCqrARQpZjuzebBur43h PROGRAM_ID_ACCESS_CONTROLLER: 5Gm8JySC3RzGonihF1hj1kZkjHyyW7qxJNvyzq1ieAY5 PROGRAM_ID_STORE: ANooJg7j9UxgJ2DNuLqUJs5h956qzc5LdPLFFtQdDb8M LINK_TOKEN: Dmw5mDvteezKfop9zd3RQbJmZfBATF3QuSqDU66axyts VAULT_ADDRESS: G27m7KxTh4KVLapxB9MXfEA8HLUfYuGYQ1ELEs2zQdiQ - PRIVATE_KEY: ${{ github.event_name == 'schedule' && secrets.PRIVATE_KEY || github.event.inputs.PRIVATE_KEY }} + PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} INTERNAL_DOCKER_REPO: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com steps: - name: Collect Metrics From dc3c69dd8f74acf20247c460d7c81fe6ae6b35e0 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Mon, 7 Aug 2023 10:23:27 +0200 Subject: [PATCH 2/7] Added install deps for gauntlet --- integration-tests/gauntlet/gauntlet_solana.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/integration-tests/gauntlet/gauntlet_solana.go b/integration-tests/gauntlet/gauntlet_solana.go index ef779f966..a44b56d86 100644 --- a/integration-tests/gauntlet/gauntlet_solana.go +++ b/integration-tests/gauntlet/gauntlet_solana.go @@ -490,7 +490,11 @@ func (sg *SolanaGauntlet) DeployOCR2() (string, error) { return "", nil } func (sg *SolanaGauntlet) ConfigureOCR2(onChainConfig common.OCR2OnChainConfig, offChainConfig common.OCROffChainConfig, payees common.PayeeConfig, proposalAccept common.ProposalAcceptConfig) error { - _, err := sg.ProposeOnChainConfig(sg.ProposalAddress, onChainConfig, sg.OcrAddress) + err := sg.InstallDependencies() + if err != nil { + return err + } + _, err = sg.ProposeOnChainConfig(sg.ProposalAddress, onChainConfig, sg.OcrAddress) if err != nil { return err } From fec3454c4e2b1b22729fd250ec874c526712fb08 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Mon, 7 Aug 2023 10:55:06 +0200 Subject: [PATCH 3/7] Gauntlet fix --- integration-tests/gauntlet/gauntlet_solana.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/integration-tests/gauntlet/gauntlet_solana.go b/integration-tests/gauntlet/gauntlet_solana.go index a44b56d86..2eea42bee 100644 --- a/integration-tests/gauntlet/gauntlet_solana.go +++ b/integration-tests/gauntlet/gauntlet_solana.go @@ -422,6 +422,10 @@ func (sg *SolanaGauntlet) FetchTransmissions(ocrState string) ([]Transmission, e func (sg *SolanaGauntlet) DeployOCR2() (string, error) { var err error + err = sg.InstallDependencies() + if err != nil { + return "", err + } sg.AccessControllerAddress, err = sg.InitializeAccessController() if err != nil { @@ -490,11 +494,7 @@ func (sg *SolanaGauntlet) DeployOCR2() (string, error) { return "", nil } func (sg *SolanaGauntlet) ConfigureOCR2(onChainConfig common.OCR2OnChainConfig, offChainConfig common.OCROffChainConfig, payees common.PayeeConfig, proposalAccept common.ProposalAcceptConfig) error { - err := sg.InstallDependencies() - if err != nil { - return err - } - _, err = sg.ProposeOnChainConfig(sg.ProposalAddress, onChainConfig, sg.OcrAddress) + _, err := sg.ProposeOnChainConfig(sg.ProposalAddress, onChainConfig, sg.OcrAddress) if err != nil { return err } From d0d63a8c5e5efb3f4d2b857f242bc50d81a00eec Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Mon, 7 Aug 2023 15:54:33 +0200 Subject: [PATCH 4/7] Fixed contract addresses --- .github/workflows/e2e_testnet_daily.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e_testnet_daily.yml b/.github/workflows/e2e_testnet_daily.yml index ff2eee724..ea6b91e31 100644 --- a/.github/workflows/e2e_testnet_daily.yml +++ b/.github/workflows/e2e_testnet_daily.yml @@ -165,9 +165,9 @@ jobs: SELECTED_NETWORKS: SIMULATED RPC_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.RPC_URL || 'https://api.devnet.solana.com' }} WS_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.WS_URL || 'wss://api.devnet.solana.com/' }} - PROGRAM_ID_OCR2: 9v5sGbNhyTM23yVvczzPbk5NtCqrARQpZjuzebBur43h - PROGRAM_ID_ACCESS_CONTROLLER: 5Gm8JySC3RzGonihF1hj1kZkjHyyW7qxJNvyzq1ieAY5 - PROGRAM_ID_STORE: ANooJg7j9UxgJ2DNuLqUJs5h956qzc5LdPLFFtQdDb8M + PROGRAM_ID_OCR2: cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ + PROGRAM_ID_ACCESS_CONTROLLER: 9xi644bRR8birboDGdTiwBq3C7VEeR7VuamRYYXCubUW + PROGRAM_ID_STORE: HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny LINK_TOKEN: Dmw5mDvteezKfop9zd3RQbJmZfBATF3QuSqDU66axyts VAULT_ADDRESS: G27m7KxTh4KVLapxB9MXfEA8HLUfYuGYQ1ELEs2zQdiQ PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} From e11b7cb1e247e63c6919d416046ae4986d61b4e0 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Tue, 8 Aug 2023 09:13:12 +0200 Subject: [PATCH 5/7] Checking CI fix for env vars --- .github/workflows/e2e_testnet_daily.yml | 19 +- .../chainlink-0_0/chainlink-db.log | 62 + .../chainlink-0_0/chainlink-db_dump.sql | 22 + .../chainlink-0_0/node.log | 1053 ++++++++ .../chainlink-0_1/chainlink-db.log | 62 + .../chainlink-0_1/chainlink-db_dump.sql | 22 + .../chainlink-0_1/node.log | 1963 ++++++++++++++ .../chainlink-0_2/chainlink-db.log | 62 + .../chainlink-0_2/chainlink-db_dump.sql | 22 + .../chainlink-0_2/node.log | 1715 +++++++++++++ .../chainlink-0_3/chainlink-db.log | 62 + .../chainlink-0_3/chainlink-db_dump.sql | 22 + .../chainlink-0_3/node.log | 1722 +++++++++++++ .../chainlink-0_4/chainlink-db.log | 62 + .../chainlink-0_4/chainlink-db_dump.sql | 22 + .../chainlink-0_4/node.log | 1810 +++++++++++++ .../qa-mock-adapter_0/qa-mock-adapter.log | 305 +++ .../sol_0/sol-val.log | 2248 +++++++++++++++++ .../chainlink-0_0/chainlink-db.log | 62 + .../chainlink-0_0/chainlink-db_dump.sql | 22 + .../chainlink-0_0/node.log | 1050 ++++++++ .../chainlink-0_1/chainlink-db.log | 62 + .../chainlink-0_1/chainlink-db_dump.sql | 22 + .../chainlink-0_1/node.log | 1786 +++++++++++++ .../chainlink-0_2/chainlink-db.log | 62 + .../chainlink-0_2/chainlink-db_dump.sql | 22 + .../chainlink-0_2/node.log | 1771 +++++++++++++ .../chainlink-0_3/chainlink-db.log | 62 + .../chainlink-0_3/chainlink-db_dump.sql | 22 + .../chainlink-0_3/node.log | 1799 +++++++++++++ .../chainlink-0_4/chainlink-db.log | 62 + .../chainlink-0_4/chainlink-db_dump.sql | 22 + .../chainlink-0_4/node.log | 1686 +++++++++++++ .../qa-mock-adapter_0/qa-mock-adapter.log | 288 +++ .../sol_0/sol-val.log | 2239 ++++++++++++++++ .../chainlink-0_0/chainlink-db.log | 62 + .../chainlink-0_0/chainlink-db_dump.sql | 22 + .../chainlink-0_0/node.log | 581 +++++ .../chainlink-0_1/chainlink-db.log | 62 + .../chainlink-0_1/chainlink-db_dump.sql | 22 + .../chainlink-0_1/node.log | 782 ++++++ .../chainlink-0_2/chainlink-db.log | 62 + .../chainlink-0_2/chainlink-db_dump.sql | 22 + .../chainlink-0_2/node.log | 881 +++++++ .../chainlink-0_3/chainlink-db.log | 62 + .../chainlink-0_3/chainlink-db_dump.sql | 22 + .../chainlink-0_3/node.log | 995 ++++++++ .../chainlink-0_4/chainlink-db.log | 62 + .../chainlink-0_4/chainlink-db_dump.sql | 22 + .../chainlink-0_4/node.log | 1021 ++++++++ .../qa-mock-adapter_0/qa-mock-adapter.log | 244 ++ .../sol_0/sol-val.log | 1801 +++++++++++++ 52 files changed, 29010 insertions(+), 9 deletions(-) create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log create mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log create mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log diff --git a/.github/workflows/e2e_testnet_daily.yml b/.github/workflows/e2e_testnet_daily.yml index ea6b91e31..44d9aac94 100644 --- a/.github/workflows/e2e_testnet_daily.yml +++ b/.github/workflows/e2e_testnet_daily.yml @@ -163,15 +163,6 @@ jobs: CHAINLINK_ENV_USER: ${{ github.actor }} TEST_LOG_LEVEL: debug SELECTED_NETWORKS: SIMULATED - RPC_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.RPC_URL || 'https://api.devnet.solana.com' }} - WS_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.WS_URL || 'wss://api.devnet.solana.com/' }} - PROGRAM_ID_OCR2: cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ - PROGRAM_ID_ACCESS_CONTROLLER: 9xi644bRR8birboDGdTiwBq3C7VEeR7VuamRYYXCubUW - PROGRAM_ID_STORE: HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny - LINK_TOKEN: Dmw5mDvteezKfop9zd3RQbJmZfBATF3QuSqDU66axyts - VAULT_ADDRESS: G27m7KxTh4KVLapxB9MXfEA8HLUfYuGYQ1ELEs2zQdiQ - PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} - INTERNAL_DOCKER_REPO: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com steps: - name: Collect Metrics if: always() @@ -185,6 +176,16 @@ jobs: - name: Checkout the repo uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 - name: Run Tests + env: + RPC_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.RPC_URL || 'https://api.devnet.solana.com' }} + WS_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.WS_URL || 'wss://api.devnet.solana.com/' }} + PROGRAM_ID_OCR2: cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ + PROGRAM_ID_ACCESS_CONTROLLER: 9xi644bRR8birboDGdTiwBq3C7VEeR7VuamRYYXCubUW + PROGRAM_ID_STORE: HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny + LINK_TOKEN: Dmw5mDvteezKfop9zd3RQbJmZfBATF3QuSqDU66axyts + VAULT_ADDRESS: G27m7KxTh4KVLapxB9MXfEA8HLUfYuGYQ1ELEs2zQdiQ + PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} + INTERNAL_DOCKER_REPO: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@ad22fbd6f4d108b82aaf49b527bcf40f32babea8 # v2.2.1 with: test_command_to_run: cd ./integration-tests && go test -timeout 24h -count=1 -run TestSolanaGauntletOCRV2Smoke -json $(args) ./smoke 2>&1 | tee /tmp/gotest.log | gotestfmt diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log new file mode 100644 index 000000000..b75d79281 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-03 05:56:40.051 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.063 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC +2023-08-03 05:56:40.136 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-03 05:56:40.752 UTC [48] LOG: received fast shutdown request +.2023-08-03 05:56:40.755 UTC [48] LOG: aborting any active transactions +2023-08-03 05:56:40.756 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 05:56:40.757 UTC [50] LOG: shutting down +2023-08-03 05:56:40.848 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 05:56:40.862 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 05:56:40.862 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 05:56:40.864 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.965 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC +2023-08-03 05:56:40.984 UTC [1] LOG: database system is ready to accept connections +2023-08-03 05:56:42.683 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 05:56:43.546 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 05:56:43.546 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 05:56:43.546 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 05:56:43.546 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 05:56:43.636 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 05:56:43.636 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log new file mode 100644 index 000000000..c06a535c9 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log @@ -0,0 +1,1053 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-03T05:56:43.456Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.456Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.456Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"428b4e5b-108e-4531-86e6-2ab90e53ee9d"} +{"level":"debug","ts":"2023-08-03T05:56:43.544Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"428b4e5b-108e-4531-86e6-2ab90e53ee9d"} +{"level":"debug","ts":"2023-08-03T05:56:43.546Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/03 05:56:44 OK 0001_initial.sql +2023/08/03 05:56:44 OK 0002_gormv2.sql +2023/08/03 05:56:44 OK 0003_eth_logs_table.sql +2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql +2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql +2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 05:56:44 OK 0010_bridge_fk.sql +2023/08/03 05:56:44 OK 0011_latest_round_requested.sql +2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql +2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql +2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql +2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 05:56:44 OK 0018_add_node_version_table.sql +2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 05:56:44 OK 0020_remove_result_task.sql +2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql +2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql +2023/08/03 05:56:44 OK 0025_create_log_config_table.sql +2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql +2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 05:56:44 OK 0028_vrf_v2.sql +2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql +2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql +2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql +2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql +2023/08/03 05:56:44 OK 0036_external_job_id.go +2023/08/03 05:56:44 OK 0037_cascade_deletes.sql +2023/08/03 05:56:44 OK 0038_create_csa_keys.sql +2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql +2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql +2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql +2023/08/03 05:56:44 OK 0042_create_job_proposals.sql +2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go +2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 05:56:44 OK 0056_multichain.go +2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql +2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql +2023/08/03 05:56:44 OK 0061_multichain_relations.sql +2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql +2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql +2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql +2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql +2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql +2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql +2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql +2023/08/03 05:56:44 OK 0075_unique_job_names.sql +2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql +2023/08/03 05:56:44 OK 0078_only_one_version.sql +2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql +2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql +2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 05:56:44 OK 0082_lease_lock.sql +2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql +2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 05:56:44 OK 0087_ocr2_tables.sql +2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql +2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql +2023/08/03 05:56:44 OK 0091_ocr2_relay.sql +2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql +2023/08/03 05:56:44 OK 0093_terra_txm.sql +2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql +2023/08/03 05:56:44 OK 0095_terra_fcd.sql +2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql +2023/08/03 05:56:44 OK 0097_bootstrap_spec.sql +2023/08/03 05:56:44 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 05:56:44 OK 0099_terra_msgs_created_at.sql +2023/08/03 05:56:44 OK 0100_bootstrap_config.sql +2023/08/03 05:56:44 OK 0101_generic_ocr2.sql +2023/08/03 05:56:44 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 05:56:44 OK 0103_terra_msgs_type_url.sql +2023/08/03 05:56:44 OK 0104_terra_cascade_delete.sql +2023/08/03 05:56:44 OK 0105_create_forwarder_addresses.sql +2023/08/03 05:56:44 OK 0106_evm_node_uniqueness.sql +2023/08/03 05:56:44 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 05:56:44 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 05:56:44 OK 0109_solana_chains_nodes.sql +2023/08/03 05:56:44 OK 0110_add_vrf_chunk_size.sql +2023/08/03 05:56:44 OK 0111_terra_msgs_state_started.sql +2023/08/03 05:56:44 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 05:56:44 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 05:56:44 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 05:56:44 OK 0115_log_poller.sql +2023/08/03 05:56:44 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 05:56:44 OK 0117_add_log_poller_idx.sql +2023/08/03 05:56:44 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 05:56:44 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 05:56:44 OK 0120_log_poller_data_idx.sql +2023/08/03 05:56:44 OK 0121_remove_log_configs.sql +2023/08/03 05:56:44 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 05:56:44 OK 0123_terra_idx_simplify.sql +2023/08/03 05:56:44 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 05:56:44 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 05:56:44 OK 0126_remove_observation_source.sql +2023/08/03 05:56:44 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 05:56:44 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 05:56:44 OK 0129_add_job_gas_limit.sql +2023/08/03 05:56:44 OK 0130_starknet_chains_nodes.sql +2023/08/03 05:56:44 OK 0131_add_multi_user.sql +2023/08/03 05:56:44 OK 0132_log_index_uniqueness.sql +2023/08/03 05:56:44 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 05:56:44 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 05:56:44 OK 0135_tx_index_not_null.sql +2023/08/03 05:56:44 OK 0136_add_job_allow_forwarding.sql +2023/08/03 05:56:44 OK 0137_remove_tx_index.sql +2023/08/03 05:56:44 OK 0138_rename_allowforwarding_field.sql +2023/08/03 05:56:44 OK 0139_multi_chain_keys.sql +2023/08/03 05:56:44 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 05:56:44 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 05:56:44 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 05:56:44 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 05:56:44 OK 0144_optimize_lp.sql +2023/08/03 05:56:44 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0148_dkg_shares.sql +2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql +2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql +2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql +2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql +2023/08/03 05:56:45 OK 0155_remove_terra.sql +2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql +2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql +2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql +2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql +2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 05:56:45 OK 0164_add_cosmos.sql +2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql +2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql +2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 05:56:45 OK 0168_drop_node_tables.sql +2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql +2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql +2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql +2023/08/03 05:56:45 OK 0174_vrf_owner.sql +2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql +2023/08/03 05:56:45 OK 0176_s4_shared_table.sql +2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql +2023/08/03 05:56:45 OK 0178_drop_access_list.sql +2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql +2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql +2023/08/03 05:56:45 OK 0183_functions_new_fields.sql +2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql +2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 05:56:45 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.263Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 29a721b41a5d16504ae2c9ccd6cb3a0ac921d5c408d5185e14ae0e791c83d02d for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.263Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:51.443Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 7vbZyBEL4FjQ3MMySnHfLi5egEBiLfmH1tNnpb878jGU","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:53.363Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 50b2e1f40d84d3fb7cc6c3da1adea1ee2c801b6ab5143fa090710115cc6dfaae","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.556Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.745Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.745Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T05:56:55.746Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T05:56:55.746Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T05:56:55.746Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-03T05:56:55.747Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 46367. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":46367} +{"level":"debug","ts":"2023-08-03T05:56:55.747Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":46367,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T05:56:55.748Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenPort":46367,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/46367","id":"PeerV1","v1peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:56:55.748Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:56:55.749Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","in":"recvLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:56:55.751Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T05:56:55.751Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.751Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.01s","version":"2.4.0@d0c54ea","appID":"428b4e5b-108e-4531-86e6-2ab90e53ee9d"} +{"level":"debug","ts":"2023-08-03T05:56:55.752Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000713153} +{"level":"info","ts":"2023-08-03T05:56:55.759Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T05:56:55.763Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010950662} +{"level":"debug","ts":"2023-08-03T05:56:55.763Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:57.157Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:56:57","latency":"2.696402ms"} +{"level":"debug","ts":"2023-08-03T05:56:57.158Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:56:57","latency":"210.437µs"} +{"level":"debug","ts":"2023-08-03T05:57:00.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:57:00.750Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T05:57:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:02","latency":"109.212µs"} +{"level":"debug","ts":"2023-08-03T05:57:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:02","latency":"100.643µs"} +{"level":"info","ts":"2023-08-03T05:57:05.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-03T05:57:05.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:07","latency":"96.005µs"} +{"level":"debug","ts":"2023-08-03T05:57:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:07","latency":"90.19µs"} +{"level":"debug","ts":"2023-08-03T05:57:10.750Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:12","latency":"94.001µs"} +{"level":"debug","ts":"2023-08-03T05:57:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:12","latency":"89.237µs"} +{"level":"debug","ts":"2023-08-03T05:57:15.751Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:17","latency":"106.193µs"} +{"level":"debug","ts":"2023-08-03T05:57:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:17","latency":"114.054µs"} +{"level":"debug","ts":"2023-08-03T05:57:20.752Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:22","latency":"88.844µs"} +{"level":"debug","ts":"2023-08-03T05:57:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:22","latency":"94.164µs"} +{"level":"debug","ts":"2023-08-03T05:57:25.752Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:27","latency":"93.404µs"} +{"level":"debug","ts":"2023-08-03T05:57:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:27","latency":"89.028µs"} +{"level":"debug","ts":"2023-08-03T05:57:30.753Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:32","latency":"93.04µs"} +{"level":"debug","ts":"2023-08-03T05:57:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:32","latency":"95.591µs"} +{"level":"debug","ts":"2023-08-03T05:57:33.272Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:57:33.274Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T05:57:33.357Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T05:57:33.358Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:33","latency":"85.799271ms"} +{"level":"debug","ts":"2023-08-03T05:57:35.754Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:57:36.475Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:36","latency":"2.506501ms"} +{"level":"debug","ts":"2023-08-03T05:57:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:37","latency":"163.889µs"} +{"level":"debug","ts":"2023-08-03T05:57:37.157Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:37","latency":"95.008µs"} +{"level":"debug","ts":"2023-08-03T05:57:38.556Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:38","latency":"1.876749347s"} +{"level":"debug","ts":"2023-08-03T05:57:40.754Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:57:40.859Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:40","latency":"2.097825133s"} +{"level":"debug","ts":"2023-08-03T05:57:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:42","latency":"95.122µs"} +{"level":"debug","ts":"2023-08-03T05:57:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:42","latency":"78.444µs"} +{"level":"debug","ts":"2023-08-03T05:57:45.755Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:47","latency":"93.08µs"} +{"level":"debug","ts":"2023-08-03T05:57:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:47","latency":"104.451µs"} +{"level":"debug","ts":"2023-08-03T05:57:50.756Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:52","latency":"95.024µs"} +{"level":"debug","ts":"2023-08-03T05:57:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:52","latency":"92.944µs"} +{"level":"debug","ts":"2023-08-03T05:57:55.756Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:57","latency":"92.793µs"} +{"level":"debug","ts":"2023-08-03T05:57:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:57","latency":"118.944µs"} +{"level":"debug","ts":"2023-08-03T05:58:00.165Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"57.285µs"} +{"level":"debug","ts":"2023-08-03T05:58:00.370Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"68.073µs"} +{"level":"debug","ts":"2023-08-03T05:58:00.757Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:02","latency":"105.294µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:02","latency":"104.809µs"} +{"level":"debug","ts":"2023-08-03T05:58:05.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:07","latency":"89.335µs"} +{"level":"debug","ts":"2023-08-03T05:58:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:07","latency":"72.815µs"} +{"level":"debug","ts":"2023-08-03T05:58:10.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:12","latency":"96.886µs"} +{"level":"debug","ts":"2023-08-03T05:58:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:12","latency":"85.7µs"} +{"level":"debug","ts":"2023-08-03T05:58:15.759Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:17","latency":"85.581µs"} +{"level":"debug","ts":"2023-08-03T05:58:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:17","latency":"73.529µs"} +{"level":"debug","ts":"2023-08-03T05:58:20.759Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:22","latency":"100.731µs"} +{"level":"debug","ts":"2023-08-03T05:58:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:22","latency":"89.579µs"} +{"level":"debug","ts":"2023-08-03T05:58:25.760Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:27","latency":"88.838µs"} +{"level":"debug","ts":"2023-08-03T05:58:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:27","latency":"102.254µs"} +{"level":"debug","ts":"2023-08-03T05:58:30.760Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:32","latency":"86.212µs"} +{"level":"debug","ts":"2023-08-03T05:58:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:32","latency":"96.417µs"} +{"level":"debug","ts":"2023-08-03T05:58:35.760Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:37","latency":"82.768µs"} +{"level":"debug","ts":"2023-08-03T05:58:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:37","latency":"86.439µs"} +{"level":"debug","ts":"2023-08-03T05:58:40.761Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:58:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:42","latency":"84.071µs"} +{"level":"debug","ts":"2023-08-03T05:58:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:42","latency":"91.016µs"} +{"level":"debug","ts":"2023-08-03T05:58:45.762Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:47","latency":"95.305µs"} +{"level":"debug","ts":"2023-08-03T05:58:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:47","latency":"96.68µs"} +{"level":"debug","ts":"2023-08-03T05:58:50.762Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:52","latency":"81.558µs"} +{"level":"debug","ts":"2023-08-03T05:58:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:52","latency":"84.507µs"} +{"level":"debug","ts":"2023-08-03T05:58:55.763Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:57","latency":"89.034µs"} +{"level":"debug","ts":"2023-08-03T05:58:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:57","latency":"78.538µs"} +{"level":"debug","ts":"2023-08-03T05:59:00.763Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:59:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:02","latency":"90.085µs"} +{"level":"debug","ts":"2023-08-03T05:59:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:02","latency":"95.474µs"} +{"level":"debug","ts":"2023-08-03T05:59:05.763Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:59:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:07","latency":"89.107µs"} +{"level":"debug","ts":"2023-08-03T05:59:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:07","latency":"88.455µs"} +{"level":"debug","ts":"2023-08-03T05:59:10.764Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:12","latency":"84.335µs"} +{"level":"debug","ts":"2023-08-03T05:59:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:12","latency":"85.009µs"} +{"level":"debug","ts":"2023-08-03T05:59:15.765Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:17","latency":"79.178µs"} +{"level":"debug","ts":"2023-08-03T05:59:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:17","latency":"90.877µs"} +{"level":"debug","ts":"2023-08-03T05:59:20.765Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:59:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:22","latency":"98.401µs"} +{"level":"debug","ts":"2023-08-03T05:59:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:22","latency":"96.513µs"} +{"level":"debug","ts":"2023-08-03T05:59:25.766Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:27","latency":"85.57µs"} +{"level":"debug","ts":"2023-08-03T05:59:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:27","latency":"85.283µs"} +{"level":"debug","ts":"2023-08-03T05:59:30.766Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:32","latency":"90.58µs"} +{"level":"debug","ts":"2023-08-03T05:59:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:32","latency":"79.461µs"} +{"level":"debug","ts":"2023-08-03T05:59:35.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:59:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:37","latency":"90.125µs"} +{"level":"debug","ts":"2023-08-03T05:59:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:37","latency":"76.582µs"} +{"level":"debug","ts":"2023-08-03T05:59:40.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:59:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:42","latency":"97.358µs"} +{"level":"debug","ts":"2023-08-03T05:59:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:42","latency":"154.471µs"} +{"level":"debug","ts":"2023-08-03T05:59:45.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T05:59:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:47","latency":"93.556µs"} +{"level":"debug","ts":"2023-08-03T05:59:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:47","latency":"100.719µs"} +{"level":"debug","ts":"2023-08-03T05:59:50.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:52","latency":"95.772µs"} +{"level":"debug","ts":"2023-08-03T05:59:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:52","latency":"98.778µs"} +{"level":"debug","ts":"2023-08-03T05:59:55.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:57","latency":"82.477µs"} +{"level":"debug","ts":"2023-08-03T05:59:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:57","latency":"86.427µs"} +{"level":"debug","ts":"2023-08-03T06:00:00.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:02","latency":"72.808µs"} +{"level":"debug","ts":"2023-08-03T06:00:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:02","latency":"103.648µs"} +{"level":"debug","ts":"2023-08-03T06:00:05.770Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:07","latency":"93.94µs"} +{"level":"debug","ts":"2023-08-03T06:00:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:07","latency":"96.286µs"} +{"level":"debug","ts":"2023-08-03T06:00:10.771Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:00:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:12","latency":"96.906µs"} +{"level":"debug","ts":"2023-08-03T06:00:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:12","latency":"110.979µs"} +{"level":"debug","ts":"2023-08-03T06:00:15.772Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:17","latency":"95.847µs"} +{"level":"debug","ts":"2023-08-03T06:00:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:17","latency":"90.033µs"} +{"level":"debug","ts":"2023-08-03T06:00:20.772Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:00:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:22","latency":"86.812µs"} +{"level":"debug","ts":"2023-08-03T06:00:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:22","latency":"82.501µs"} +{"level":"debug","ts":"2023-08-03T06:00:25.773Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:27","latency":"84.123µs"} +{"level":"debug","ts":"2023-08-03T06:00:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:27","latency":"88.256µs"} +{"level":"debug","ts":"2023-08-03T06:00:30.773Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:00:32.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:32","latency":"88.318µs"} +{"level":"debug","ts":"2023-08-03T06:00:32.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:32","latency":"103.685µs"} +{"level":"debug","ts":"2023-08-03T06:00:35.774Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:37","latency":"83.798µs"} +{"level":"debug","ts":"2023-08-03T06:00:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:37","latency":"87.143µs"} +{"level":"debug","ts":"2023-08-03T06:00:40.775Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:00:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:42","latency":"100.145µs"} +{"level":"debug","ts":"2023-08-03T06:00:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:42","latency":"98.819µs"} +{"level":"debug","ts":"2023-08-03T06:00:45.776Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:47","latency":"91.315µs"} +{"level":"debug","ts":"2023-08-03T06:00:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:47","latency":"89.76µs"} +{"level":"debug","ts":"2023-08-03T06:00:50.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:52","latency":"91.225µs"} +{"level":"debug","ts":"2023-08-03T06:00:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:52","latency":"84.401µs"} +{"level":"debug","ts":"2023-08-03T06:00:55.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:00:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:57","latency":"88.766µs"} +{"level":"debug","ts":"2023-08-03T06:00:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:57","latency":"82.989µs"} +{"level":"debug","ts":"2023-08-03T06:01:00.778Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:02","latency":"110.096µs"} +{"level":"debug","ts":"2023-08-03T06:01:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:02","latency":"117.066µs"} +{"level":"debug","ts":"2023-08-03T06:01:05.779Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:07","latency":"88.715µs"} +{"level":"debug","ts":"2023-08-03T06:01:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:07","latency":"122.265µs"} +{"level":"debug","ts":"2023-08-03T06:01:10.780Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:12","latency":"92.658µs"} +{"level":"debug","ts":"2023-08-03T06:01:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:12","latency":"99.806µs"} +{"level":"debug","ts":"2023-08-03T06:01:15.780Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:17","latency":"92.036µs"} +{"level":"debug","ts":"2023-08-03T06:01:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:17","latency":"97.519µs"} +{"level":"debug","ts":"2023-08-03T06:01:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:22","latency":"111.395µs"} +{"level":"debug","ts":"2023-08-03T06:01:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:22","latency":"75.706µs"} +{"level":"debug","ts":"2023-08-03T06:01:25.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:27","latency":"86.575µs"} +{"level":"debug","ts":"2023-08-03T06:01:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:27","latency":"84.295µs"} +{"level":"debug","ts":"2023-08-03T06:01:30.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:32","latency":"98.291µs"} +{"level":"debug","ts":"2023-08-03T06:01:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:32","latency":"112.592µs"} +{"level":"debug","ts":"2023-08-03T06:01:35.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:37","latency":"86.798µs"} +{"level":"debug","ts":"2023-08-03T06:01:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:37","latency":"85.319µs"} +{"level":"debug","ts":"2023-08-03T06:01:40.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:01:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:42","latency":"97.506µs"} +{"level":"debug","ts":"2023-08-03T06:01:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:42","latency":"71.706µs"} +{"level":"debug","ts":"2023-08-03T06:01:45.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:47","latency":"92.277µs"} +{"level":"debug","ts":"2023-08-03T06:01:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:47","latency":"82.416µs"} +{"level":"debug","ts":"2023-08-03T06:01:50.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:52","latency":"78.775µs"} +{"level":"debug","ts":"2023-08-03T06:01:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:52","latency":"106.084µs"} +{"level":"debug","ts":"2023-08-03T06:01:55.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:57","latency":"97.215µs"} +{"level":"debug","ts":"2023-08-03T06:01:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:57","latency":"86.858µs"} +{"level":"debug","ts":"2023-08-03T06:02:00.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:02:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:02","latency":"91.494µs"} +{"level":"debug","ts":"2023-08-03T06:02:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:02","latency":"90.272µs"} +{"level":"info","ts":"2023-08-03T06:02:05.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0} +{"level":"debug","ts":"2023-08-03T06:02:05.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:07","latency":"87.637µs"} +{"level":"debug","ts":"2023-08-03T06:02:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:07","latency":"83.586µs"} +{"level":"debug","ts":"2023-08-03T06:02:10.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:02:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:12","latency":"94.105µs"} +{"level":"debug","ts":"2023-08-03T06:02:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:12","latency":"84.427µs"} +{"level":"debug","ts":"2023-08-03T06:02:15.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:16.256Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:16","latency":"95.124µs"} +{"level":"debug","ts":"2023-08-03T06:02:16.463Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:16","latency":"32.521µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:17","latency":"99.733µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:17","latency":"92.978µs"} +{"level":"debug","ts":"2023-08-03T06:02:20.030Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:20","latency":"3.207534ms"} +{"level":"info","ts":"2023-08-03T06:02:20.256Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} +{"level":"debug","ts":"2023-08-03T06:02:20.257Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-03T06:02:20.257Z","caller":"ocrbootstrap/delegate.go:110","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:02:20.257Z","caller":"ocrbootstrap/delegate.go:127","msg":"Launching new bootstrap node","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","args":{"BootstrapperFactory":{"BinaryNetworkEndpointFactory":{},"BootstrapperFactory":{}},"V2Bootstrappers":null,"ContractConfigTracker":{},"Database":{},"LocalConfig":{"BlockchainTimeout":20000000000,"ContractConfigConfirmations":1,"SkipContractConfigConfirmations":false,"ContractConfigTrackerPollInterval":15000000000,"ContractTransmitterTransmitTimeout":10000000000,"DatabaseTimeout":10000000000,"MinOCR2MaxDurationQuery":0,"DevelopmentMode":""},"Logger":{},"MonitoringEndpoint":null,"OffchainConfigDigester":{"ProgramID":"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ","StateID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy"}}} +{"level":"debug","ts":"2023-08-03T06:02:20.257Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} +{"level":"debug","ts":"2023-08-03T06:02:20.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} +{"level":"info","ts":"2023-08-03T06:02:20.424Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} +{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:20.425Z","logger":"OCRBootstrap","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"info","ts":"2023-08-03T06:02:20.425Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:02:20.425Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"bootstrap\\\"\\nname = \\\"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7\\\"\\nforwardingAllowed = false\\n\\n\\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\n\\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:20","latency":"176.052515ms"} +{"level":"debug","ts":"2023-08-03T06:02:20.592Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":null,"peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479"} +{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:02:20.596Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","numLoaded":1,"found":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"],"loaded":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"],"peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"numQueried":5,"numFound":1} +{"level":"info","ts":"2023-08-03T06:02:20.596Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:46","msg":"BootstrapperV2: Initialized","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"bootstrapperV2","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","bootstrappers":null,"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"PeerV2"} +{"level":"info","ts":"2023-08-03T06:02:20.596Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:81","msg":"BootstrapperV2: Started listening","version":"2.4.0@d0c54ea","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"PeerV2","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"bootstrapperV2"} +{"level":"debug","ts":"2023-08-03T06:02:20.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:21.491Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:21.658Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:22","latency":"84.365µs"} +{"level":"debug","ts":"2023-08-03T06:02:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:22","latency":"73.966µs"} +{"level":"debug","ts":"2023-08-03T06:02:22.590Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:22.758Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:23.683Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:23.850Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:24.750Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:24.918Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:24.991Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:02:25.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:25.835Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:26.003Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:26.933Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:27.100Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:27","latency":"84.455µs"} +{"level":"debug","ts":"2023-08-03T06:02:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:27","latency":"89.07µs"} +{"level":"debug","ts":"2023-08-03T06:02:27.942Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:28.109Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:28.993Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:29.160Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:30.090Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:30.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:30.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:31.142Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:31.310Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:32","latency":"71.991µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:32","latency":"110.312µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.172Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:32.339Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:33.255Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.423Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:34.295Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:34.462Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.381Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.549Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.759Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:02:35.790Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-03T06:02:36.002Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","direction":"in","remoteAddr":"10.14.116.75:50564","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:36.392Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:36.560Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:37","latency":"84.797µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:37","latency":"120.824µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.474Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:37.641Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.564Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.731Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:02:39.628Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:39.795Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:40.631Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:40.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:40.798Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:41.656Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:41.824Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:42","latency":"88.602µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:42","latency":"87.881µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.755Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:42.923Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:43.846Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:44.013Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:44.866Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:02:45.033Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:45.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:45.957Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.124Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.966Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.134Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:47","latency":"91.42µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:47","latency":"91.712µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.973Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.140Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.184Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.052Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.219Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:50.556Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.31.21:46286","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","direction":"in"} +{"level":"info","ts":"2023-08-03T06:02:50.556Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-03T06:02:50.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:50.927Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"info","ts":"2023-08-03T06:02:51.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-03T06:02:51.136Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.303Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:52","latency":"84.836µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:52","latency":"87.849µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.375Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:53.273Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.441Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.331Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.498Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.408Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.575Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:56.507Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.675Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:57","latency":"92.671µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:57","latency":"68.647µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.727Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.631Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.799Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:59.674Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.841Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.742Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:00.910Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.982Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:02","latency":"90.837µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:02","latency":"77.765µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.828Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.996Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.895Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.062Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:04.838Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","direction":"in","remoteAddr":"10.14.72.41:42356"} +{"level":"info","ts":"2023-08-03T06:03:04.838Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","streamName":"ragedisco/v1","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd"} +{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}"} +{"level":"debug","ts":"2023-08-03T06:03:04.946Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.113Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:06.029Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.095Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:03:06.196Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.042Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:07","latency":"81.781µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:07","latency":"88.297µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.210Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.559Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:03:07.559Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:03:08.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.275Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.111Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.278Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.183Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.351Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:11.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.375Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:12","latency":"96.623µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:12","latency":"116.376µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.303Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.470Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:13.014Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.48.92:45724","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","direction":"in"} +{"level":"info","ts":"2023-08-03T06:03:13.015Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:03:13.334Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.502Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.391Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.473Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.640Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:03:16.516Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.684Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:16.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:17","latency":"90.767µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:17","latency":"85.796µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.575Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.743Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.671Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.838Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.703Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.870Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.742Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:20.910Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.263Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:03:21.811Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:22","latency":"90.482µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:22","latency":"92.362µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.832Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.000Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.929Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.097Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.937Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.105Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:25.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.145Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.146Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:27","latency":"81.914µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:27","latency":"77.072µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.997Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.164Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.013Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.180Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.069Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.237Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.798Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:31.096Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.263Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.137Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:32","latency":"80.571µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:32","latency":"84.24µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.304Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.168Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.335Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.186Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.354Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.247Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.414Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:03:36.281Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.431Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:03:36.449Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:37","latency":"77.038µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:37","latency":"107.275µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.332Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.499Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.342Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.434Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.601Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.522Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.690Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:03:41.523Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.690Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:42","latency":"75.815µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:42","latency":"130.213µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.584Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.752Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.790Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.676Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.844Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.754Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:45.921Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.797Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.964Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:47","latency":"87.68µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:47","latency":"92.434µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.881Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.049Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.899Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.067Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.940Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:50.964Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.132Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.599Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:03:52.023Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:52","latency":"91.623µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:52","latency":"71.266µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.191Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.047Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.214Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.112Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.280Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.126Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.293Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.802Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:56.146Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.313Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:57","latency":"96.643µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:57","latency":"67.651µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.177Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.345Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.192Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.359Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.253Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.421Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.493Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:01.342Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:02","latency":"83.469µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:02","latency":"88.167µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.394Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.561Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.394Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.561Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.395Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.562Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.423Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.591Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:04:06.459Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.626Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.767Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:04:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:07","latency":"70.354µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:07","latency":"111.376µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.519Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.686Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.726Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.572Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.740Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.648Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:10.815Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.687Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.855Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:12","latency":"77.849µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:12","latency":"86.026µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.740Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.908Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.775Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.942Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.786Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.954Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:04:15.817Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.985Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.906Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.073Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:17","latency":"78.735µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:17","latency":"84.367µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.954Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.122Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.027Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.194Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.079Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.247Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:21.155Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.323Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.935Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:04:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:22","latency":"99.642µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:22","latency":"73.713µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.403Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.245Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.412Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.264Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.431Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.331Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.499Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:26.414Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.581Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:27","latency":"73.456µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:27","latency":"112.847µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.482Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.649Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.482Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.650Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.493Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.660Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.553Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.721Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:04:31.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.727Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:32","latency":"85.747µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:32","latency":"87.495µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.613Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.780Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.629Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.796Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.657Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.825Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.719Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:35.886Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.781Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.949Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.103Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:04:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:37","latency":"113.377µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:37","latency":"73.837µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.806Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.973Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.869Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.037Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.885Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.052Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:04:40.960Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.127Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.966Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.134Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:42","latency":"86.947µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:42","latency":"70.742µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.990Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.158Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.090Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.102Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.270Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:46.122Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.290Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:47","latency":"84.9µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:47","latency":"82.947µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.202Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.369Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.265Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.433Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.349Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.517Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.406Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.573Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.811Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:51.501Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.668Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:52","latency":"89.142µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:52","latency":"79.657µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.271Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:04:52.592Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.760Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.602Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.769Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.648Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.815Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.675Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:04:55.842Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.678Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.846Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:57","latency":"83.337µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:57","latency":"85µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.685Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.853Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.721Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.888Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.730Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.897Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.779Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:00.946Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.826Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.994Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:02","latency":"85.612µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:02","latency":"82.785µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.917Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.085Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.975Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.142Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.990Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.157Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.814Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:06.020Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.187Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.036Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:07","latency":"103.081µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:07","latency":"102.842µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.204Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.438Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:05:08.039Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.206Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.073Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.241Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.123Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.291Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:11.124Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.292Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:12","latency":"100.553µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:12","latency":"111.037µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.157Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.182Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.349Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.224Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.391Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.300Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.468Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:16.339Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.507Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:17","latency":"85.169µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:17","latency":"86.636µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.342Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.374Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.541Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.469Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.636Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.535Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.703Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:21.629Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.797Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:22","latency":"82.216µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:22","latency":"75.399µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.606Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:05:22.667Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.834Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.684Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.852Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.691Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.859Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.770Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.818Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:25.937Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.804Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.971Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:27","latency":"86.174µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:27","latency":"91.614µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.871Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.038Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.913Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.080Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.940Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:30.943Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.110Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.040Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.665µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:32","latency":"84.616µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.207Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.140Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.307Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.227Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.395Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.237Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.404Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:36.263Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.430Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:37","latency":"90.069µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:37","latency":"106.295µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.314Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.481Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.774Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} +{"level":"debug","ts":"2023-08-03T06:05:38.380Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.548Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.421Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.588Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.492Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:41.505Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.672Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:42","latency":"92.507µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:42","latency":"78.974µs"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log new file mode 100644 index 000000000..7c2d1f8dd --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + +waiting for server to start....2023-08-03 05:56:39.954 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:39.968 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC +2023-08-03 05:56:39.972 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +2023-08-03 05:56:40.673 UTC [48] LOG: received fast shutdown request +waiting for server to shut down....2023-08-03 05:56:40.689 UTC [48] LOG: aborting any active transactions +2023-08-03 05:56:40.690 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 05:56:40.746 UTC [50] LOG: shutting down +2023-08-03 05:56:40.764 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 05:56:40.782 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 05:56:40.782 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 05:56:40.784 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.851 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC +2023-08-03 05:56:40.856 UTC [1] LOG: database system is ready to accept connections +2023-08-03 05:56:42.648 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 05:56:43.654 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 05:56:43.654 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 05:56:43.654 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 05:56:43.654 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 05:56:43.655 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 05:56:43.655 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log new file mode 100644 index 000000000..c9a9f34c5 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log @@ -0,0 +1,1963 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T05:56:43.454Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.546Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.546Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:43.547Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-03T05:56:43.647Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.647Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.647Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"e3751374-a428-4a6a-b42f-8756d9e3c95c"} +{"level":"debug","ts":"2023-08-03T05:56:43.652Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"e3751374-a428-4a6a-b42f-8756d9e3c95c"} +{"level":"debug","ts":"2023-08-03T05:56:43.654Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/03 05:56:44 OK 0001_initial.sql +2023/08/03 05:56:44 OK 0002_gormv2.sql +2023/08/03 05:56:44 OK 0003_eth_logs_table.sql +2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql +2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql +2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 05:56:44 OK 0010_bridge_fk.sql +2023/08/03 05:56:44 OK 0011_latest_round_requested.sql +2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql +2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql +2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql +2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 05:56:44 OK 0018_add_node_version_table.sql +2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 05:56:44 OK 0020_remove_result_task.sql +2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql +2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql +2023/08/03 05:56:44 OK 0025_create_log_config_table.sql +2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql +2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 05:56:44 OK 0028_vrf_v2.sql +2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql +2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql +2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql +2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql +2023/08/03 05:56:44 OK 0036_external_job_id.go +2023/08/03 05:56:44 OK 0037_cascade_deletes.sql +2023/08/03 05:56:44 OK 0038_create_csa_keys.sql +2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql +2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql +2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql +2023/08/03 05:56:44 OK 0042_create_job_proposals.sql +2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go +2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 05:56:44 OK 0056_multichain.go +2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql +2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql +2023/08/03 05:56:44 OK 0061_multichain_relations.sql +2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql +2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql +2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql +2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql +2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql +2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql +2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql +2023/08/03 05:56:44 OK 0075_unique_job_names.sql +2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql +2023/08/03 05:56:44 OK 0078_only_one_version.sql +2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql +2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql +2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 05:56:44 OK 0082_lease_lock.sql +2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql +2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 05:56:44 OK 0087_ocr2_tables.sql +2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql +2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql +2023/08/03 05:56:44 OK 0091_ocr2_relay.sql +2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql +2023/08/03 05:56:44 OK 0093_terra_txm.sql +2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql +2023/08/03 05:56:44 OK 0095_terra_fcd.sql +2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql +2023/08/03 05:56:44 OK 0097_bootstrap_spec.sql +2023/08/03 05:56:44 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 05:56:44 OK 0099_terra_msgs_created_at.sql +2023/08/03 05:56:44 OK 0100_bootstrap_config.sql +2023/08/03 05:56:44 OK 0101_generic_ocr2.sql +2023/08/03 05:56:44 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 05:56:44 OK 0103_terra_msgs_type_url.sql +2023/08/03 05:56:44 OK 0104_terra_cascade_delete.sql +2023/08/03 05:56:44 OK 0105_create_forwarder_addresses.sql +2023/08/03 05:56:44 OK 0106_evm_node_uniqueness.sql +2023/08/03 05:56:44 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 05:56:44 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 05:56:44 OK 0109_solana_chains_nodes.sql +2023/08/03 05:56:44 OK 0110_add_vrf_chunk_size.sql +2023/08/03 05:56:44 OK 0111_terra_msgs_state_started.sql +2023/08/03 05:56:44 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 05:56:44 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 05:56:44 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 05:56:44 OK 0115_log_poller.sql +2023/08/03 05:56:44 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 05:56:44 OK 0117_add_log_poller_idx.sql +2023/08/03 05:56:44 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 05:56:44 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 05:56:44 OK 0120_log_poller_data_idx.sql +2023/08/03 05:56:44 OK 0121_remove_log_configs.sql +2023/08/03 05:56:44 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 05:56:44 OK 0123_terra_idx_simplify.sql +2023/08/03 05:56:44 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 05:56:44 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 05:56:44 OK 0126_remove_observation_source.sql +2023/08/03 05:56:44 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 05:56:44 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 05:56:44 OK 0129_add_job_gas_limit.sql +2023/08/03 05:56:44 OK 0130_starknet_chains_nodes.sql +2023/08/03 05:56:44 OK 0131_add_multi_user.sql +2023/08/03 05:56:44 OK 0132_log_index_uniqueness.sql +2023/08/03 05:56:44 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 05:56:44 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 05:56:44 OK 0135_tx_index_not_null.sql +2023/08/03 05:56:44 OK 0136_add_job_allow_forwarding.sql +2023/08/03 05:56:44 OK 0137_remove_tx_index.sql +2023/08/03 05:56:44 OK 0138_rename_allowforwarding_field.sql +2023/08/03 05:56:44 OK 0139_multi_chain_keys.sql +2023/08/03 05:56:44 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 05:56:44 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 05:56:44 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 05:56:44 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 05:56:44 OK 0144_optimize_lp.sql +2023/08/03 05:56:44 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 05:56:44 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 05:56:44 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 05:56:44 OK 0148_dkg_shares.sql +2023/08/03 05:56:44 OK 0149_bridge_last_good_value.sql +2023/08/03 05:56:44 OK 0150_gaslaneprice_vrf.sql +2023/08/03 05:56:44 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 05:56:44 OK 0152_ocr2_multichain.sql +2023/08/03 05:56:44 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 05:56:44 OK 0154_ocr2dr_requests_table.sql +2023/08/03 05:56:44 OK 0155_remove_terra.sql +2023/08/03 05:56:44 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 05:56:44 OK 0157_add_log_poller_filters_table.sql +2023/08/03 05:56:44 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 05:56:44 OK 0159_add_name_to_job_proposals.sql +2023/08/03 05:56:44 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 05:56:44 OK 0161_update_job_proposal_status.sql +2023/08/03 05:56:44 OK 0162_logpoller_block_timestamps.sql +2023/08/03 05:56:44 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 05:56:45 OK 0164_add_cosmos.sql +2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql +2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql +2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 05:56:45 OK 0168_drop_node_tables.sql +2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql +2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql +2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql +2023/08/03 05:56:45 OK 0174_vrf_owner.sql +2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql +2023/08/03 05:56:45 OK 0176_s4_shared_table.sql +2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql +2023/08/03 05:56:45 OK 0178_drop_access_list.sql +2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql +2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql +2023/08/03 05:56:45 OK 0183_functions_new_fields.sql +2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql +2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 05:56:45 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.177Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 298605cd7b4ea9c6a222fb0e6f1bb1306b99a8b811fffa9d69f2bee5557fe374 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.177Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:51.350Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID ByZEoxZWJdb1TpuVF1YgmkMsDUoxbWEB5dYzxj8dhLaH","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:53.264Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 00679eeaae7b1ddd25b20e38b21f9049396c43df65a80622b490d4300e045756","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.455Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.580Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.581Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T05:56:55.581Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T05:56:55.581Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T05:56:55.581Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-03T05:56:55.582Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 45979. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":45979} +{"level":"debug","ts":"2023-08-03T05:56:55.582Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":45979,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T05:56:55.583Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","v1listenPort":45979,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/45979","id":"PeerV1"} +{"level":"info","ts":"2023-08-03T05:56:55.583Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}"} +{"level":"info","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T05:56:55.584Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","in":"recvLoop"} +{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.647Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T05:56:55.648Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.648Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 12.98s","version":"2.4.0@d0c54ea","appID":"e3751374-a428-4a6a-b42f-8756d9e3c95c"} +{"level":"debug","ts":"2023-08-03T05:56:55.648Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000647292} +{"level":"info","ts":"2023-08-03T05:56:55.655Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T05:56:55.659Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.01101258} +{"level":"debug","ts":"2023-08-03T05:56:55.659Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:57.174Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:56:57","latency":"1.763838ms"} +{"level":"debug","ts":"2023-08-03T05:56:57.175Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:56:57","latency":"204.622µs"} +{"level":"debug","ts":"2023-08-03T05:57:00.585Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T05:57:01.055Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T05:57:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:02","latency":"100.013µs"} +{"level":"debug","ts":"2023-08-03T05:57:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:02","latency":"156.319µs"} +{"level":"debug","ts":"2023-08-03T05:57:05.585Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"info","ts":"2023-08-03T05:57:05.585Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} +{"level":"debug","ts":"2023-08-03T05:57:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:07","latency":"95.512µs"} +{"level":"debug","ts":"2023-08-03T05:57:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:07","latency":"81.493µs"} +{"level":"debug","ts":"2023-08-03T05:57:10.586Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:12","latency":"102.508µs"} +{"level":"debug","ts":"2023-08-03T05:57:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:12","latency":"91.438µs"} +{"level":"debug","ts":"2023-08-03T05:57:15.587Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:17","latency":"98.781µs"} +{"level":"debug","ts":"2023-08-03T05:57:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:17","latency":"91.613µs"} +{"level":"debug","ts":"2023-08-03T05:57:20.588Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:22","latency":"97.416µs"} +{"level":"debug","ts":"2023-08-03T05:57:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:22","latency":"110.765µs"} +{"level":"debug","ts":"2023-08-03T05:57:25.588Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:27","latency":"89.144µs"} +{"level":"debug","ts":"2023-08-03T05:57:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:27","latency":"88.267µs"} +{"level":"debug","ts":"2023-08-03T05:57:30.589Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:32.174Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:32","latency":"116.029µs"} +{"level":"debug","ts":"2023-08-03T05:57:32.174Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:32","latency":"92.274µs"} +{"level":"debug","ts":"2023-08-03T05:57:33.982Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:57:33.983Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T05:57:34.071Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T05:57:34.072Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:34","latency":"90.0731ms"} +{"level":"debug","ts":"2023-08-03T05:57:35.590Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:37","latency":"89.035µs"} +{"level":"debug","ts":"2023-08-03T05:57:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:37","latency":"87.901µs"} +{"level":"debug","ts":"2023-08-03T05:57:40.590Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:41.066Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:41","latency":"2.346151ms"} +{"level":"debug","ts":"2023-08-03T05:57:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:42","latency":"78.592µs"} +{"level":"debug","ts":"2023-08-03T05:57:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:42","latency":"93.911µs"} +{"level":"debug","ts":"2023-08-03T05:57:43.166Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:43","latency":"1.89276553s"} +{"level":"debug","ts":"2023-08-03T05:57:45.462Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:45","latency":"2.087971701s"} +{"level":"debug","ts":"2023-08-03T05:57:45.591Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:47","latency":"89.514µs"} +{"level":"debug","ts":"2023-08-03T05:57:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:47","latency":"88.621µs"} +{"level":"debug","ts":"2023-08-03T05:57:50.591Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:52","latency":"84.218µs"} +{"level":"debug","ts":"2023-08-03T05:57:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:52","latency":"76.261µs"} +{"level":"debug","ts":"2023-08-03T05:57:55.592Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:57","latency":"91.512µs"} +{"level":"debug","ts":"2023-08-03T05:57:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:57","latency":"79.756µs"} +{"level":"debug","ts":"2023-08-03T05:58:00.577Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"49.584µs"} +{"level":"debug","ts":"2023-08-03T05:58:00.593Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:00.783Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"68.555µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:02","latency":"96.13µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:02","latency":"109.773µs"} +{"level":"debug","ts":"2023-08-03T05:58:05.593Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T05:58:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:07","latency":"100.937µs"} +{"level":"debug","ts":"2023-08-03T05:58:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:07","latency":"118.871µs"} +{"level":"debug","ts":"2023-08-03T05:58:10.594Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:12.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:12","latency":"95.313µs"} +{"level":"debug","ts":"2023-08-03T05:58:12.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:12","latency":"100.87µs"} +{"level":"debug","ts":"2023-08-03T05:58:15.595Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:17","latency":"84.926µs"} +{"level":"debug","ts":"2023-08-03T05:58:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:17","latency":"93.755µs"} +{"level":"debug","ts":"2023-08-03T05:58:20.595Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:22","latency":"88.499µs"} +{"level":"debug","ts":"2023-08-03T05:58:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:22","latency":"83.983µs"} +{"level":"debug","ts":"2023-08-03T05:58:25.595Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:27","latency":"86.762µs"} +{"level":"debug","ts":"2023-08-03T05:58:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:27","latency":"84.862µs"} +{"level":"debug","ts":"2023-08-03T05:58:30.596Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:32","latency":"93.764µs"} +{"level":"debug","ts":"2023-08-03T05:58:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:32","latency":"102.978µs"} +{"level":"debug","ts":"2023-08-03T05:58:35.596Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:37","latency":"102.368µs"} +{"level":"debug","ts":"2023-08-03T05:58:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:37","latency":"95.91µs"} +{"level":"debug","ts":"2023-08-03T05:58:40.597Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:42","latency":"98.306µs"} +{"level":"debug","ts":"2023-08-03T05:58:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:42","latency":"67.222µs"} +{"level":"debug","ts":"2023-08-03T05:58:45.597Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:47","latency":"72.255µs"} +{"level":"debug","ts":"2023-08-03T05:58:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:47","latency":"90.966µs"} +{"level":"debug","ts":"2023-08-03T05:58:50.598Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:52.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:52","latency":"76.091µs"} +{"level":"debug","ts":"2023-08-03T05:58:52.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:52","latency":"92.937µs"} +{"level":"debug","ts":"2023-08-03T05:58:55.598Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:57","latency":"92.066µs"} +{"level":"debug","ts":"2023-08-03T05:58:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:57","latency":"69.648µs"} +{"level":"debug","ts":"2023-08-03T05:59:00.599Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:02","latency":"104.842µs"} +{"level":"debug","ts":"2023-08-03T05:59:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:02","latency":"97.534µs"} +{"level":"debug","ts":"2023-08-03T05:59:05.599Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:07","latency":"89.153µs"} +{"level":"debug","ts":"2023-08-03T05:59:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:07","latency":"75.147µs"} +{"level":"debug","ts":"2023-08-03T05:59:10.599Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:12","latency":"91.442µs"} +{"level":"debug","ts":"2023-08-03T05:59:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:12","latency":"100.077µs"} +{"level":"debug","ts":"2023-08-03T05:59:15.600Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T05:59:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:17","latency":"88.762µs"} +{"level":"debug","ts":"2023-08-03T05:59:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:17","latency":"89.272µs"} +{"level":"debug","ts":"2023-08-03T05:59:20.601Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:22","latency":"84.267µs"} +{"level":"debug","ts":"2023-08-03T05:59:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:22","latency":"74.968µs"} +{"level":"debug","ts":"2023-08-03T05:59:25.602Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T05:59:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:27","latency":"82.597µs"} +{"level":"debug","ts":"2023-08-03T05:59:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:27","latency":"85.19µs"} +{"level":"debug","ts":"2023-08-03T05:59:30.602Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:32","latency":"85.49µs"} +{"level":"debug","ts":"2023-08-03T05:59:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:32","latency":"98.657µs"} +{"level":"debug","ts":"2023-08-03T05:59:35.603Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:37","latency":"91.446µs"} +{"level":"debug","ts":"2023-08-03T05:59:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:37","latency":"89.295µs"} +{"level":"debug","ts":"2023-08-03T05:59:40.603Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:42","latency":"84.538µs"} +{"level":"debug","ts":"2023-08-03T05:59:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:42","latency":"89.175µs"} +{"level":"debug","ts":"2023-08-03T05:59:45.603Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:47","latency":"92.132µs"} +{"level":"debug","ts":"2023-08-03T05:59:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:47","latency":"132.122µs"} +{"level":"debug","ts":"2023-08-03T05:59:50.604Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:52","latency":"107.496µs"} +{"level":"debug","ts":"2023-08-03T05:59:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:52","latency":"106.219µs"} +{"level":"debug","ts":"2023-08-03T05:59:55.604Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:57","latency":"130.809µs"} +{"level":"debug","ts":"2023-08-03T05:59:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:57","latency":"100.967µs"} +{"level":"debug","ts":"2023-08-03T06:00:00.605Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:02","latency":"104.047µs"} +{"level":"debug","ts":"2023-08-03T06:00:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:02","latency":"105.125µs"} +{"level":"debug","ts":"2023-08-03T06:00:05.606Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:07","latency":"92.032µs"} +{"level":"debug","ts":"2023-08-03T06:00:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:07","latency":"75.136µs"} +{"level":"debug","ts":"2023-08-03T06:00:10.607Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:12","latency":"85.529µs"} +{"level":"debug","ts":"2023-08-03T06:00:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:12","latency":"88.06µs"} +{"level":"debug","ts":"2023-08-03T06:00:15.608Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:00:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:17","latency":"87.352µs"} +{"level":"debug","ts":"2023-08-03T06:00:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:17","latency":"87.448µs"} +{"level":"debug","ts":"2023-08-03T06:00:20.609Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:00:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:22","latency":"96.429µs"} +{"level":"debug","ts":"2023-08-03T06:00:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:22","latency":"92.454µs"} +{"level":"debug","ts":"2023-08-03T06:00:25.610Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:00:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:27","latency":"91.409µs"} +{"level":"debug","ts":"2023-08-03T06:00:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:27","latency":"79.188µs"} +{"level":"debug","ts":"2023-08-03T06:00:30.611Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:32","latency":"93.453µs"} +{"level":"debug","ts":"2023-08-03T06:00:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:32","latency":"72.637µs"} +{"level":"debug","ts":"2023-08-03T06:00:35.611Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:00:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:37","latency":"94.05µs"} +{"level":"debug","ts":"2023-08-03T06:00:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:37","latency":"86.529µs"} +{"level":"debug","ts":"2023-08-03T06:00:40.612Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:42","latency":"77.842µs"} +{"level":"debug","ts":"2023-08-03T06:00:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:42","latency":"96.422µs"} +{"level":"debug","ts":"2023-08-03T06:00:45.613Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:47","latency":"93.356µs"} +{"level":"debug","ts":"2023-08-03T06:00:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:47","latency":"107.53µs"} +{"level":"debug","ts":"2023-08-03T06:00:50.613Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:52","latency":"88.394µs"} +{"level":"debug","ts":"2023-08-03T06:00:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:52","latency":"103.229µs"} +{"level":"debug","ts":"2023-08-03T06:00:55.614Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:57","latency":"88.61µs"} +{"level":"debug","ts":"2023-08-03T06:00:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:57","latency":"85.814µs"} +{"level":"debug","ts":"2023-08-03T06:01:00.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:02","latency":"104.427µs"} +{"level":"debug","ts":"2023-08-03T06:01:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:02","latency":"126.916µs"} +{"level":"debug","ts":"2023-08-03T06:01:05.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:07","latency":"87.467µs"} +{"level":"debug","ts":"2023-08-03T06:01:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:07","latency":"86.425µs"} +{"level":"debug","ts":"2023-08-03T06:01:10.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:12","latency":"87.397µs"} +{"level":"debug","ts":"2023-08-03T06:01:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:12","latency":"88.861µs"} +{"level":"debug","ts":"2023-08-03T06:01:15.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:17","latency":"90.776µs"} +{"level":"debug","ts":"2023-08-03T06:01:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:17","latency":"88.699µs"} +{"level":"debug","ts":"2023-08-03T06:01:20.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:01:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:22","latency":"86.889µs"} +{"level":"debug","ts":"2023-08-03T06:01:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:22","latency":"86.537µs"} +{"level":"debug","ts":"2023-08-03T06:01:25.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:27","latency":"92.719µs"} +{"level":"debug","ts":"2023-08-03T06:01:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:27","latency":"92.078µs"} +{"level":"debug","ts":"2023-08-03T06:01:30.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:32","latency":"98.032µs"} +{"level":"debug","ts":"2023-08-03T06:01:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:32","latency":"93.103µs"} +{"level":"debug","ts":"2023-08-03T06:01:35.619Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:37","latency":"96.826µs"} +{"level":"debug","ts":"2023-08-03T06:01:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:37","latency":"81.28µs"} +{"level":"debug","ts":"2023-08-03T06:01:40.619Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:42","latency":"91.949µs"} +{"level":"debug","ts":"2023-08-03T06:01:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:42","latency":"89.096µs"} +{"level":"debug","ts":"2023-08-03T06:01:45.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:47","latency":"92.796µs"} +{"level":"debug","ts":"2023-08-03T06:01:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:47","latency":"68.742µs"} +{"level":"debug","ts":"2023-08-03T06:01:50.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:01:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:52","latency":"88.92µs"} +{"level":"debug","ts":"2023-08-03T06:01:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:52","latency":"88.912µs"} +{"level":"debug","ts":"2023-08-03T06:01:55.621Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:57","latency":"88.128µs"} +{"level":"debug","ts":"2023-08-03T06:01:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:57","latency":"82.785µs"} +{"level":"debug","ts":"2023-08-03T06:02:00.621Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:02","latency":"113.299µs"} +{"level":"debug","ts":"2023-08-03T06:02:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:02","latency":"111.074µs"} +{"level":"info","ts":"2023-08-03T06:02:05.586Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:05.622Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:07","latency":"83.113µs"} +{"level":"debug","ts":"2023-08-03T06:02:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:07","latency":"86.746µs"} +{"level":"debug","ts":"2023-08-03T06:02:10.623Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:12","latency":"87.825µs"} +{"level":"debug","ts":"2023-08-03T06:02:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:12","latency":"69.337µs"} +{"level":"debug","ts":"2023-08-03T06:02:15.623Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:17.099Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:17","latency":"60.365µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:17","latency":"79.115µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:17","latency":"78.97µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.308Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:17","latency":"66.975µs"} +{"level":"debug","ts":"2023-08-03T06:02:20.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:22","latency":"88.153µs"} +{"level":"debug","ts":"2023-08-03T06:02:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:22","latency":"85.703µs"} +{"level":"debug","ts":"2023-08-03T06:02:25.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:27","latency":"85.143µs"} +{"level":"debug","ts":"2023-08-03T06:02:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:27","latency":"93.278µs"} +{"level":"debug","ts":"2023-08-03T06:02:30.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:32","latency":"102.737µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:32","latency":"104.571µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.990Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:32","latency":"3.430292ms"} +{"level":"info","ts":"2023-08-03T06:02:33.206Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:02:33.206Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} +{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-03T06:02:33.207Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.552Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:33.724Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:33.724Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","duration":897} +{"level":"info","ts":"2023-08-03T06:02:33.725Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"info","ts":"2023-08-03T06:02:33.725Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:02:33.725Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"a5fb6fe54defdf3dbb63d9ffe6ac01932e2107d0bce6d4b290dd8541dbe29a76\\\" \\n\\ntransmitterID = \\\"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:33","latency":"525.909922ms"} +{"level":"debug","ts":"2023-08-03T06:02:33.901Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"info","ts":"2023-08-03T06:02:33.901Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f","streamName":"ragedisco/v1","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} +{"level":"info","ts":"2023-08-03T06:02:33.905Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"numQueried":5,"found":["12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"loaded":["12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","numFound":1,"numLoaded":1} +{"level":"info","ts":"2023-08-03T06:02:33.905Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":4,"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"b3a9cf92e738ad050538539561f16e1c11f6987aace90239f550a9997679d7d6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","oracleID":4,"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"previousNe":0,"ne":1} +{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"leader":4} +{"level":"debug","ts":"2023-08-03T06:02:33.907Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:02:33.907Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.002989146} +{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.003004133} +{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"round":1,"observation":"CPmFraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":1,"leader":4,"msgEpoch":1,"msgRound":1,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"round":1,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:02:34.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:34.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:34.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:34.816Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.546Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:35.718Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:35.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"warn","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:02:36.002Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","direction":"out","remoteAddr":"10.14.104.202:6690","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479"} +{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","in":"processAnnouncement","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:36.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:36.577Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:36.750Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:36.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:37","latency":"79.032µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:37","latency":"90.707µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.329Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:37.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:37.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.347Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:38.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:39.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:39.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:39.801Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:39.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:40.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:40.412Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:40.626Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:40.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:41.035Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:41.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:41.433Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:41.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:42.094Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:42.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:42","latency":"87.049µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:42","latency":"102.299µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:42.962Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:43.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:43.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:43.519Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:43.983Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:44.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:44.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:44.610Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:45.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:45.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:45.364Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:45.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:45.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.229Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.369Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.713Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:47.129Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:47","latency":"85.146µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:47","latency":"74.148µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.727Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.075Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:02:49.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.257Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.442Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.628Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:50.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.353Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.525Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.834Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:52","latency":"86.68µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:52","latency":"81.218µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.512Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.681Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.873Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.907Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:02:54.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.625Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.975Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.628Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:55.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:55.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","in":"processAnnouncement","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:55.837Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.029Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"warn","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remoteAddr":"10.14.31.21:6690","direction":"out","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:56.128Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:56.128Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f"} +{"level":"debug","ts":"2023-08-03T06:02:56.131Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":1,"msgEpoch":1,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"leader":4} +{"level":"debug","ts":"2023-08-03T06:02:56.131Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":2,"requiredObservationCount":3,"epoch":1,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:02:56.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:57","latency":"94.714µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:57","latency":"95.479µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.687Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.792Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.136Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.851Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.196Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.928Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.013Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.629Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:00.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.073Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.372Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:02","latency":"88.102µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:02","latency":"103.661µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.441Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.020Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.183Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.192Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.527Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.248Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:03:04.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.262Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:04.606Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.128Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.291Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.300Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.629Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:05.635Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:05.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:06.208Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:07","latency":"91.79µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:07","latency":"76.552µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.420Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.764Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.503Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.361Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.443Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.486Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.630Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:10.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.787Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"warn","ts":"2023-08-03T06:03:11.787Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:11.787Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:11.789Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","direction":"out","remoteAddr":"10.14.72.41:6690","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c","streamName":"ragedisco/v1","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","newEpoch":2,"candidateEpochs":[2,2,2],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"leader":4,"e":1,"l":4} +{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":2,"leader":2} +{"level":"debug","ts":"2023-08-03T06:03:11.903Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:12","latency":"85.282µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:12","latency":"89.574µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.528Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.648Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.700Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.737Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.081Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.782Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.800Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.126Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:15.713Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.886Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.798Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:17","latency":"87.017µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:17","latency":"100.478µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.255Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.985Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.353Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:18.671Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"in","remoteAddr":"10.14.48.92:40842","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:18.875Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.048Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.421Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:03:19.941Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.113Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.130Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.632Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:20.953Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.201Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.019Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:22","latency":"107.521µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:22","latency":"107.463µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.206Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.365Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.298Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.632Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:25.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.205Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.378Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.923Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:27","latency":"88.793µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:27","latency":"87.811µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.303Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.641Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.991Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.367Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.539Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.633Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:30.666Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.010Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.792Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"newEpoch":3,"candidateEpochs":[3,3,3],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","e":2,"l":2} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001224205} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001244265} +{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"msgEpoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"msgRound":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observationCount":1,"requiredObservationCount":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"msgRound":1,"round":1,"sender":1,"msgEpoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":1,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"sender":3,"msgEpoch":3,"msgRound":1,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":0,"msgEpoch":3,"msgRound":1,"oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1} +{"level":"debug","ts":"2023-08-03T06:03:31.798Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:32.099Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:32","latency":"100.092µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:32","latency":"114.653µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.718Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.788Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.621Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.594Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:03:34.710Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.882Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.634Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:35.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"unfulfilledRequest":true,"deviation":true,"deltaC":0,"reportingPlugin":"NumericalMedian","result":true,"initialRound":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"sender":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001249342} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001418613} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"msgEpoch":3,"msgRound":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"observationCount":1,"requiredObservationCount":3,"oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":2,"sender":1,"msgEpoch":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":2,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"leader":4,"round":2,"sender":3,"msgEpoch":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"observationCount":3,"requiredObservationCount":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":0,"msgEpoch":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.891Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.007Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:37","latency":"84.833µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:37","latency":"75.425µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.874Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.046Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.050Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:39.804Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportInfinite":false,"deviation":true,"deltaCTimeout":true,"result":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z"} +{"level":"debug","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001205649} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001255332} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"sender":4,"msgEpoch":3} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgEpoch":3,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":3,"observationCount":2,"requiredObservationCount":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","msgEpoch":3,"msgRound":3,"round":3,"sender":3,"oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":3,"requiredObservationCount":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"round":3,"sender":0,"msgEpoch":3,"msgRound":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:39.906Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.117Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.462Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.634Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:40.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.122Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.138Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.482Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.023Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:42","latency":"105.28µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:42","latency":"100.89µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.251Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:43.808Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"deviation":true,"initialRound":false,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":4,"msgRound":3,"oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":4} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"roundMax":3,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":3,"sender":4,"epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptPPB":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":4,"candidateEpochs":[4,4,4]} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"e":3,"l":4} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001122866} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001109913} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:44.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.414Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.635Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:45.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.392Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:47","latency":"93.642µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:47","latency":"103.728µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.291Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.464Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"alphaReportInfinite":false,"deltaCTimeout":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","alphaReportPPB":0,"deviation":true,"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001225989} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001246337} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"leader":0,"round":2,"observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.347Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.875Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.427Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.537Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.766Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:03:49.882Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.626Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.635Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:50.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.970Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.674Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:51.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deltaC":0,"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","deltaCTimeout":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"result":true,"initialRound":false,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":2,"sender":4,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001187816} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001181197} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"round":3,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:51.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:52","latency":"84.431µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:52","latency":"89.725µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.532Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.682Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.705Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.565Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.643Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.816Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.119Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.636Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:55.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:55.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"deviation":true,"unfulfilledRequest":false,"deltaC":0,"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"result":true,"reportingPlugin":"NumericalMedian","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":4,"Round":3},"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":4,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","newEpoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"candidateEpochs":[5,5,5]} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","l":0,"e":4} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001225398} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001209646} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"msgRound":1,"round":1,"sender":4,"msgEpoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observationCount":1,"oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":1,"oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":1,"msgEpoch":5} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":2,"requiredObservationCount":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"msgEpoch":5,"msgRound":1,"oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:55.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":0,"msgEpoch":5,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:55.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:55.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.728Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.887Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:57","latency":"86.563µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:57","latency":"77.018µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.232Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.268Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.859Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.031Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true,"result":true,"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z","alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"msgRound":1,"oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001228843} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001231363} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":2,"observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"msgEpoch":5,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":2,"observationCount":1,"requiredObservationCount":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":2,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":2,"sender":1,"msgEpoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"msgEpoch":5,"msgRound":2,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"round":2,"sender":0,"msgEpoch":5,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:03:59.913Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.070Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.636Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:04:01.000Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.173Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.165Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:02","latency":"83.29µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:02","latency":"85.136µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.195Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.042Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.214Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.246Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"alphaReportInfinite":false,"result":true,"deltaCTimeout":true,"deltaC":0,"reportingPlugin":"NumericalMedian","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","initialRound":false} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":5,"Round":2},"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":5,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001147077} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001193774} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"oid":4} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":2,"sender":0,"oid":4} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":3,"sender":4,"msgEpoch":5,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"requiredObservationCount":3,"round":3,"observationCount":1} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":3,"sender":1,"msgEpoch":5,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"round":3,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":0,"msgEpoch":5,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":3,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"round":3,"sender":3,"msgEpoch":5,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:03.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:04.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.295Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.939Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:04:05.124Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:05.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:07","latency":"92.095µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:07","latency":"69.607µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.192Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.364Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.793Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:07.840Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"deviation":true,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"initialRound":false,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"round":4,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":4,"msgRound":3,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":4,"messageRound":4,"roundMax":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"epoch":5,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":6,"candidateEpochs":[6,6,6]} +{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"e":5,"l":4} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":1,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":3,"sender":0,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001041889} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001068673} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:08.014Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:08.014Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:08.014Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T06:04:08.187Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:08.187Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c"} +{"level":"debug","ts":"2023-08-03T06:04:08.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.531Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.533Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:08.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.224Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:09.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.460Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.835Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.899Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:10.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.586Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:10.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:04:10.849Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.285Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:11.370Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","fee":1,"signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"]} +{"level":"debug","ts":"2023-08-03T06:04:11.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:11.846Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","result":true,"reportingPlugin":"NumericalMedian","deltaC":0,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"deviation":true} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":6,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"sender":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":6,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001204271} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001172238} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"round":2,"observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:11.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.959Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:11.959Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:12","latency":"91.648µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:12","latency":"65.907µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.672Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:12.672Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:12.677Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.022Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.368Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:13.368Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:13.462Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.686Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.030Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.089Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:14.090Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:14.375Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","fee":2,"signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"]} +{"level":"debug","ts":"2023-08-03T06:04:14.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.793Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:14.793Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:14.793Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:15.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.490Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:15.490Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:15.490Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:15.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.638Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:15.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.776Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:15.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"initialRound":false,"deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2},"alphaReportInfinite":false,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"round":2,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"epoch":6,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"contractEpochRound":{"Epoch":6,"Round":1},"deviates":true,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":6,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":2,"sender":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":2,"sender":3,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001111787} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001115703} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"leader":0,"epoch":6,"round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:16.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.185Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:16.185Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:16.185Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:16.589Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.761Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.905Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:16.905Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:16.905Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:17.132Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:17","latency":"86.67µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:17","latency":"87.633µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.382Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","fee":4,"signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ","RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"]} +{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:17.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.015Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context deadline exceeded","signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ","RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"],"id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c"} +{"level":"debug","ts":"2023-08-03T06:04:18.015Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ","RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"]} +{"level":"debug","ts":"2023-08-03T06:04:18.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:18.692Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.864Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:19.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:19.699Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.847Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:19.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"result":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z"} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":6,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":6,"roundMax":3,"round":4,"messageRound":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":6,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":6,"Round":2},"reportEpochRound":{"Epoch":6,"Round":3},"latestAcceptedEpochRound":{"Epoch":6,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} +{"level":"info","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"sender":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"e":6,"l":0} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"sender":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001071152} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001106277} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:19.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.029Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:20.030Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:20.112Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:04:20.191Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.202Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477","signature":"d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"} +{"level":"debug","ts":"2023-08-03T06:04:20.202Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477"} +{"level":"debug","ts":"2023-08-03T06:04:20.378Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:20.379Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:20.379Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:20.379Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:20.639Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:04:20.755Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.918Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.927Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477","signature":"d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"],"id":"e941f36d-f3f4-4897-8c60-bd7d19c03477"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477","signatures":["d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"]} +{"level":"debug","ts":"2023-08-03T06:04:21.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.797Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:21.798Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:21.798Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:21.798Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:21.940Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:22","latency":"108.156µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:22","latency":"108.142µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:22.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.030Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.044Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:23.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:23.861Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"alphaReportPPB":0,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"deltaC":0,"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":6,"Round":3},"reportEpochRound":{"Epoch":7,"Round":1},"latestAcceptedEpochRound":{"Epoch":6,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":7,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001065895} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001131461} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"leader":0,"round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:23.903Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:23.904Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:23.904Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:23.904Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:23.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.122Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:25.038Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.201Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:25.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.640Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:26.132Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.628Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:27.170Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:27","latency":"89.731µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:27","latency":"93.328µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:27.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"deltaC":0,"result":true,"alphaReportInfinite":false,"deviation":true,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","unfulfilledRequest":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","contractEpochRound":{"Epoch":7,"Round":1},"reportEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"result":true,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":7,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":7,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.00115009} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001239563} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:28.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.440Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:29.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.439Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:29.525Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.869Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:30.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.482Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:04:30.881Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:30.882Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:30.882Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:30.882Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:30.890Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.321Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.493Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:31.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:31.870Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportPPB":0,"result":true,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"deltaCTimeout":true,"initialRound":false,"alphaReportInfinite":false,"unfulfilledRequest":false,"deltaC":0,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"leader":0,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":3,"sender":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":7,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"info","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","e":7,"l":0,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":3} +{"level":"info","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":8,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:31.974Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:32","latency":"81.546µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:32","latency":"85.923µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:32.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.505Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.726Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:33.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.594Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:33.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.811Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":3,"Round":3}} +{"level":"info","ts":"2023-08-03T06:04:33.811Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:04:34.118Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:34.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:35.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.285Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:04:35.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:04:35.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:35.903Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.247Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:36.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.739Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:37","latency":"77.322µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:37","latency":"79.453µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.313Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.776Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:38.045Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.390Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} +{"level":"info","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:377","msg":"failed to find transaction within confirm timeout","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","timeoutSeconds":30} +{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} +{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} +{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} +{"level":"debug","ts":"2023-08-03T06:04:38.693Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.760Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.086Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:40.829Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:42","latency":"84.415µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:42","latency":"70.907µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.555Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.888Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.061Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:04:45.699Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.711Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.962Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:47","latency":"66.552µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:47","latency":"108.868µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.451Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.479Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.823Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.070Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.915Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.144Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.458Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:04:50.643Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:50.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","e":8,"l":2,"oid":4,"epoch":8,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001066014} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001084043} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":1,"observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:52.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:52","latency":"101.496µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:52","latency":"479.923µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.289Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.461Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.312Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.810Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.336Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"initialRound":false,"deltaC":0,"unfulfilledRequest":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":3,"round":1,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"sender":4,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":7,"Round":3},"result":true} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001133157} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001189414} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":3,"round":2,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.905Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.608Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:57","latency":"79.122µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:57","latency":"80.901µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.519Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.330Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.412Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.586Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:59.883Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2},"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","initialRound":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaCTimeout":true,"deviation":true,"deltaC":0} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001122378} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001133509} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"oid":4,"round":3,"observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:05:00.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.445Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.630Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:00.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.705Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.849Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":6,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:05:01.849Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:01.878Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:02","latency":"83.856µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:02","latency":"93.575µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.178Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.828Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:03.887Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"deltaC":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","result":true,"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"alphaReportInfinite":false,"deltaCTimeout":true,"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":9,"leader":3,"roundMax":3,"round":4,"messageRound":4,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":9,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"epoch":9,"round":3,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":1,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":3,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"e":9,"l":3} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"leader":2,"epoch":10,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:04.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.873Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.049Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.630Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:05:05.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:05:05.672Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.079Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.358Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:07","latency":"92.979µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:07","latency":"93.122µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.964Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.732Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.990Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.479Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:10.838Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.069Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:12","latency":"96.658µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:12","latency":"69.845µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.288Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.953Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.189Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.361Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.717Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.061Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.236Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:15.779Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.801Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"info","ts":"2023-08-03T06:05:15.801Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:16.124Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.792Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:17","latency":"95.821µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:17","latency":"103.828µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.364Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.868Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":7,"Round":2}} +{"level":"info","ts":"2023-08-03T06:05:17.868Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:18.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.425Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.523Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.806Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":3,"Round":2}} +{"level":"info","ts":"2023-08-03T06:05:19.807Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:19.899Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:20.796Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.803Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:05:20.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.722Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.894Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:22","latency":"102.394µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:22","latency":"97.939µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.353Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.787Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.397Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.870Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"candidateEpochs":[11,11,11],"newEpoch":11} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":2,"epoch":10,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"e":10,"l":2} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":11,"leader":2,"oid":4} +{"level":"debug","ts":"2023-08-03T06:05:24.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.890Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:25.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.512Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.975Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.147Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:27","latency":"74.531µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:27","latency":"114.095µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.253Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.015Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.188Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.320Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.264Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.403Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.748Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.148Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:30.825Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.232Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.405Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.543Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.823Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":4,"Round":2}} +{"level":"info","ts":"2023-08-03T06:05:31.823Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:31.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:32","latency":"89.413µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:32","latency":"66.553µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.284Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.604Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.302Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.047Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.389Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.065Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.569Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:35.789Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.976Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} +{"level":"debug","ts":"2023-08-03T06:05:36.134Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.874Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:37","latency":"83.172µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:37","latency":"91.683µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.218Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.505Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.290Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.777Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.962Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.307Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.828Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.050Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:40.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.424Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.170Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:42","latency":"72.047µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:42","latency":"85.478µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.515Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.020Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.222Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":12,"candidateEpochs":[12,12,12]} +{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":11,"leader":2,"oid":4,"e":11} +{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001129616} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001157456} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.066Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.244Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.588Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.897Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.070Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log new file mode 100644 index 000000000..00b0e52ed --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + +waiting for server to start....2023-08-03 05:56:39.840 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:39.854 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC +2023-08-03 05:56:39.859 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +2023-08-03 05:56:40.552 UTC [48] LOG: received fast shutdown request +waiting for server to shut down....2023-08-03 05:56:40.553 UTC [48] LOG: aborting any active transactions +2023-08-03 05:56:40.555 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 05:56:40.555 UTC [50] LOG: shutting down +2023-08-03 05:56:40.717 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 05:56:40.764 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 05:56:40.764 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 05:56:40.768 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.785 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC +2023-08-03 05:56:40.789 UTC [1] LOG: database system is ready to accept connections +2023-08-03 05:56:42.790 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 05:56:43.753 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 05:56:43.753 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 05:56:43.753 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 05:56:43.753 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 05:56:43.754 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 05:56:43.754 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log new file mode 100644 index 000000000..1db0ead16 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log @@ -0,0 +1,1715 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T05:56:43.739Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.740Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.740Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:43.740Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-03T05:56:43.744Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.745Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.745Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"2cb51971-b808-4dbf-a63b-4c9192aca46d"} +{"level":"debug","ts":"2023-08-03T05:56:43.750Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"2cb51971-b808-4dbf-a63b-4c9192aca46d"} +{"level":"debug","ts":"2023-08-03T05:56:43.753Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/03 05:56:44 OK 0001_initial.sql +2023/08/03 05:56:44 OK 0002_gormv2.sql +2023/08/03 05:56:44 OK 0003_eth_logs_table.sql +2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql +2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql +2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 05:56:44 OK 0010_bridge_fk.sql +2023/08/03 05:56:44 OK 0011_latest_round_requested.sql +2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql +2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql +2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql +2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 05:56:44 OK 0018_add_node_version_table.sql +2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 05:56:44 OK 0020_remove_result_task.sql +2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql +2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql +2023/08/03 05:56:44 OK 0025_create_log_config_table.sql +2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql +2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 05:56:44 OK 0028_vrf_v2.sql +2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql +2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql +2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql +2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql +2023/08/03 05:56:44 OK 0036_external_job_id.go +2023/08/03 05:56:44 OK 0037_cascade_deletes.sql +2023/08/03 05:56:44 OK 0038_create_csa_keys.sql +2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql +2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql +2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql +2023/08/03 05:56:44 OK 0042_create_job_proposals.sql +2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go +2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 05:56:44 OK 0056_multichain.go +2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql +2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql +2023/08/03 05:56:44 OK 0061_multichain_relations.sql +2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql +2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql +2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql +2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql +2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql +2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql +2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql +2023/08/03 05:56:44 OK 0075_unique_job_names.sql +2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql +2023/08/03 05:56:44 OK 0078_only_one_version.sql +2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql +2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql +2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 05:56:44 OK 0082_lease_lock.sql +2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql +2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 05:56:44 OK 0087_ocr2_tables.sql +2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql +2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql +2023/08/03 05:56:44 OK 0091_ocr2_relay.sql +2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql +2023/08/03 05:56:44 OK 0093_terra_txm.sql +2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql +2023/08/03 05:56:44 OK 0095_terra_fcd.sql +2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql +2023/08/03 05:56:44 OK 0097_bootstrap_spec.sql +2023/08/03 05:56:44 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 05:56:44 OK 0099_terra_msgs_created_at.sql +2023/08/03 05:56:45 OK 0100_bootstrap_config.sql +2023/08/03 05:56:45 OK 0101_generic_ocr2.sql +2023/08/03 05:56:45 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 05:56:45 OK 0103_terra_msgs_type_url.sql +2023/08/03 05:56:45 OK 0104_terra_cascade_delete.sql +2023/08/03 05:56:45 OK 0105_create_forwarder_addresses.sql +2023/08/03 05:56:45 OK 0106_evm_node_uniqueness.sql +2023/08/03 05:56:45 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 05:56:45 OK 0109_solana_chains_nodes.sql +2023/08/03 05:56:45 OK 0110_add_vrf_chunk_size.sql +2023/08/03 05:56:45 OK 0111_terra_msgs_state_started.sql +2023/08/03 05:56:45 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 05:56:45 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 05:56:45 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 05:56:45 OK 0115_log_poller.sql +2023/08/03 05:56:45 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 05:56:45 OK 0117_add_log_poller_idx.sql +2023/08/03 05:56:45 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 05:56:45 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 05:56:45 OK 0120_log_poller_data_idx.sql +2023/08/03 05:56:45 OK 0121_remove_log_configs.sql +2023/08/03 05:56:45 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 05:56:45 OK 0123_terra_idx_simplify.sql +2023/08/03 05:56:45 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 05:56:45 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 05:56:45 OK 0126_remove_observation_source.sql +2023/08/03 05:56:45 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 05:56:45 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0129_add_job_gas_limit.sql +2023/08/03 05:56:45 OK 0130_starknet_chains_nodes.sql +2023/08/03 05:56:45 OK 0131_add_multi_user.sql +2023/08/03 05:56:45 OK 0132_log_index_uniqueness.sql +2023/08/03 05:56:45 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 05:56:45 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 05:56:45 OK 0135_tx_index_not_null.sql +2023/08/03 05:56:45 OK 0136_add_job_allow_forwarding.sql +2023/08/03 05:56:45 OK 0137_remove_tx_index.sql +2023/08/03 05:56:45 OK 0138_rename_allowforwarding_field.sql +2023/08/03 05:56:45 OK 0139_multi_chain_keys.sql +2023/08/03 05:56:45 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 05:56:45 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 05:56:45 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 05:56:45 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 05:56:45 OK 0144_optimize_lp.sql +2023/08/03 05:56:45 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0148_dkg_shares.sql +2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql +2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql +2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql +2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql +2023/08/03 05:56:45 OK 0155_remove_terra.sql +2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql +2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql +2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql +2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql +2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 05:56:45 OK 0164_add_cosmos.sql +2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql +2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql +2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 05:56:45 OK 0168_drop_node_tables.sql +2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql +2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql +2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql +2023/08/03 05:56:45 OK 0174_vrf_owner.sql +2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql +2023/08/03 05:56:45 OK 0176_s4_shared_table.sql +2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql +2023/08/03 05:56:45 OK 0178_drop_access_list.sql +2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql +2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql +2023/08/03 05:56:45 OK 0183_functions_new_fields.sql +2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql +2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 05:56:45 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.543Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 8b13db250305eeeb41032e1bd2c88b4ffe5f2cec1d488f8d39cfff76de0d1a92 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.543Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:51.658Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID BV241sHzUgHX2DajWhDKkcD1bFp2tSczPKyXYs64XAfT","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:53.650Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 760ce56b62cd4cf66af17dc6f616be6620e44510f1de6ef7f27d2c231fec16d8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.838Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T05:56:55.963Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T05:56:55.963Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-03T05:56:55.964Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 36293. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":36293} +{"level":"debug","ts":"2023-08-03T05:56:55.964Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":36293,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T05:56:55.965Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","v1listenPort":36293,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/36293"} +{"level":"debug","ts":"2023-08-03T05:56:55.965Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"PeerV2"} +{"level":"debug","ts":"2023-08-03T05:56:55.966Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"saveLoop"} +{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"recvLoop","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:56:55.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T05:56:55.968Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:55.968Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.13s","version":"2.4.0@d0c54ea","appID":"2cb51971-b808-4dbf-a63b-4c9192aca46d"} +{"level":"debug","ts":"2023-08-03T05:56:56.035Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.066745916} +{"level":"info","ts":"2023-08-03T05:56:56.039Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T05:56:56.046Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011085304} +{"level":"debug","ts":"2023-08-03T05:56:56.046Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:57.136Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:56:57","latency":"1.956406ms"} +{"level":"debug","ts":"2023-08-03T05:56:57.137Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:56:57","latency":"215.338µs"} +{"level":"debug","ts":"2023-08-03T05:57:00.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:00.997Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T05:57:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:02","latency":"91.13µs"} +{"level":"debug","ts":"2023-08-03T05:57:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:02","latency":"149.008µs"} +{"level":"info","ts":"2023-08-03T05:57:05.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:05.967Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:07","latency":"121.284µs"} +{"level":"debug","ts":"2023-08-03T05:57:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:07","latency":"195.986µs"} +{"level":"debug","ts":"2023-08-03T05:57:10.968Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:12","latency":"101.543µs"} +{"level":"debug","ts":"2023-08-03T05:57:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:12","latency":"102.518µs"} +{"level":"debug","ts":"2023-08-03T05:57:15.968Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:57:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:17","latency":"104.604µs"} +{"level":"debug","ts":"2023-08-03T05:57:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:17","latency":"157.298µs"} +{"level":"debug","ts":"2023-08-03T05:57:20.969Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:57:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:22","latency":"72.55µs"} +{"level":"debug","ts":"2023-08-03T05:57:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:22","latency":"112.595µs"} +{"level":"debug","ts":"2023-08-03T05:57:25.969Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:57:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:27","latency":"69.362µs"} +{"level":"debug","ts":"2023-08-03T05:57:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:27","latency":"106.939µs"} +{"level":"debug","ts":"2023-08-03T05:57:30.969Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:32","latency":"104.623µs"} +{"level":"debug","ts":"2023-08-03T05:57:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:32","latency":"99.983µs"} +{"level":"debug","ts":"2023-08-03T05:57:34.712Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:57:34.714Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T05:57:34.836Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T05:57:34.838Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:34","latency":"125.271273ms"} +{"level":"debug","ts":"2023-08-03T05:57:35.970Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:37","latency":"124.675µs"} +{"level":"debug","ts":"2023-08-03T05:57:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:37","latency":"114.167µs"} +{"level":"debug","ts":"2023-08-03T05:57:40.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:42","latency":"87.189µs"} +{"level":"debug","ts":"2023-08-03T05:57:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:42","latency":"102.468µs"} +{"level":"debug","ts":"2023-08-03T05:57:45.680Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:45","latency":"2.968779ms"} +{"level":"debug","ts":"2023-08-03T05:57:45.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:47","latency":"86.717µs"} +{"level":"debug","ts":"2023-08-03T05:57:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:47","latency":"86.955µs"} +{"level":"debug","ts":"2023-08-03T05:57:47.766Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:47","latency":"1.874643958s"} +{"level":"debug","ts":"2023-08-03T05:57:50.161Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:50","latency":"2.183330286s"} +{"level":"debug","ts":"2023-08-03T05:57:50.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:52","latency":"110.24µs"} +{"level":"debug","ts":"2023-08-03T05:57:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:52","latency":"103.025µs"} +{"level":"debug","ts":"2023-08-03T05:57:55.972Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:57","latency":"89.813µs"} +{"level":"debug","ts":"2023-08-03T05:57:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:57","latency":"95.964µs"} +{"level":"debug","ts":"2023-08-03T05:58:00.973Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:58:00.994Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"65.972µs"} +{"level":"debug","ts":"2023-08-03T05:58:01.205Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"38.373µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:02","latency":"91.846µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:02","latency":"88.141µs"} +{"level":"debug","ts":"2023-08-03T05:58:05.974Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:58:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:07","latency":"92.9µs"} +{"level":"debug","ts":"2023-08-03T05:58:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:07","latency":"86.976µs"} +{"level":"debug","ts":"2023-08-03T05:58:10.975Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:12","latency":"103.699µs"} +{"level":"debug","ts":"2023-08-03T05:58:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:12","latency":"99.509µs"} +{"level":"debug","ts":"2023-08-03T05:58:15.975Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:17","latency":"107.709µs"} +{"level":"debug","ts":"2023-08-03T05:58:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:17","latency":"98.059µs"} +{"level":"debug","ts":"2023-08-03T05:58:20.976Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:22","latency":"98.393µs"} +{"level":"debug","ts":"2023-08-03T05:58:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:22","latency":"76.087µs"} +{"level":"debug","ts":"2023-08-03T05:58:25.977Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:27","latency":"77.598µs"} +{"level":"debug","ts":"2023-08-03T05:58:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:27","latency":"95.916µs"} +{"level":"debug","ts":"2023-08-03T05:58:30.978Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:32","latency":"102.273µs"} +{"level":"debug","ts":"2023-08-03T05:58:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:32","latency":"107.807µs"} +{"level":"debug","ts":"2023-08-03T05:58:35.979Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:37","latency":"92.728µs"} +{"level":"debug","ts":"2023-08-03T05:58:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:37","latency":"89.116µs"} +{"level":"debug","ts":"2023-08-03T05:58:40.979Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:42","latency":"84.037µs"} +{"level":"debug","ts":"2023-08-03T05:58:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:42","latency":"89.34µs"} +{"level":"debug","ts":"2023-08-03T05:58:45.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:47","latency":"91.828µs"} +{"level":"debug","ts":"2023-08-03T05:58:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:47","latency":"88.63µs"} +{"level":"debug","ts":"2023-08-03T05:58:50.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:52","latency":"109.648µs"} +{"level":"debug","ts":"2023-08-03T05:58:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:52","latency":"112.456µs"} +{"level":"debug","ts":"2023-08-03T05:58:55.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:57","latency":"98.525µs"} +{"level":"debug","ts":"2023-08-03T05:58:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:57","latency":"77.571µs"} +{"level":"debug","ts":"2023-08-03T05:59:00.982Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:02","latency":"94.027µs"} +{"level":"debug","ts":"2023-08-03T05:59:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:02","latency":"87.698µs"} +{"level":"debug","ts":"2023-08-03T05:59:05.982Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:07","latency":"88.582µs"} +{"level":"debug","ts":"2023-08-03T05:59:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:07","latency":"89.581µs"} +{"level":"debug","ts":"2023-08-03T05:59:10.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:59:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:12","latency":"76.943µs"} +{"level":"debug","ts":"2023-08-03T05:59:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:12","latency":"97.271µs"} +{"level":"debug","ts":"2023-08-03T05:59:15.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:17","latency":"89.058µs"} +{"level":"debug","ts":"2023-08-03T05:59:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:17","latency":"95.828µs"} +{"level":"debug","ts":"2023-08-03T05:59:20.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T05:59:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:22","latency":"89.437µs"} +{"level":"debug","ts":"2023-08-03T05:59:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:22","latency":"77.188µs"} +{"level":"debug","ts":"2023-08-03T05:59:25.984Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:59:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:27","latency":"83.61µs"} +{"level":"debug","ts":"2023-08-03T05:59:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:27","latency":"96.25µs"} +{"level":"debug","ts":"2023-08-03T05:59:30.985Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:32","latency":"95.99µs"} +{"level":"debug","ts":"2023-08-03T05:59:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:32","latency":"95.751µs"} +{"level":"debug","ts":"2023-08-03T05:59:35.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:37","latency":"89.934µs"} +{"level":"debug","ts":"2023-08-03T05:59:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:37","latency":"86.065µs"} +{"level":"debug","ts":"2023-08-03T05:59:40.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:42","latency":"89.856µs"} +{"level":"debug","ts":"2023-08-03T05:59:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:42","latency":"97.525µs"} +{"level":"debug","ts":"2023-08-03T05:59:45.987Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:47","latency":"93.784µs"} +{"level":"debug","ts":"2023-08-03T05:59:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:47","latency":"66.937µs"} +{"level":"debug","ts":"2023-08-03T05:59:50.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:52","latency":"126.572µs"} +{"level":"debug","ts":"2023-08-03T05:59:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:52","latency":"152.572µs"} +{"level":"debug","ts":"2023-08-03T05:59:55.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:59:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:57","latency":"90.174µs"} +{"level":"debug","ts":"2023-08-03T05:59:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:57","latency":"114.157µs"} +{"level":"debug","ts":"2023-08-03T06:00:00.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:02","latency":"89.433µs"} +{"level":"debug","ts":"2023-08-03T06:00:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:02","latency":"84.834µs"} +{"level":"debug","ts":"2023-08-03T06:00:05.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:07","latency":"90.037µs"} +{"level":"debug","ts":"2023-08-03T06:00:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:07","latency":"100.251µs"} +{"level":"debug","ts":"2023-08-03T06:00:10.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:12","latency":"84.312µs"} +{"level":"debug","ts":"2023-08-03T06:00:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:12","latency":"86.747µs"} +{"level":"debug","ts":"2023-08-03T06:00:15.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:17","latency":"118.559µs"} +{"level":"debug","ts":"2023-08-03T06:00:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:17","latency":"124.067µs"} +{"level":"debug","ts":"2023-08-03T06:00:20.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:22","latency":"86.388µs"} +{"level":"debug","ts":"2023-08-03T06:00:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:22","latency":"80.25µs"} +{"level":"debug","ts":"2023-08-03T06:00:25.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:00:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:27","latency":"112.796µs"} +{"level":"debug","ts":"2023-08-03T06:00:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:27","latency":"114.136µs"} +{"level":"debug","ts":"2023-08-03T06:00:30.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:32","latency":"92.738µs"} +{"level":"debug","ts":"2023-08-03T06:00:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:32","latency":"109.366µs"} +{"level":"debug","ts":"2023-08-03T06:00:35.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:37","latency":"115.909µs"} +{"level":"debug","ts":"2023-08-03T06:00:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:37","latency":"117.14µs"} +{"level":"debug","ts":"2023-08-03T06:00:40.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:42","latency":"112.404µs"} +{"level":"debug","ts":"2023-08-03T06:00:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:42","latency":"83.352µs"} +{"level":"debug","ts":"2023-08-03T06:00:45.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:47","latency":"99.13µs"} +{"level":"debug","ts":"2023-08-03T06:00:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:47","latency":"91.526µs"} +{"level":"debug","ts":"2023-08-03T06:00:50.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:52","latency":"91.12µs"} +{"level":"debug","ts":"2023-08-03T06:00:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:52","latency":"97.335µs"} +{"level":"debug","ts":"2023-08-03T06:00:55.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:57","latency":"88.32µs"} +{"level":"debug","ts":"2023-08-03T06:00:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:57","latency":"112.963µs"} +{"level":"debug","ts":"2023-08-03T06:01:00.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:02","latency":"103.287µs"} +{"level":"debug","ts":"2023-08-03T06:01:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:02","latency":"113.858µs"} +{"level":"debug","ts":"2023-08-03T06:01:05.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:07","latency":"99.439µs"} +{"level":"debug","ts":"2023-08-03T06:01:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:07","latency":"110.895µs"} +{"level":"debug","ts":"2023-08-03T06:01:10.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:01:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:12","latency":"87.603µs"} +{"level":"debug","ts":"2023-08-03T06:01:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:12","latency":"88.494µs"} +{"level":"debug","ts":"2023-08-03T06:01:16.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:01:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:17","latency":"103.177µs"} +{"level":"debug","ts":"2023-08-03T06:01:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:17","latency":"101.801µs"} +{"level":"debug","ts":"2023-08-03T06:01:21.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:22","latency":"94.348µs"} +{"level":"debug","ts":"2023-08-03T06:01:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:22","latency":"83.388µs"} +{"level":"debug","ts":"2023-08-03T06:01:26.001Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:27","latency":"84.627µs"} +{"level":"debug","ts":"2023-08-03T06:01:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:27","latency":"96.274µs"} +{"level":"debug","ts":"2023-08-03T06:01:31.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:32","latency":"86.141µs"} +{"level":"debug","ts":"2023-08-03T06:01:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:32","latency":"89.901µs"} +{"level":"debug","ts":"2023-08-03T06:01:36.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:37","latency":"94.786µs"} +{"level":"debug","ts":"2023-08-03T06:01:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:37","latency":"72.436µs"} +{"level":"debug","ts":"2023-08-03T06:01:41.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:42","latency":"92.207µs"} +{"level":"debug","ts":"2023-08-03T06:01:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:42","latency":"78.856µs"} +{"level":"debug","ts":"2023-08-03T06:01:46.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:47","latency":"91.828µs"} +{"level":"debug","ts":"2023-08-03T06:01:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:47","latency":"91.94µs"} +{"level":"debug","ts":"2023-08-03T06:01:51.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:52","latency":"109.584µs"} +{"level":"debug","ts":"2023-08-03T06:01:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:52","latency":"138.522µs"} +{"level":"debug","ts":"2023-08-03T06:01:56.005Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:57","latency":"95.254µs"} +{"level":"debug","ts":"2023-08-03T06:01:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:57","latency":"83.675µs"} +{"level":"debug","ts":"2023-08-03T06:02:01.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:02","latency":"94.399µs"} +{"level":"debug","ts":"2023-08-03T06:02:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:02","latency":"103.739µs"} +{"level":"info","ts":"2023-08-03T06:02:05.967Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:06.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:07","latency":"86.776µs"} +{"level":"debug","ts":"2023-08-03T06:02:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:07","latency":"75.374µs"} +{"level":"debug","ts":"2023-08-03T06:02:11.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:12","latency":"108.461µs"} +{"level":"debug","ts":"2023-08-03T06:02:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:12","latency":"113.115µs"} +{"level":"debug","ts":"2023-08-03T06:02:16.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:17","latency":"118.443µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:17","latency":"118.387µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.937Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:17","latency":"72.279µs"} +{"level":"debug","ts":"2023-08-03T06:02:18.147Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:18","latency":"43.437µs"} +{"level":"debug","ts":"2023-08-03T06:02:21.009Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:22","latency":"92.728µs"} +{"level":"debug","ts":"2023-08-03T06:02:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:22","latency":"71.549µs"} +{"level":"debug","ts":"2023-08-03T06:02:26.010Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:27","latency":"101.569µs"} +{"level":"debug","ts":"2023-08-03T06:02:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:27","latency":"75.958µs"} +{"level":"debug","ts":"2023-08-03T06:02:31.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:32","latency":"93.832µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:32","latency":"71.163µs"} +{"level":"debug","ts":"2023-08-03T06:02:36.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:37","latency":"121.55µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:37","latency":"84.157µs"} +{"level":"debug","ts":"2023-08-03T06:02:41.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:42","latency":"77.87µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:42","latency":"89.758µs"} +{"level":"debug","ts":"2023-08-03T06:02:46.013Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:46.147Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:46","latency":"4.634002ms"} +{"level":"info","ts":"2023-08-03T06:02:46.366Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:02:46.366Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} +{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-03T06:02:46.366Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"info","ts":"2023-08-03T06:02:46.629Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:46.629Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","duration":826} +{"level":"info","ts":"2023-08-03T06:02:46.630Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"info","ts":"2023-08-03T06:02:46.630Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:02:46.630Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"eaacce8624c9c4777749ac19150a794a95be6222760cd4cabac27d8e1ead5ca4\\\" \\n\\ntransmitterID = \\\"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:46","latency":"272.176682ms"} +{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}]} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamName":"ragedisco/v1","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf"} +{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamName":"ragedisco/v1","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:02:46.719Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f"} +{"level":"info","ts":"2023-08-03T06:02:46.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","numFound":1,"loaded":["12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"],"found":["12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"],"numLoaded":1,"queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"_id":"discoveryProtocol","id":"ragep2p","numQueried":5} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":1,"bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}]} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"c2275194e34764fde5069c17e6a08fc30d84cc6cf510232ae0ee309ea3338eca","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":1} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"info","ts":"2023-08-03T06:02:46.723Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"info","ts":"2023-08-03T06:02:46.723Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","ne":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"previousNe":0} +{"level":"info","ts":"2023-08-03T06:02:46.723Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"epoch":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:02:46.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:47","latency":"102.823µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:47","latency":"106.673µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.628Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.730Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:47.904Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.702Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:48.910Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.761Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:49.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"warn","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"warn","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:02:50.555Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","direction":"out","remoteAddr":"10.14.104.202:6690","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"info","ts":"2023-08-03T06:02:50.556Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamName":"ragedisco/v1","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:50.557Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:02:50.557Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:02:50.694Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:50.853Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:51.028Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.822Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:51.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:52","latency":"95.67µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:52","latency":"95.655µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.785Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:52.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:53.936Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.011Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.186Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:54.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.246Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:55.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:56.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","direction":"in","remoteAddr":"10.14.116.75:43740","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d"} +{"level":"debug","ts":"2023-08-03T06:02:56.128Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:02:56.128Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:02:56.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.130Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.001750016} +{"level":"debug","ts":"2023-08-03T06:02:56.130Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.001878473} +{"level":"debug","ts":"2023-08-03T06:02:56.130Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":4,"epoch":1,"round":1,"observation":"CJCGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:02:56.304Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"warn","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:02:56.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:57","latency":"79.888µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:57","latency":"88.242µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:57.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.089Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.176Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.212Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:58.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.312Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.149Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.236Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.390Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:01.218Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.447Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.806Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:02","latency":"101.196µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:02","latency":"163.363µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.465Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.680Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:05.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:05.855Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:06.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.598Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.723Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:06.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.910Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:07","latency":"116.095µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:07","latency":"120.596µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.418Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:07.418Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:03:07.418Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","direction":"out","remoteAddr":"10.14.72.41:6690","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:07.566Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.654Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.825Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.657Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.893Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.760Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:11.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":2,"candidateEpochs":[2,2,2]} +{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":1,"e":1,"l":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":4} +{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:11.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.967Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:12","latency":"114.481µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:12","latency":"118.478µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.845Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.932Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.006Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.874Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.924Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.320Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:03:15.320Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:15.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:16.080Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.347Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.893Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:03:17.025Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:17","latency":"94.382µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:17","latency":"109.577µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.228Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.402Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.439Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remoteAddr":"10.14.48.92:54724","direction":"in"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:19.100Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.187Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.211Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.503Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:21.212Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.299Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.421Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:22","latency":"108.121µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:22","latency":"107.363µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.458Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.483Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.447Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.360Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.785Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.021Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:26.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.704Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.878Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:27","latency":"96.712µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:27","latency":"96.696µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.428Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.751Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.434Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.522Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.767Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.608Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.980Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.602Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.904Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:31.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.638Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.792Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","newEpoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"candidateEpochs":[3,3,3]} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","e":2,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":2,"leader":2} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"leader":4,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00063851} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000717368} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4,"round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:31.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.981Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:03:32.115Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:32","latency":"110.087µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:32","latency":"121.873µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.692Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.997Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.171Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.817Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.029Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1},"deviation":true,"unfulfilledRequest":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"result":true,"alphaReportInfinite":false,"initialRound":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"round":1,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","result":true,"reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"latestAcceptedEpochRound":{"Epoch":0,"Round":0}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00078653} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000852053} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:35.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.920Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:36.082Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.256Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.838Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:37","latency":"91.529µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:37","latency":"76.811µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.166Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.341Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.288Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.463Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","initialRound":false,"unfulfilledRequest":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"leader":4,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":1,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":2},"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000775613} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000825697} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4,"round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:40.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.506Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:41.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.354Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:42","latency":"93.563µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:42","latency":"134.727µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.170Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.396Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.570Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:43.809Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deltaCTimeout":true,"result":true,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deltaC":0,"deviation":true} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"round":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"messageRound":4,"roundMax":3,"round":4,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":3,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":3,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","candidateEpochs":[4,4,4],"newEpoch":4} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4,"e":3,"l":4} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000677562} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000691354} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:44.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.248Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.457Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.333Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.660Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:46.256Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.691Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.069Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:03:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:47","latency":"112.151µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:47","latency":"100.413µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.528Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":4,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":1,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"deviates":true} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"round":1,"sender":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000679881} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000798627} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:48.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.446Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.389Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.668Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.843Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:51.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.591Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:51.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","deltaCTimeout":true,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"alphaReportInfinite":false,"alphaReportPPB":0,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptPPB":0,"result":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"sender":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000667953} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000650595} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0,"round":3,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:51.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:52","latency":"92.408µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:52","latency":"91.613µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.585Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.732Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.730Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.818Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.044Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.733Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.821Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:55.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","unfulfilledRequest":false,"result":true,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","initialRound":false} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":4,"Round":3},"deviates":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":4,"Round":2},"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":5,"candidateEpochs":[5,5,5]} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0,"e":4,"l":0} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":3,"epoch":4,"round":3} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000706135} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00074155} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":5,"round":1,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:55.967Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.025Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:56.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.817Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.904Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:57","latency":"93.315µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:57","latency":"107.679µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.015Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.189Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z","alphaReportPPB":0,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"initialRound":false,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"sender":1,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"reportEpochRound":{"Epoch":5,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000708699} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":5,"round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000679514} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:03:59.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.271Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.975Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:01.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.362Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.045Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:02","latency":"107.597µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:02","latency":"102.964µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.156Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:04:02.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.068Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaReportInfinite":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0,"deltaCTimeout":true,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":5,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000700657} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000693044} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:04.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.281Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:06.201Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.288Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.549Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:07","latency":"88.946µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:07","latency":"92.661µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.377Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"alphaReportInfinite":false,"deltaC":0,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false,"deviation":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":4,"messageRound":4,"roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":5,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"candidateEpochs":[6,6,6],"newEpoch":6} +{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"e":5,"l":4} +{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00058754} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000655383} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:08.221Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.354Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.651Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.319Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.669Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:11.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.506Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.680Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:11.846Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"alphaReportPPB":0,"deltaC":0,"initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deviation":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":6,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"round":1,"sender":0,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"round":1,"sender":4,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":3,"epoch":6,"round":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000787039} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000798405} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"leader":0,"round":2,"observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:12","latency":"97.207µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:12","latency":"97.281µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.494Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.538Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.712Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.532Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.783Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.628Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.686Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.841Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:15.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2},"deltaC":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":6,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","contractEpochRound":{"Epoch":6,"Round":1},"deviates":true,"result":true,"reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":4,"epoch":6,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00071212} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000775202} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:16.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:04:16.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.742Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:17","latency":"101.249µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:17","latency":"95.152µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.244Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:04:17.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.811Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.838Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.813Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:19.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"result":true,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"unfulfilledRequest":false,"alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z"} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"messageRound":4,"roundMax":3,"round":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":0,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":6,"Round":2},"deviates":true,"result":true,"contractEpochRound":{"Epoch":6,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"newEpoch":7,"candidateEpochs":[7,7,7],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"leader":0,"l":0,"e":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000687765} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000718991} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:19.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.943Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.117Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.975Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:04:21.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.046Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:22","latency":"91.959µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:22","latency":"97.915µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.161Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.054Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.213Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:23.861Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"deltaCTimeout":true,"deltaC":0,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z","unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"initialRound":false,"deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":7,"round":1,"sender":0,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","result":true,"reportEpochRound":{"Epoch":7,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":6,"Round":3},"latestAcceptedEpochRound":{"Epoch":6,"Round":3},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"info","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":7,"round":1,"sender":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.00069874} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000816302} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:23.951Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:23.951Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":7,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:23.951Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T06:04:24.038Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6","signature":"5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"} +{"level":"debug","ts":"2023-08-03T06:04:24.038Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6"} +{"level":"debug","ts":"2023-08-03T06:04:24.065Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.623Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6","signature":"5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"} +{"level":"debug","ts":"2023-08-03T06:04:24.624Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"],"id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6"} +{"level":"debug","ts":"2023-08-03T06:04:24.624Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6","signatures":["5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"]} +{"level":"debug","ts":"2023-08-03T06:04:25.094Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.231Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.268Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:26.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.231Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.318Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:27","latency":"98.031µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:27","latency":"97.768µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.145Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.233Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.320Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2},"deltaC":0,"alphaReportInfinite":false,"deviation":true,"initialRound":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","result":true} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"sender":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"contractEpochRound":{"Epoch":7,"Round":1},"reportEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"info","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":3,"epoch":7,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000834961} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000846421} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:27.955Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:27.955Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:28.042Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"} +{"level":"debug","ts":"2023-08-03T06:04:28.042Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab"} +{"level":"debug","ts":"2023-08-03T06:04:28.236Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.277Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.445Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"} +{"level":"debug","ts":"2023-08-03T06:04:29.070Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"} +{"level":"debug","ts":"2023-08-03T06:04:29.071Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"],"id":"8f04a98e-017b-4779-ae62-8511f58cf0ab"} +{"level":"debug","ts":"2023-08-03T06:04:29.071Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab","signatures":["4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"]} +{"level":"debug","ts":"2023-08-03T06:04:29.240Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.248Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:31.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.473Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:31.871Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"initialRound":false,"alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"leader":0,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","roundMax":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"round":3,"sender":0,"epoch":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":7,"Round":3},"latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0,"e":7,"l":0} +{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"leader":2,"epoch":8,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:32","latency":"115.382µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:32","latency":"213.215µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.332Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:04:32.387Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.554Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.642Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.643Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.716Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.649Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.737Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:36.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.686Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:37","latency":"97.155µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:37","latency":"97.423µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.867Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.769Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.817Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.927Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.882Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.894Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.031Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:41.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.959Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.990Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.134Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:42","latency":"89.526µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:42","latency":"89.667µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.046Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.085Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.828Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3}} +{"level":"info","ts":"2023-08-03T06:04:45.828Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:46.032Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:46.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.219Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.270Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:47","latency":"91.94µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:47","latency":"91.88µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.268Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.356Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.419Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:04:48.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.307Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.481Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.337Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.424Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.495Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.833Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-03T06:04:49.833Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:50.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.366Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.518Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.034Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:51.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.547Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":9,"candidateEpochs":[9,9,9]} +{"level":"info","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":8,"e":8,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":2} +{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"oid":1} +{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000699402} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00070011} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:52","latency":"89.299µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:52","latency":"75.874µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.546Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.633Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.550Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.606Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.637Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.838Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2}} +{"level":"info","ts":"2023-08-03T06:04:53.838Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:54.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.576Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.664Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.697Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.667Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:55.877Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deltaCTimeout":true,"unfulfilledRequest":false,"deltaC":0,"initialRound":false,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"alphaReportPPB":0,"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","latestAcceptedEpochRound":{"Epoch":7,"Round":3},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":9,"Round":1},"contractEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":9,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000632823} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000695228} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":9,"leader":3,"oid":1,"round":2,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:56.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:56.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.697Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.699Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:57","latency":"94.297µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:57","latency":"89.382µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.649Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.737Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.772Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.653Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.741Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.799Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.973Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:59.883Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"deltaC":0,"deltaCTimeout":true,"initialRound":false,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2},"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z"} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":9,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":9,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":4,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000703428} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.0006903} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":9,"leader":3,"oid":1} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:05:00.020Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.801Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.889Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.036Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:01.073Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.853Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:02","latency":"87.209µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:02","latency":"91.977µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.507Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:05:02.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.011Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:03.887Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"result":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","unfulfilledRequest":false,"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","messageRound":4,"roundMax":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":4} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"round":3,"sender":3,"oid":1} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":1,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"e":9,"l":3,"leader":3,"oid":1} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":3,"sender":4} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":2,"epoch":10} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":9,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.036Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.972Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.059Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.102Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.853Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":6,"Round":2}} +{"level":"info","ts":"2023-08-03T06:05:05.853Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:05:06.033Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.037Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:05:06.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.146Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:07","latency":"114.626µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:07","latency":"91.793µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.338Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:11.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.406Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:12","latency":"82.917µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:12","latency":"96.623µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.352Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.588Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.467Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.428Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.478Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.653Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.592Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:16.517Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.631Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:17","latency":"96.307µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:17","latency":"96.314µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.595Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:05:17.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.717Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.659Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.731Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.819Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.036Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.039Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:05:21.818Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.906Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:22","latency":"95.559µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:22","latency":"96.196µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.880Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.115Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","candidateEpochs":[11,11,11],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":11} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","e":10,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":2,"epoch":10} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":11,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:05:23.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.027Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.179Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.988Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.075Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.246Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.040Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:26.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.147Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.093Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:27","latency":"102.767µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:27","latency":"103.044µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.164Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.180Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.818Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1}} +{"level":"info","ts":"2023-08-03T06:05:27.818Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:05:28.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.245Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.419Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.150Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.342Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.346Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:05:31.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.441Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.817µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.279µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.418Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.507Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.681Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.682Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:05:33.422Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.509Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.691Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.585Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.598Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.652Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.827Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:05:36.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.712Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:37","latency":"102.416µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:37","latency":"72.366µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.681Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.855Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.881Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.783Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.790Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.870Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.881Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:41.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.097Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:42","latency":"108.6µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:42","latency":"78.096µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.924Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":12,"candidateEpochs":[12,12,12]} +{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":11,"leader":2,"e":11} +{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"leader":0} +{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000683425} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000719541} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"leader":0,"round":1,"observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:05:43.989Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.035Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.076Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.036Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.080Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.042Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:46.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:47","latency":"91.212µs"} +{"level":"debug","ts":"2023-08-03T06:05:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:47","latency":"100.64µs"} +{"level":"debug","ts":"2023-08-03T06:05:47.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.286Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.770Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} +{"level":"debug","ts":"2023-08-03T06:05:47.843Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":5,"Round":3}} +{"level":"info","ts":"2023-08-03T06:05:47.843Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:05:47.896Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":1},"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","deltaC":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":12,"leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":12,"Round":1,"H":[167,39,199,18,183,107,6,93,111,62,215,255,184,87,18,232,246,121,81,174,216,105,228,243,196,104,139,45,159,91,177,72],"AttestedReport":{"Report":"ZMtDtwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9gNLwPP+ClJhTX7NsKPOXorBFzgqd+2UlX9TJ8weNIs/PxblhJJ+xO1xAx4Wh27fNI+gwPqWH09ELWRPasWQawA=","Signer":0},{"Signature":"q/mraM9mGz5/5b0Kdq5D6FKlq3RizaRnnnv+DBHJ8oteh4RbWB6srbexYGWf+qQxpa/Z5cVgSaUw82wmAPkaPAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviates":true,"reportEpochRound":{"Epoch":12,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":9,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"sender":1,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"sender":3,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000832983} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000907258} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"observation":"CLuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:48.171Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.203Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.258Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log new file mode 100644 index 000000000..6763f6a6c --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + +waiting for server to start....2023-08-03 05:56:39.962 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.041 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC +2023-08-03 05:56:40.045 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +2023-08-03 05:56:40.664 UTC [48] LOG: received fast shutdown request +waiting for server to shut down....2023-08-03 05:56:40.683 UTC [48] LOG: aborting any active transactions +2023-08-03 05:56:40.685 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 05:56:40.685 UTC [50] LOG: shutting down +2023-08-03 05:56:40.775 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 05:56:40.876 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 05:56:40.876 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 05:56:40.878 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.893 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC +2023-08-03 05:56:40.897 UTC [1] LOG: database system is ready to accept connections +2023-08-03 05:56:42.848 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 05:56:43.951 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 05:56:43.951 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 05:56:43.951 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 05:56:43.951 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 05:56:43.952 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 05:56:43.952 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log new file mode 100644 index 000000000..cf0d95ada --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log @@ -0,0 +1,1722 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T05:56:43.938Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.938Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.938Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:43.939Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-03T05:56:43.943Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.944Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.944Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"1ea35f82-f073-4f56-b485-d30dc59d5704"} +{"level":"debug","ts":"2023-08-03T05:56:43.949Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"1ea35f82-f073-4f56-b485-d30dc59d5704"} +{"level":"debug","ts":"2023-08-03T05:56:43.951Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/03 05:56:44 OK 0001_initial.sql +2023/08/03 05:56:44 OK 0002_gormv2.sql +2023/08/03 05:56:44 OK 0003_eth_logs_table.sql +2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql +2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql +2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 05:56:44 OK 0010_bridge_fk.sql +2023/08/03 05:56:44 OK 0011_latest_round_requested.sql +2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql +2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql +2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql +2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 05:56:44 OK 0018_add_node_version_table.sql +2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 05:56:44 OK 0020_remove_result_task.sql +2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql +2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql +2023/08/03 05:56:44 OK 0025_create_log_config_table.sql +2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql +2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 05:56:44 OK 0028_vrf_v2.sql +2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql +2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql +2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql +2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql +2023/08/03 05:56:44 OK 0036_external_job_id.go +2023/08/03 05:56:44 OK 0037_cascade_deletes.sql +2023/08/03 05:56:44 OK 0038_create_csa_keys.sql +2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql +2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql +2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql +2023/08/03 05:56:44 OK 0042_create_job_proposals.sql +2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go +2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 05:56:44 OK 0056_multichain.go +2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql +2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 05:56:45 OK 0060_combine_keys_tables.sql +2023/08/03 05:56:45 OK 0061_multichain_relations.sql +2023/08/03 05:56:45 OK 0062_upgrade_keepers.sql +2023/08/03 05:56:45 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 05:56:45 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 05:56:45 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 05:56:45 OK 0066_update_job_proposal_status.sql +2023/08/03 05:56:45 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 05:56:45 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 05:56:45 OK 0069_remove_unused_columns.sql +2023/08/03 05:56:45 OK 0070_dynamic_fee_txes.sql +2023/08/03 05:56:45 OK 0071_allow_null_json_serializable.sql +2023/08/03 05:56:45 OK 0072_drop_unused_tables.sql +2023/08/03 05:56:45 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 05:56:45 OK 0074_simulation_eth_tx.sql +2023/08/03 05:56:45 OK 0075_unique_job_names.sql +2023/08/03 05:56:45 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 05:56:45 OK 0077_add_webauthn_table.sql +2023/08/03 05:56:45 OK 0078_only_one_version.sql +2023/08/03 05:56:45 OK 0079_vrf_v2_fields.sql +2023/08/03 05:56:45 OK 0080_drop_unused_cols.sql +2023/08/03 05:56:45 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 05:56:45 OK 0082_lease_lock.sql +2023/08/03 05:56:45 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 05:56:45 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 05:56:45 OK 0085_requested_confs_delay.sql +2023/08/03 05:56:45 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 05:56:45 OK 0087_ocr2_tables.sql +2023/08/03 05:56:45 OK 0088_vrfv2_request_timeout.sql +2023/08/03 05:56:45 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 05:56:45 OK 0090_ocr_new_timeouts.sql +2023/08/03 05:56:45 OK 0091_ocr2_relay.sql +2023/08/03 05:56:45 OK 0092_bptxm_tx_checkers.sql +2023/08/03 05:56:45 OK 0093_terra_txm.sql +2023/08/03 05:56:45 OK 0094_blockhash_store_job.sql +2023/08/03 05:56:45 OK 0095_terra_fcd.sql +2023/08/03 05:56:45 OK 0096_create_job_proposal_specs.sql +2023/08/03 05:56:45 OK 0097_bootstrap_spec.sql +2023/08/03 05:56:45 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 05:56:45 OK 0099_terra_msgs_created_at.sql +2023/08/03 05:56:45 OK 0100_bootstrap_config.sql +2023/08/03 05:56:45 OK 0101_generic_ocr2.sql +2023/08/03 05:56:45 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 05:56:45 OK 0103_terra_msgs_type_url.sql +2023/08/03 05:56:45 OK 0104_terra_cascade_delete.sql +2023/08/03 05:56:45 OK 0105_create_forwarder_addresses.sql +2023/08/03 05:56:45 OK 0106_evm_node_uniqueness.sql +2023/08/03 05:56:45 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 05:56:45 OK 0109_solana_chains_nodes.sql +2023/08/03 05:56:45 OK 0110_add_vrf_chunk_size.sql +2023/08/03 05:56:45 OK 0111_terra_msgs_state_started.sql +2023/08/03 05:56:45 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 05:56:45 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 05:56:45 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 05:56:45 OK 0115_log_poller.sql +2023/08/03 05:56:45 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 05:56:45 OK 0117_add_log_poller_idx.sql +2023/08/03 05:56:45 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 05:56:45 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 05:56:45 OK 0120_log_poller_data_idx.sql +2023/08/03 05:56:45 OK 0121_remove_log_configs.sql +2023/08/03 05:56:45 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 05:56:45 OK 0123_terra_idx_simplify.sql +2023/08/03 05:56:45 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 05:56:45 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 05:56:45 OK 0126_remove_observation_source.sql +2023/08/03 05:56:45 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 05:56:45 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0129_add_job_gas_limit.sql +2023/08/03 05:56:45 OK 0130_starknet_chains_nodes.sql +2023/08/03 05:56:45 OK 0131_add_multi_user.sql +2023/08/03 05:56:45 OK 0132_log_index_uniqueness.sql +2023/08/03 05:56:45 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 05:56:45 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 05:56:45 OK 0135_tx_index_not_null.sql +2023/08/03 05:56:45 OK 0136_add_job_allow_forwarding.sql +2023/08/03 05:56:45 OK 0137_remove_tx_index.sql +2023/08/03 05:56:45 OK 0138_rename_allowforwarding_field.sql +2023/08/03 05:56:45 OK 0139_multi_chain_keys.sql +2023/08/03 05:56:45 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 05:56:45 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 05:56:45 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 05:56:45 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 05:56:45 OK 0144_optimize_lp.sql +2023/08/03 05:56:45 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0148_dkg_shares.sql +2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql +2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql +2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql +2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql +2023/08/03 05:56:45 OK 0155_remove_terra.sql +2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql +2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql +2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql +2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql +2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 05:56:45 OK 0164_add_cosmos.sql +2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql +2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql +2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 05:56:45 OK 0168_drop_node_tables.sql +2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql +2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql +2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql +2023/08/03 05:56:45 OK 0174_vrf_owner.sql +2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql +2023/08/03 05:56:45 OK 0176_s4_shared_table.sql +2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql +2023/08/03 05:56:45 OK 0178_drop_access_list.sql +2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql +2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql +2023/08/03 05:56:45 OK 0183_functions_new_fields.sql +2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql +2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 05:56:45 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:50.037Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID ebd0973576a277415554c70ebfc9f5a4d81443db5df494e66c1ba55c58d6f58f for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:50.037Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:52.251Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID Eeqn1zJqyMGEV7GHAdTW7FgSKQeNy5tbJcoFLqpQ8p3d","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:54.344Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 7cc03af09b581116172da7ee111733feba17e5834e22833a4474ea544d505772","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.635Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T05:56:56.764Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T05:56:56.764Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-03T05:56:56.765Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 38835. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":38835} +{"level":"debug","ts":"2023-08-03T05:56:56.765Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":38835,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T05:56:56.766Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","v1listenPort":38835,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/38835"} +{"level":"debug","ts":"2023-08-03T05:56:56.766Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}"} +{"level":"info","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:56:56.767Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","in":"recvLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:56:56.832Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T05:56:56.832Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.832Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.97s","version":"2.4.0@d0c54ea","appID":"1ea35f82-f073-4f56-b485-d30dc59d5704"} +{"level":"debug","ts":"2023-08-03T05:56:56.833Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000819905} +{"level":"info","ts":"2023-08-03T05:56:56.840Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T05:56:56.844Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011031743} +{"level":"debug","ts":"2023-08-03T05:56:56.844Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:57.141Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:56:57","latency":"2.084211ms"} +{"level":"debug","ts":"2023-08-03T05:56:57.142Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:56:57","latency":"222.28µs"} +{"level":"debug","ts":"2023-08-03T05:57:01.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:57:01.953Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T05:57:02.152Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:02","latency":"99.055µs"} +{"level":"debug","ts":"2023-08-03T05:57:02.152Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:02","latency":"105.843µs"} +{"level":"info","ts":"2023-08-03T05:57:06.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:57:06.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:07","latency":"107.087µs"} +{"level":"debug","ts":"2023-08-03T05:57:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:07","latency":"86.114µs"} +{"level":"debug","ts":"2023-08-03T05:57:11.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:12","latency":"99.841µs"} +{"level":"debug","ts":"2023-08-03T05:57:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:12","latency":"156.275µs"} +{"level":"debug","ts":"2023-08-03T05:57:16.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:17","latency":"88.319µs"} +{"level":"debug","ts":"2023-08-03T05:57:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:17","latency":"85.313µs"} +{"level":"debug","ts":"2023-08-03T05:57:21.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:22","latency":"91.237µs"} +{"level":"debug","ts":"2023-08-03T05:57:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:22","latency":"155.214µs"} +{"level":"debug","ts":"2023-08-03T05:57:26.770Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:27","latency":"74.188µs"} +{"level":"debug","ts":"2023-08-03T05:57:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:27","latency":"99.138µs"} +{"level":"debug","ts":"2023-08-03T05:57:31.770Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:32","latency":"92.758µs"} +{"level":"debug","ts":"2023-08-03T05:57:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:32","latency":"92.42µs"} +{"level":"debug","ts":"2023-08-03T05:57:35.458Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:57:35.459Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T05:57:35.558Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T05:57:35.560Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:35","latency":"102.134073ms"} +{"level":"debug","ts":"2023-08-03T05:57:36.771Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:57:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:37","latency":"90.81µs"} +{"level":"debug","ts":"2023-08-03T05:57:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:37","latency":"90.691µs"} +{"level":"debug","ts":"2023-08-03T05:57:41.771Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:57:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:42","latency":"87.124µs"} +{"level":"debug","ts":"2023-08-03T05:57:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:42","latency":"109.31µs"} +{"level":"debug","ts":"2023-08-03T05:57:46.772Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:47","latency":"88.409µs"} +{"level":"debug","ts":"2023-08-03T05:57:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:47","latency":"108.839µs"} +{"level":"debug","ts":"2023-08-03T05:57:50.428Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:50","latency":"2.202745ms"} +{"level":"debug","ts":"2023-08-03T05:57:51.773Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:52","latency":"69.561µs"} +{"level":"debug","ts":"2023-08-03T05:57:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:52","latency":"99.892µs"} +{"level":"debug","ts":"2023-08-03T05:57:52.659Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:52","latency":"2.028896894s"} +{"level":"debug","ts":"2023-08-03T05:57:55.140Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:55","latency":"2.278003245s"} +{"level":"debug","ts":"2023-08-03T05:57:56.774Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:57","latency":"101.417µs"} +{"level":"debug","ts":"2023-08-03T05:57:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:57","latency":"116.032µs"} +{"level":"debug","ts":"2023-08-03T05:58:01.474Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"56.049µs"} +{"level":"debug","ts":"2023-08-03T05:58:01.677Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"54.152µs"} +{"level":"debug","ts":"2023-08-03T05:58:01.775Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:02","latency":"87.083µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:02","latency":"90.302µs"} +{"level":"debug","ts":"2023-08-03T05:58:06.776Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:58:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:07","latency":"95.563µs"} +{"level":"debug","ts":"2023-08-03T05:58:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:07","latency":"79.848µs"} +{"level":"debug","ts":"2023-08-03T05:58:11.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:12","latency":"98.666µs"} +{"level":"debug","ts":"2023-08-03T05:58:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:12","latency":"91.353µs"} +{"level":"debug","ts":"2023-08-03T05:58:16.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:17","latency":"94.321µs"} +{"level":"debug","ts":"2023-08-03T05:58:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:17","latency":"89.325µs"} +{"level":"debug","ts":"2023-08-03T05:58:21.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:58:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:22","latency":"96.841µs"} +{"level":"debug","ts":"2023-08-03T05:58:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:22","latency":"78.445µs"} +{"level":"debug","ts":"2023-08-03T05:58:26.778Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:58:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:27","latency":"88.874µs"} +{"level":"debug","ts":"2023-08-03T05:58:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:27","latency":"103.02µs"} +{"level":"debug","ts":"2023-08-03T05:58:31.778Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:32","latency":"92.327µs"} +{"level":"debug","ts":"2023-08-03T05:58:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:32","latency":"91.311µs"} +{"level":"debug","ts":"2023-08-03T05:58:36.779Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:37","latency":"74.362µs"} +{"level":"debug","ts":"2023-08-03T05:58:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:37","latency":"104.381µs"} +{"level":"debug","ts":"2023-08-03T05:58:41.780Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:42","latency":"90.784µs"} +{"level":"debug","ts":"2023-08-03T05:58:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:42","latency":"94.166µs"} +{"level":"debug","ts":"2023-08-03T05:58:46.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:47","latency":"86.434µs"} +{"level":"debug","ts":"2023-08-03T05:58:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:47","latency":"104.203µs"} +{"level":"debug","ts":"2023-08-03T05:58:51.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:52","latency":"89.361µs"} +{"level":"debug","ts":"2023-08-03T05:58:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:52","latency":"83.855µs"} +{"level":"debug","ts":"2023-08-03T05:58:56.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:57","latency":"93.73µs"} +{"level":"debug","ts":"2023-08-03T05:58:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:57","latency":"92.689µs"} +{"level":"debug","ts":"2023-08-03T05:59:01.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:02","latency":"93.372µs"} +{"level":"debug","ts":"2023-08-03T05:59:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:02","latency":"93.386µs"} +{"level":"debug","ts":"2023-08-03T05:59:06.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:07","latency":"105.76µs"} +{"level":"debug","ts":"2023-08-03T05:59:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:07","latency":"82.905µs"} +{"level":"debug","ts":"2023-08-03T05:59:11.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:12","latency":"93.16µs"} +{"level":"debug","ts":"2023-08-03T05:59:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:12","latency":"89.496µs"} +{"level":"debug","ts":"2023-08-03T05:59:16.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:17","latency":"88.302µs"} +{"level":"debug","ts":"2023-08-03T05:59:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:17","latency":"91.124µs"} +{"level":"debug","ts":"2023-08-03T05:59:21.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:22","latency":"87.235µs"} +{"level":"debug","ts":"2023-08-03T05:59:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:22","latency":"72.512µs"} +{"level":"debug","ts":"2023-08-03T05:59:26.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:27","latency":"81.182µs"} +{"level":"debug","ts":"2023-08-03T05:59:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:27","latency":"91.343µs"} +{"level":"debug","ts":"2023-08-03T05:59:31.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:32","latency":"111.234µs"} +{"level":"debug","ts":"2023-08-03T05:59:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:32","latency":"111.253µs"} +{"level":"debug","ts":"2023-08-03T05:59:36.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:37","latency":"87.356µs"} +{"level":"debug","ts":"2023-08-03T05:59:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:37","latency":"90.533µs"} +{"level":"debug","ts":"2023-08-03T05:59:41.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:42","latency":"84.825µs"} +{"level":"debug","ts":"2023-08-03T05:59:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:42","latency":"101.182µs"} +{"level":"debug","ts":"2023-08-03T05:59:46.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:59:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:47","latency":"91.371µs"} +{"level":"debug","ts":"2023-08-03T05:59:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:47","latency":"89.92µs"} +{"level":"debug","ts":"2023-08-03T05:59:51.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:59:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:52","latency":"91.579µs"} +{"level":"debug","ts":"2023-08-03T05:59:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:52","latency":"89.784µs"} +{"level":"debug","ts":"2023-08-03T05:59:56.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T05:59:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:57","latency":"100.443µs"} +{"level":"debug","ts":"2023-08-03T05:59:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:57","latency":"143.878µs"} +{"level":"debug","ts":"2023-08-03T06:00:01.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:02","latency":"92.696µs"} +{"level":"debug","ts":"2023-08-03T06:00:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:02","latency":"90.688µs"} +{"level":"debug","ts":"2023-08-03T06:00:06.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:07","latency":"109.484µs"} +{"level":"debug","ts":"2023-08-03T06:00:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:07","latency":"92.221µs"} +{"level":"debug","ts":"2023-08-03T06:00:11.790Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:12","latency":"88.199µs"} +{"level":"debug","ts":"2023-08-03T06:00:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:12","latency":"97.843µs"} +{"level":"debug","ts":"2023-08-03T06:00:16.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:17","latency":"92.638µs"} +{"level":"debug","ts":"2023-08-03T06:00:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:17","latency":"93.038µs"} +{"level":"debug","ts":"2023-08-03T06:00:21.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:22","latency":"88.913µs"} +{"level":"debug","ts":"2023-08-03T06:00:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:22","latency":"109.081µs"} +{"level":"debug","ts":"2023-08-03T06:00:26.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:27","latency":"86.535µs"} +{"level":"debug","ts":"2023-08-03T06:00:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:27","latency":"87.995µs"} +{"level":"debug","ts":"2023-08-03T06:00:31.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:00:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:32","latency":"72.627µs"} +{"level":"debug","ts":"2023-08-03T06:00:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:32","latency":"109.732µs"} +{"level":"debug","ts":"2023-08-03T06:00:36.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:37","latency":"131.31µs"} +{"level":"debug","ts":"2023-08-03T06:00:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:37","latency":"103.871µs"} +{"level":"debug","ts":"2023-08-03T06:00:41.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:42","latency":"100.194µs"} +{"level":"debug","ts":"2023-08-03T06:00:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:42","latency":"99.969µs"} +{"level":"debug","ts":"2023-08-03T06:00:46.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:47","latency":"92.051µs"} +{"level":"debug","ts":"2023-08-03T06:00:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:47","latency":"89.188µs"} +{"level":"debug","ts":"2023-08-03T06:00:51.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:52","latency":"99.403µs"} +{"level":"debug","ts":"2023-08-03T06:00:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:52","latency":"85.737µs"} +{"level":"debug","ts":"2023-08-03T06:00:56.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:57","latency":"93.555µs"} +{"level":"debug","ts":"2023-08-03T06:00:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:57","latency":"91.783µs"} +{"level":"debug","ts":"2023-08-03T06:01:01.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:02","latency":"80.906µs"} +{"level":"debug","ts":"2023-08-03T06:01:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:02","latency":"99.834µs"} +{"level":"debug","ts":"2023-08-03T06:01:06.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:07","latency":"97.856µs"} +{"level":"debug","ts":"2023-08-03T06:01:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:07","latency":"90.933µs"} +{"level":"debug","ts":"2023-08-03T06:01:11.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:12","latency":"90.26µs"} +{"level":"debug","ts":"2023-08-03T06:01:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:12","latency":"95.471µs"} +{"level":"debug","ts":"2023-08-03T06:01:16.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:17","latency":"96.391µs"} +{"level":"debug","ts":"2023-08-03T06:01:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:17","latency":"80.246µs"} +{"level":"debug","ts":"2023-08-03T06:01:21.798Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:22","latency":"87.974µs"} +{"level":"debug","ts":"2023-08-03T06:01:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:22","latency":"95.056µs"} +{"level":"debug","ts":"2023-08-03T06:01:26.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:27","latency":"97.681µs"} +{"level":"debug","ts":"2023-08-03T06:01:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:27","latency":"79.471µs"} +{"level":"debug","ts":"2023-08-03T06:01:31.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:01:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:32","latency":"87.981µs"} +{"level":"debug","ts":"2023-08-03T06:01:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:32","latency":"107.033µs"} +{"level":"debug","ts":"2023-08-03T06:01:36.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:01:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:37","latency":"94.628µs"} +{"level":"debug","ts":"2023-08-03T06:01:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:37","latency":"80.515µs"} +{"level":"debug","ts":"2023-08-03T06:01:41.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:42","latency":"90.456µs"} +{"level":"debug","ts":"2023-08-03T06:01:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:42","latency":"88.731µs"} +{"level":"debug","ts":"2023-08-03T06:01:46.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:47","latency":"90.69µs"} +{"level":"debug","ts":"2023-08-03T06:01:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:47","latency":"94.844µs"} +{"level":"debug","ts":"2023-08-03T06:01:51.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:01:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:52","latency":"91.429µs"} +{"level":"debug","ts":"2023-08-03T06:01:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:52","latency":"73.759µs"} +{"level":"debug","ts":"2023-08-03T06:01:56.802Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:57","latency":"74.925µs"} +{"level":"debug","ts":"2023-08-03T06:01:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:57","latency":"108.071µs"} +{"level":"debug","ts":"2023-08-03T06:02:01.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:02","latency":"97.502µs"} +{"level":"debug","ts":"2023-08-03T06:02:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:02","latency":"83.653µs"} +{"level":"info","ts":"2023-08-03T06:02:06.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:06.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:07","latency":"97.876µs"} +{"level":"debug","ts":"2023-08-03T06:02:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:07","latency":"99.801µs"} +{"level":"debug","ts":"2023-08-03T06:02:11.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:12","latency":"87.409µs"} +{"level":"debug","ts":"2023-08-03T06:02:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:12","latency":"94.883µs"} +{"level":"debug","ts":"2023-08-03T06:02:16.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:17","latency":"99.752µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:17","latency":"98.447µs"} +{"level":"debug","ts":"2023-08-03T06:02:18.767Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:18","latency":"51.391µs"} +{"level":"debug","ts":"2023-08-03T06:02:18.974Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:18","latency":"59.156µs"} +{"level":"debug","ts":"2023-08-03T06:02:21.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:22","latency":"94.72µs"} +{"level":"debug","ts":"2023-08-03T06:02:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:22","latency":"81.806µs"} +{"level":"debug","ts":"2023-08-03T06:02:26.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:27","latency":"99.966µs"} +{"level":"debug","ts":"2023-08-03T06:02:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:27","latency":"94.296µs"} +{"level":"debug","ts":"2023-08-03T06:02:31.807Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:02:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:32","latency":"104.281µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:32","latency":"92.833µs"} +{"level":"debug","ts":"2023-08-03T06:02:36.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:37","latency":"91.529µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:37","latency":"86.423µs"} +{"level":"debug","ts":"2023-08-03T06:02:41.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:42","latency":"102.037µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:42","latency":"98.576µs"} +{"level":"debug","ts":"2023-08-03T06:02:46.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:47","latency":"94.865µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:47","latency":"73.774µs"} +{"level":"debug","ts":"2023-08-03T06:02:51.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:52","latency":"94.834µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:52","latency":"123.129µs"} +{"level":"debug","ts":"2023-08-03T06:02:56.811Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:57","latency":"94.22µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:57","latency":"92.191µs"} +{"level":"debug","ts":"2023-08-03T06:02:59.332Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:59","latency":"3.404832ms"} +{"level":"info","ts":"2023-08-03T06:02:59.544Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:02:59.544Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} +{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-03T06:02:59.545Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"info","ts":"2023-08-03T06:02:59.814Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:02:59.815Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","duration":825} +{"level":"info","ts":"2023-08-03T06:02:59.815Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"info","ts":"2023-08-03T06:02:59.815Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:02:59.815Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"f8a21a7320c54d674bc6b7fda695618316cf564c16457f3141d909cb396729b9\\\" \\n\\ntransmitterID = \\\"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:59","latency":"279.137334ms"} +{"level":"debug","ts":"2023-08-03T06:02:59.904Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"info","ts":"2023-08-03T06:02:59.904Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}]} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamName":"ragedisco/v1","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c"} +{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"found":["12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"],"loaded":["12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"],"numLoaded":1,"id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","numQueried":5,"numFound":1} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":3,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"PeerV2","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"5fecfa2cd7702520f7105cc22f344ff07d9dfab97f5658c355f868e9a56b0457","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":3,"_id":"OCREndpointV2"} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:02:59.910Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:02:59.910Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","previousNe":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"ne":1} +{"level":"info","ts":"2023-08-03T06:02:59.910Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":1,"leader":4} +{"level":"debug","ts":"2023-08-03T06:02:59.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.816Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:00.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:01.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:01.887Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.066Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:02","latency":"111.327µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:02","latency":"129.223µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.810Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:02.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.887Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:03.977Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.121Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"warn","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"warn","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:03:04.838Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","direction":"out","remoteAddr":"10.14.104.202:6690","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:04.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:04.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.060Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.136Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:05.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.007Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:06.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:06.996Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:07","latency":"93.961µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:07","latency":"95.886µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","direction":"in","remoteAddr":"10.14.31.21:60118","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc"} +{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:08.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.180Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:08.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.095Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.204Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:09.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.159Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.248Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:10.350Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.255Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:11.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remoteAddr":"10.14.116.75:47536","direction":"in"} +{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c","streamName":"ragedisco/v1","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":2,"candidateEpochs":[2,2,2]} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000414455} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000408794} +{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:146","msg":"logging as debug due to context cancellation: ReportGeneration: ReportingPlugin.Observation errored","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"round":1,"error":"error in Observation: DataSource.Observe returned an error: task inputs: too many errors; JuelsPerFeeCoinDataSource.Observe returned an error: task inputs: too many errors","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":1} +{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":1,"leader":4,"e":1,"l":4} +{"level":"info","ts":"2023-08-03T06:03:11.792Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:11.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:12","latency":"93.391µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:12","latency":"98.746µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.382Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.574Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.541Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"warn","ts":"2023-08-03T06:03:14.541Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:14.660Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.994Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:03:15.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.499Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.678Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.368Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.814Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:03:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:17","latency":"93.848µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:17","latency":"110.848µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.539Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.527Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.617Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","direction":"in","remoteAddr":"10.14.48.92:59398","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:18.675Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:18.704Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.617Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.707Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.822Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:21.827Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.006Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:22","latency":"97.609µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:22","latency":"94.579µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.690Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.878Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.056Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.124Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.863Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.953Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.086Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:26.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.036Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:27","latency":"95.379µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:27","latency":"103.119µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.158Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.337Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.102Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.224Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.404Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.065Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.084Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.084Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:03:30.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.331Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.165Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.563Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.792Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":3,"candidateEpochs":[3,3,3]} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":2,"leader":2,"e":2,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:31.796Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.002630471} +{"level":"debug","ts":"2023-08-03T06:03:31.796Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.002683783} +{"level":"debug","ts":"2023-08-03T06:03:31.796Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:31.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:32","latency":"89.289µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:32","latency":"81.063µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.190Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.279Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.600Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.208Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.628Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.333Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.522Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.384Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.769Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deltaCTimeout":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","unfulfilledRequest":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1},"initialRound":true,"alphaReportPPB":0,"deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"reportingPlugin":"NumericalMedian","deltaC":0} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} +{"level":"info","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001016132} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001107907} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":2,"observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4} +{"level":"debug","ts":"2023-08-03T06:03:35.891Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:35.891Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:35.891Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T06:03:35.980Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"} +{"level":"debug","ts":"2023-08-03T06:03:35.981Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4"} +{"level":"debug","ts":"2023-08-03T06:03:36.234Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"} +{"level":"debug","ts":"2023-08-03T06:03:36.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.411Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.603Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.781Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:36.848Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"} +{"level":"debug","ts":"2023-08-03T06:03:36.849Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4","signatures":["4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"]} +{"level":"debug","ts":"2023-08-03T06:03:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:37","latency":"126.133µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:37","latency":"146.662µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.424Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.432Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.900Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.748Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:39.804Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deltaC":0,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","alphaReportInfinite":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportPPB":0,"initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":3,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaAcceptPPB":0,"deviates":true,"result":true,"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000912283} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000959147} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:39.927Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.386Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:41.844Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:42","latency":"82.457µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:42","latency":"100.293µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.420Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.473Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.563Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:43.809Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","alphaReportPPB":0,"deviation":true,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","result":true,"alphaReportInfinite":false,"initialRound":false,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"candidateEpochs":[4,4,4],"newEpoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"e":3,"l":4} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":3,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001051574} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001318386} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:44.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.662Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.015Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.174Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:03:45.194Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.714Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.247Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.668Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.757Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:47.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:47","latency":"85.306µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:47","latency":"97.263µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","unfulfilledRequest":false,"result":true,"initialRound":false,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1,"sender":0} +{"level":"info","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":1,"oid":3} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001058117} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001780668} +{"level":"debug","ts":"2023-08-03T06:03:47.819Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:47.906Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:47.907Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.997Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"bf9de14e-d09e-4449-852d-2a150c3bf648","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"} +{"level":"debug","ts":"2023-08-03T06:03:47.997Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj","id":"bf9de14e-d09e-4449-852d-2a150c3bf648"} +{"level":"debug","ts":"2023-08-03T06:03:48.106Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.285Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.406Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"} +{"level":"debug","ts":"2023-08-03T06:03:48.749Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.008Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"bf9de14e-d09e-4449-852d-2a150c3bf648","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"} +{"level":"debug","ts":"2023-08-03T06:03:49.008Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"],"id":"bf9de14e-d09e-4449-852d-2a150c3bf648"} +{"level":"debug","ts":"2023-08-03T06:03:49.008Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"bf9de14e-d09e-4449-852d-2a150c3bf648","signatures":["3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"]} +{"level":"debug","ts":"2023-08-03T06:03:49.151Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.331Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.830Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.920Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.351Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.892Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.446Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportInfinite":false,"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaCTimeout":true,"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","alphaReportPPB":0,"deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000866974} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001166785} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":4,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} +{"level":"debug","ts":"2023-08-03T06:03:51.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.039Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:52","latency":"91.778µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:52","latency":"90.553µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.969Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.059Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.383Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.562Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.057Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.146Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.413Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.591Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.429Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:55.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"result":true,"deltaC":0,"initialRound":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"leader":0,"epoch":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","roundMax":3,"oid":3,"leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":5,"candidateEpochs":[5,5,5]} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","l":0,"leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"e":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":4,"Round":2},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":4,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000848194} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000973817} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":1,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:56.203Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.437Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:03:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:57","latency":"83.318µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:57","latency":"124.41µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.225Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.315Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.305Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.732Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.623Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"alphaReportPPB":0,"deltaCTimeout":true,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaC":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z"} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":4,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"round":1,"sender":4,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000930834} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000953547} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:00.265Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:04:00.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.487Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.694Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.873Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.467Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.557Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:04:01.881Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:02","latency":"89.93µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:02","latency":"95.53µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.925Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.574Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","initialRound":false,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":4,"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000976621} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001082016} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:03.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.704Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.999Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.653Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.742Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.707Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.797Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:06.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:07","latency":"89.847µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:07","latency":"94.487µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.146Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.791Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deltaC":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"deviation":true,"alphaReportPPB":0,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"unfulfilledRequest":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","roundMax":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"sender":4,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":2},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"candidateEpochs":[6,6,6],"newEpoch":6} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":3,"sender":1} +{"level":"info","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"e":5,"l":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5} +{"level":"info","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000859452} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.00099773} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:07.881Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.013Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.893Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.883Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.973Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.268Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.918Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.008Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.107Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.285Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-03T06:04:11.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"alphaReportPPB":0,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","result":true} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":1,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":6,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001168815} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001532248} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:11.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.068Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.138Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:12","latency":"99.229µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:12","latency":"93.364µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.317Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.120Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.122Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.212Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.355Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:04:15.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:15.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2},"deviation":true,"alphaReportPPB":0,"unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","contractEpochRound":{"Epoch":6,"Round":1},"reportEpochRound":{"Epoch":6,"Round":2},"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2,"sender":4,"epoch":6} +{"level":"info","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"round":2,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000926663} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001023227} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:15.942Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:15.942Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:16.031Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"} +{"level":"debug","ts":"2023-08-03T06:04:16.032Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22"} +{"level":"debug","ts":"2023-08-03T06:04:16.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.333Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.523Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"} +{"level":"debug","ts":"2023-08-03T06:04:16.822Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:17","latency":"72.431µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:17","latency":"114.017µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.153Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"} +{"level":"debug","ts":"2023-08-03T06:04:17.153Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22","signatures":["5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"]} +{"level":"debug","ts":"2023-08-03T06:04:17.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.568Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.607Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.336Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.610Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:19.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"alphaReportPPB":0,"deltaCTimeout":true,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z","unfulfilledRequest":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"result":true} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":3,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","messageRound":4,"roundMax":3,"round":4,"oid":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":1,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","e":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"leader":0,"l":0} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":0,"epoch":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"sender":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000927078} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001027871} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:20.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.384Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.350Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.823Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:22","latency":"94.931µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:22","latency":"91.448µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.548Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.726Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.484Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:23.862Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","unfulfilledRequest":false,"deviation":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"alphaReportInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"initialRound":false,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":6,"Round":3},"contractEpochRound":{"Epoch":6,"Round":3},"reportEpochRound":{"Epoch":7,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1,"sender":1,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000895932} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001007722} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:24.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.498Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.713Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.891Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.558Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.824Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:26.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:27","latency":"89.942µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:27","latency":"99.183µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","unfulfilledRequest":false,"result":true,"alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"deviation":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":7,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":4,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","deviates":true,"reportEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":7,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":7,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000976463} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000997582} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"leader":0,"round":3,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:27.974Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.619Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.709Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.872Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.051Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.693Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.783Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.807Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":3,"Round":2}} +{"level":"info","ts":"2023-08-03T06:04:29.807Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:29.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.445Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:04:30.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.864Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.121Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.778Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.825Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:31.868Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:31.871Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","initialRound":false,"deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":7,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}},"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":7,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":7,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":3,"sender":4} +{"level":"info","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","l":0,"e":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7} +{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":2,"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":8} +{"level":"debug","ts":"2023-08-03T06:04:31.971Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:32","latency":"77.553µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:32","latency":"93.412µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.842Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.932Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.889Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.248Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.903Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.993Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.213Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.392Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:36.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.049Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:37","latency":"88.825µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:37","latency":"92.87µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.252Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.455Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.146Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.307Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.538Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.595Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:42","latency":"90.532µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:42","latency":"102.535µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.215Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.305Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.464Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.643Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.301Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.391Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.324Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.414Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.420Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.524Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.535Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:04:45.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.827Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:04:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:47","latency":"84.516µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:47","latency":"86.887µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.555Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.645Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.633Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.805Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.817Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:51.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.852Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","e":8,"l":2,"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":8,"leader":2} +{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000943422} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000956314} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":1,"sender":3,"msgEpoch":9,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","msgRound":1,"oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":1,"msgEpoch":9} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":1,"sender":4,"msgEpoch":9,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"observationCount":3,"requiredObservationCount":3,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1} +{"level":"debug","ts":"2023-08-03T06:04:51.877Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","msgRound":1,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1,"sender":0,"msgEpoch":9} +{"level":"debug","ts":"2023-08-03T06:04:51.877Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:52","latency":"91.949µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:52","latency":"92.185µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.910Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.940Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.793Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.971Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.875Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:55.877Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","initialRound":false,"result":true,"alphaReportInfinite":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"unfulfilledRequest":false,"deltaCTimeout":true,"deltaC":0} +{"level":"debug","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","latestAcceptedEpochRound":{"Epoch":7,"Round":3},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001000529} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000991899} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":2,"msgRound":1,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":1,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"round":2,"sender":3,"msgEpoch":9,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2,"observationCount":1,"requiredObservationCount":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":1,"msgEpoch":9,"msgRound":2,"oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":2,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"msgRound":2,"round":2,"sender":4,"msgEpoch":9,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"round":2,"observationCount":3,"requiredObservationCount":3,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:55.882Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":0,"msgEpoch":9,"msgRound":2,"oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:04:55.882Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:55.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.964Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.066Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:04:56.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.103Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:57","latency":"89.521µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:57","latency":"76.704µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.972Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.160Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:59.882Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportPPB":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","result":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":9,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"info","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001009337} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001003094} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":1,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":3,"sender":3,"msgEpoch":9,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"requiredObservationCount":3,"round":3,"observationCount":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":3,"sender":1,"msgEpoch":9,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"requiredObservationCount":3,"round":3,"observationCount":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"sender":4,"msgEpoch":9,"msgRound":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} +{"level":"debug","ts":"2023-08-03T06:04:59.887Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"msgRound":3,"round":3,"sender":0,"msgEpoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:59.887Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-03T06:04:59.973Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:59.973Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"round":2,"epoch":9,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:00.052Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.063Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:00.063Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8"} +{"level":"debug","ts":"2023-08-03T06:05:00.145Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.565Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:00.626Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:05:01.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.194Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:01.211Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.270Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.301Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.823Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:01.829Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:02","latency":"93.217µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:02","latency":"87.387µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.143Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.240Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.322Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.414Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:03.043Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:03.158Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.164Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","fee":1,"signatures":["5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj","STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"]} +{"level":"debug","ts":"2023-08-03T06:05:03.328Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.337Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.674Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"} +{"level":"debug","ts":"2023-08-03T06:05:03.674Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"info","ts":"2023-08-03T06:05:03.887Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":3,"epoch":9,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","result":true,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"msgRound":3,"round":4} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"e":9,"l":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.978Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:03.978Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:04.068Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"7a048856-1133-4764-87aa-6cc468db012e","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"} +{"level":"debug","ts":"2023-08-03T06:05:04.068Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R","id":"7a048856-1133-4764-87aa-6cc468db012e"} +{"level":"debug","ts":"2023-08-03T06:05:04.229Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","signature":"STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"} +{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} +{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"} +{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","signatures":["5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj","STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"]} +{"level":"debug","ts":"2023-08-03T06:05:04.368Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.882Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"7a048856-1133-4764-87aa-6cc468db012e","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"} +{"level":"debug","ts":"2023-08-03T06:05:04.882Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"],"id":"7a048856-1133-4764-87aa-6cc468db012e"} +{"level":"debug","ts":"2023-08-03T06:05:04.882Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"7a048856-1133-4764-87aa-6cc468db012e","signatures":["3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"]} +{"level":"debug","ts":"2023-08-03T06:05:05.309Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.587Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.830Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:07","latency":"105.166µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:07","latency":"102.458µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.607Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.591Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.628Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.681Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.483Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.662Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.533Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.712Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.805Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.750Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.831Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:05:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:12","latency":"98.495µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:12","latency":"105.484µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.765Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.776Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.800Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.892Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.936Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.716Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:05:15.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.947Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.997Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.832Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:05:16.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.981Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:17","latency":"93.618µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:17","latency":"86.923µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.799Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.993Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.817Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.996Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.148Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.900Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.211Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.912Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.151Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.833Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:21.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.098Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:22","latency":"97.683µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:22","latency":"78.241µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.240Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.977Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.156Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.244Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.811Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-03T06:05:23.811Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","newEpoch":11,"candidateEpochs":[11,11,11],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","e":10,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":10,"leader":2} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":11} +{"level":"debug","ts":"2023-08-03T06:05:24.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.251Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.148Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.442Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.531Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.834Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"debug","ts":"2023-08-03T06:05:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:27","latency":"91.592µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:27","latency":"101.92µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.226Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.405Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.294Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.371Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.551Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.650Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.438Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.617Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.806Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:05:31.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.834Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:32","latency":"89.486µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.429µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.740Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.663Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.842Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.712Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.064Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.835Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:36.936Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.021Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:37","latency":"99.582µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:37","latency":"106.161µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.107Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.197Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.273Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.128Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.340Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.254Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.837Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:41.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:42","latency":"114.601µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:42","latency":"113.484µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.166Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.012Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.191Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.356Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.446Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"newEpoch":12,"candidateEpochs":[12,12,12],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":11,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","e":11,"l":2} +{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000928784} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001336829} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:44.070Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.398Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.407Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.896Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} +{"level":"debug","ts":"2023-08-03T06:05:46.170Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.465Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.555Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.837Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:47","latency":"91.165µs"} +{"level":"debug","ts":"2023-08-03T06:05:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:47","latency":"93.491µs"} +{"level":"debug","ts":"2023-08-03T06:05:47.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.562Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.652Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:47.896Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportInfinite":false,"deviation":true,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":1},"initialRound":false,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"reportingPlugin":"NumericalMedian","result":true} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":0,"epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":12,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":12,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":12,"Round":1,"H":[167,39,199,18,183,107,6,93,111,62,215,255,184,87,18,232,246,121,81,174,216,105,228,243,196,104,139,45,159,91,177,72],"AttestedReport":{"Report":"ZMtDtwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9gNLwPP+ClJhTX7NsKPOXorBFzgqd+2UlX9TJ8weNIs/PxblhJJ+xO1xAx4Wh27fNI+gwPqWH09ELWRPasWQawA=","Signer":0},{"Signature":"q/mraM9mGz5/5b0Kdq5D6FKlq3RizaRnnnv+DBHJ8oteh4RbWB6srbexYGWf+qQxpa/Z5cVgSaUw82wmAPkaPAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":12,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":12,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":12,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000877177} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000900879} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CLuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":12,"round":2} +{"level":"debug","ts":"2023-08-03T06:05:48.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.376Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.740Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.295Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.474Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.655Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.369Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.548Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.684Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.459Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log new file mode 100644 index 000000000..b96ab9087 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-03 05:56:40.052 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.138 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC +2023-08-03 05:56:40.142 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-03 05:56:40.756 UTC [48] LOG: received fast shutdown request +.2023-08-03 05:56:40.758 UTC [48] LOG: aborting any active transactions +2023-08-03 05:56:40.835 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 05:56:40.836 UTC [50] LOG: shutting down +2023-08-03 05:56:40.852 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 05:56:40.866 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 05:56:40.866 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 05:56:40.868 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 05:56:40.975 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC +2023-08-03 05:56:40.996 UTC [1] LOG: database system is ready to accept connections +2023-08-03 05:56:42.753 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 05:56:43.750 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 05:56:43.750 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 05:56:43.750 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 05:56:43.750 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 05:56:43.751 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 05:56:43.751 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log new file mode 100644 index 000000000..6dbb419b4 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log @@ -0,0 +1,1810 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-03T05:56:43.742Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.742Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:43.742Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"51433d7b-44c7-46fb-a787-7f0f23f2f16f"} +{"level":"debug","ts":"2023-08-03T05:56:43.748Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"51433d7b-44c7-46fb-a787-7f0f23f2f16f"} +{"level":"debug","ts":"2023-08-03T05:56:43.750Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/03 05:56:44 OK 0001_initial.sql +2023/08/03 05:56:44 OK 0002_gormv2.sql +2023/08/03 05:56:44 OK 0003_eth_logs_table.sql +2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql +2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql +2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 05:56:44 OK 0010_bridge_fk.sql +2023/08/03 05:56:44 OK 0011_latest_round_requested.sql +2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql +2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql +2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql +2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 05:56:44 OK 0018_add_node_version_table.sql +2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 05:56:44 OK 0020_remove_result_task.sql +2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql +2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql +2023/08/03 05:56:44 OK 0025_create_log_config_table.sql +2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql +2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 05:56:44 OK 0028_vrf_v2.sql +2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql +2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql +2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql +2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql +2023/08/03 05:56:44 OK 0036_external_job_id.go +2023/08/03 05:56:44 OK 0037_cascade_deletes.sql +2023/08/03 05:56:44 OK 0038_create_csa_keys.sql +2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql +2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql +2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql +2023/08/03 05:56:44 OK 0042_create_job_proposals.sql +2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go +2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 05:56:44 OK 0056_multichain.go +2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql +2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql +2023/08/03 05:56:44 OK 0061_multichain_relations.sql +2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql +2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql +2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql +2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql +2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql +2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql +2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql +2023/08/03 05:56:44 OK 0075_unique_job_names.sql +2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql +2023/08/03 05:56:44 OK 0078_only_one_version.sql +2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql +2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql +2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 05:56:44 OK 0082_lease_lock.sql +2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql +2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 05:56:44 OK 0087_ocr2_tables.sql +2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql +2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql +2023/08/03 05:56:44 OK 0091_ocr2_relay.sql +2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql +2023/08/03 05:56:44 OK 0093_terra_txm.sql +2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql +2023/08/03 05:56:44 OK 0095_terra_fcd.sql +2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql +2023/08/03 05:56:45 OK 0097_bootstrap_spec.sql +2023/08/03 05:56:45 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 05:56:45 OK 0099_terra_msgs_created_at.sql +2023/08/03 05:56:45 OK 0100_bootstrap_config.sql +2023/08/03 05:56:45 OK 0101_generic_ocr2.sql +2023/08/03 05:56:45 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 05:56:45 OK 0103_terra_msgs_type_url.sql +2023/08/03 05:56:45 OK 0104_terra_cascade_delete.sql +2023/08/03 05:56:45 OK 0105_create_forwarder_addresses.sql +2023/08/03 05:56:45 OK 0106_evm_node_uniqueness.sql +2023/08/03 05:56:45 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 05:56:45 OK 0109_solana_chains_nodes.sql +2023/08/03 05:56:45 OK 0110_add_vrf_chunk_size.sql +2023/08/03 05:56:45 OK 0111_terra_msgs_state_started.sql +2023/08/03 05:56:45 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 05:56:45 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 05:56:45 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 05:56:45 OK 0115_log_poller.sql +2023/08/03 05:56:45 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 05:56:45 OK 0117_add_log_poller_idx.sql +2023/08/03 05:56:45 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 05:56:45 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 05:56:45 OK 0120_log_poller_data_idx.sql +2023/08/03 05:56:45 OK 0121_remove_log_configs.sql +2023/08/03 05:56:45 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 05:56:45 OK 0123_terra_idx_simplify.sql +2023/08/03 05:56:45 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 05:56:45 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 05:56:45 OK 0126_remove_observation_source.sql +2023/08/03 05:56:45 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 05:56:45 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0129_add_job_gas_limit.sql +2023/08/03 05:56:45 OK 0130_starknet_chains_nodes.sql +2023/08/03 05:56:45 OK 0131_add_multi_user.sql +2023/08/03 05:56:45 OK 0132_log_index_uniqueness.sql +2023/08/03 05:56:45 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 05:56:45 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 05:56:45 OK 0135_tx_index_not_null.sql +2023/08/03 05:56:45 OK 0136_add_job_allow_forwarding.sql +2023/08/03 05:56:45 OK 0137_remove_tx_index.sql +2023/08/03 05:56:45 OK 0138_rename_allowforwarding_field.sql +2023/08/03 05:56:45 OK 0139_multi_chain_keys.sql +2023/08/03 05:56:45 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 05:56:45 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 05:56:45 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 05:56:45 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 05:56:45 OK 0144_optimize_lp.sql +2023/08/03 05:56:45 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 05:56:45 OK 0148_dkg_shares.sql +2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql +2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql +2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql +2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql +2023/08/03 05:56:45 OK 0155_remove_terra.sql +2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql +2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql +2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql +2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql +2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 05:56:45 OK 0164_add_cosmos.sql +2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql +2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql +2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 05:56:45 OK 0168_drop_node_tables.sql +2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql +2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql +2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql +2023/08/03 05:56:45 OK 0174_vrf_owner.sql +2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql +2023/08/03 05:56:45 OK 0176_s4_shared_table.sql +2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql +2023/08/03 05:56:45 OK 0178_drop_access_list.sql +2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql +2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql +2023/08/03 05:56:45 OK 0183_functions_new_fields.sql +2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql +2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 05:56:45 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.838Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 1aab790e4df334d788a17d461a157bcde96a26fa2327feaa54fdfa8fe6821133 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:49.838Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:52.068Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 5QjKaKykKQv9vS54ALx25hKkevy5nfcRrJPDPtjogHyW","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:54.154Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID aa5def3463f99082ca487b9b87578e2a5538921463904c3e6bbf2be3a39f92db","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.459Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.655Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.656Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T05:56:56.656Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T05:56:56.656Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T05:56:56.656Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-03T05:56:56.657Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 34225. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":34225} +{"level":"debug","ts":"2023-08-03T05:56:56.657Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":34225,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"debug","ts":"2023-08-03T05:56:56.658Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.658Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","v1listenPort":34225,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/34225"} +{"level":"info","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement"} +{"level":"info","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"PeerV2"} +{"level":"debug","ts":"2023-08-03T05:56:56.659Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"saveLoop"} +{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:56:56.661Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T05:56:56.661Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T05:56:56.661Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.89s","version":"2.4.0@d0c54ea","appID":"51433d7b-44c7-46fb-a787-7f0f23f2f16f"} +{"level":"debug","ts":"2023-08-03T05:56:56.662Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.00071116} +{"level":"info","ts":"2023-08-03T05:56:56.669Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T05:56:56.673Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011027512} +{"level":"debug","ts":"2023-08-03T05:56:56.673Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:56:57.202Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:56:57","latency":"2.004541ms"} +{"level":"debug","ts":"2023-08-03T05:56:57.203Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:56:57","latency":"230.428µs"} +{"level":"debug","ts":"2023-08-03T05:57:01.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:01.664Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T05:57:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:02","latency":"108.139µs"} +{"level":"debug","ts":"2023-08-03T05:57:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:02","latency":"104.145µs"} +{"level":"info","ts":"2023-08-03T05:57:06.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:06.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:07","latency":"109.218µs"} +{"level":"debug","ts":"2023-08-03T05:57:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:07","latency":"119.781µs"} +{"level":"debug","ts":"2023-08-03T05:57:11.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:12","latency":"91.941µs"} +{"level":"debug","ts":"2023-08-03T05:57:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:12","latency":"99.599µs"} +{"level":"debug","ts":"2023-08-03T05:57:16.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:17","latency":"82.161µs"} +{"level":"debug","ts":"2023-08-03T05:57:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:17","latency":"116.489µs"} +{"level":"debug","ts":"2023-08-03T05:57:21.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:22","latency":"99.948µs"} +{"level":"debug","ts":"2023-08-03T05:57:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:22","latency":"100.038µs"} +{"level":"debug","ts":"2023-08-03T05:57:26.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:27","latency":"92.151µs"} +{"level":"debug","ts":"2023-08-03T05:57:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:27","latency":"99.054µs"} +{"level":"debug","ts":"2023-08-03T05:57:31.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:32","latency":"106.575µs"} +{"level":"debug","ts":"2023-08-03T05:57:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:32","latency":"75.239µs"} +{"level":"debug","ts":"2023-08-03T05:57:36.169Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T05:57:36.170Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T05:57:36.260Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T05:57:36.262Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:36","latency":"93.033433ms"} +{"level":"debug","ts":"2023-08-03T05:57:36.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:57:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:37","latency":"94.156µs"} +{"level":"debug","ts":"2023-08-03T05:57:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:37","latency":"101.735µs"} +{"level":"debug","ts":"2023-08-03T05:57:41.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:42","latency":"92.264µs"} +{"level":"debug","ts":"2023-08-03T05:57:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:42","latency":"77.853µs"} +{"level":"debug","ts":"2023-08-03T05:57:46.665Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:57:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:47","latency":"122.524µs"} +{"level":"debug","ts":"2023-08-03T05:57:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:47","latency":"79.187µs"} +{"level":"debug","ts":"2023-08-03T05:57:51.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:57:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:52","latency":"113.306µs"} +{"level":"debug","ts":"2023-08-03T05:57:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:52","latency":"119.933µs"} +{"level":"debug","ts":"2023-08-03T05:57:55.344Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:55","latency":"2.223651ms"} +{"level":"debug","ts":"2023-08-03T05:57:56.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:57:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:57","latency":"102.335µs"} +{"level":"debug","ts":"2023-08-03T05:57:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:57","latency":"100.783µs"} +{"level":"debug","ts":"2023-08-03T05:57:57.556Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:57","latency":"2.007769941s"} +{"level":"debug","ts":"2023-08-03T05:57:59.957Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:59","latency":"2.198226451s"} +{"level":"debug","ts":"2023-08-03T05:58:01.667Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:01.878Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"70.695µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.081Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:02","latency":"44.378µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:02","latency":"79.954µs"} +{"level":"debug","ts":"2023-08-03T05:58:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:02","latency":"102.347µs"} +{"level":"debug","ts":"2023-08-03T05:58:06.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:07","latency":"90.44µs"} +{"level":"debug","ts":"2023-08-03T05:58:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:07","latency":"100.165µs"} +{"level":"debug","ts":"2023-08-03T05:58:11.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:12","latency":"95.808µs"} +{"level":"debug","ts":"2023-08-03T05:58:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:12","latency":"93.034µs"} +{"level":"debug","ts":"2023-08-03T05:58:16.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:17","latency":"98.662µs"} +{"level":"debug","ts":"2023-08-03T05:58:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:17","latency":"79.379µs"} +{"level":"debug","ts":"2023-08-03T05:58:21.670Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:58:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:22","latency":"93.096µs"} +{"level":"debug","ts":"2023-08-03T05:58:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:22","latency":"89.132µs"} +{"level":"debug","ts":"2023-08-03T05:58:26.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:27","latency":"92.357µs"} +{"level":"debug","ts":"2023-08-03T05:58:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:27","latency":"91.86µs"} +{"level":"debug","ts":"2023-08-03T05:58:31.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:58:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:32","latency":"104.682µs"} +{"level":"debug","ts":"2023-08-03T05:58:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:32","latency":"91.49µs"} +{"level":"debug","ts":"2023-08-03T05:58:36.672Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:58:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:37","latency":"77.442µs"} +{"level":"debug","ts":"2023-08-03T05:58:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:37","latency":"92.597µs"} +{"level":"debug","ts":"2023-08-03T05:58:41.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:58:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:42","latency":"93.261µs"} +{"level":"debug","ts":"2023-08-03T05:58:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:42","latency":"72.318µs"} +{"level":"debug","ts":"2023-08-03T05:58:46.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:58:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:47","latency":"86.592µs"} +{"level":"debug","ts":"2023-08-03T05:58:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:47","latency":"94.806µs"} +{"level":"debug","ts":"2023-08-03T05:58:51.674Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:58:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:52","latency":"93.978µs"} +{"level":"debug","ts":"2023-08-03T05:58:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:52","latency":"89.617µs"} +{"level":"debug","ts":"2023-08-03T05:58:56.675Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:58:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:57","latency":"111.54µs"} +{"level":"debug","ts":"2023-08-03T05:58:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:57","latency":"90.347µs"} +{"level":"debug","ts":"2023-08-03T05:59:01.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:02","latency":"95.789µs"} +{"level":"debug","ts":"2023-08-03T05:59:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:02","latency":"113.673µs"} +{"level":"debug","ts":"2023-08-03T05:59:06.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:07","latency":"100.881µs"} +{"level":"debug","ts":"2023-08-03T05:59:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:07","latency":"107.028µs"} +{"level":"debug","ts":"2023-08-03T05:59:11.678Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T05:59:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:12","latency":"92.633µs"} +{"level":"debug","ts":"2023-08-03T05:59:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:12","latency":"102.25µs"} +{"level":"debug","ts":"2023-08-03T05:59:16.678Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:59:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:17","latency":"110.699µs"} +{"level":"debug","ts":"2023-08-03T05:59:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:17","latency":"110.28µs"} +{"level":"debug","ts":"2023-08-03T05:59:21.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:22","latency":"93.723µs"} +{"level":"debug","ts":"2023-08-03T05:59:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:22","latency":"94.319µs"} +{"level":"debug","ts":"2023-08-03T05:59:26.680Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:59:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:27","latency":"107.471µs"} +{"level":"debug","ts":"2023-08-03T05:59:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:27","latency":"76.506µs"} +{"level":"debug","ts":"2023-08-03T05:59:31.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:32","latency":"76.519µs"} +{"level":"debug","ts":"2023-08-03T05:59:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:32","latency":"119.758µs"} +{"level":"debug","ts":"2023-08-03T05:59:36.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:37","latency":"89.951µs"} +{"level":"debug","ts":"2023-08-03T05:59:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:37","latency":"108.314µs"} +{"level":"debug","ts":"2023-08-03T05:59:41.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:59:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:42","latency":"93.691µs"} +{"level":"debug","ts":"2023-08-03T05:59:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:42","latency":"95.728µs"} +{"level":"debug","ts":"2023-08-03T05:59:46.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T05:59:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:47","latency":"100.401µs"} +{"level":"debug","ts":"2023-08-03T05:59:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:47","latency":"74.605µs"} +{"level":"debug","ts":"2023-08-03T05:59:51.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T05:59:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:52","latency":"101.39µs"} +{"level":"debug","ts":"2023-08-03T05:59:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:52","latency":"111.343µs"} +{"level":"debug","ts":"2023-08-03T05:59:56.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T05:59:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:57","latency":"87.733µs"} +{"level":"debug","ts":"2023-08-03T05:59:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:57","latency":"89.257µs"} +{"level":"debug","ts":"2023-08-03T06:00:01.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:02","latency":"103.463µs"} +{"level":"debug","ts":"2023-08-03T06:00:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:02","latency":"155.541µs"} +{"level":"debug","ts":"2023-08-03T06:00:06.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:07","latency":"88.581µs"} +{"level":"debug","ts":"2023-08-03T06:00:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:07","latency":"89.587µs"} +{"level":"debug","ts":"2023-08-03T06:00:11.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:00:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:12","latency":"96.943µs"} +{"level":"debug","ts":"2023-08-03T06:00:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:12","latency":"80.59µs"} +{"level":"debug","ts":"2023-08-03T06:00:16.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:00:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:17","latency":"103.763µs"} +{"level":"debug","ts":"2023-08-03T06:00:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:17","latency":"100.267µs"} +{"level":"debug","ts":"2023-08-03T06:00:21.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:00:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:22","latency":"100.694µs"} +{"level":"debug","ts":"2023-08-03T06:00:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:22","latency":"104.244µs"} +{"level":"debug","ts":"2023-08-03T06:00:26.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:27","latency":"92.827µs"} +{"level":"debug","ts":"2023-08-03T06:00:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:27","latency":"89.338µs"} +{"level":"debug","ts":"2023-08-03T06:00:31.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:00:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:32","latency":"89.331µs"} +{"level":"debug","ts":"2023-08-03T06:00:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:32","latency":"97.5µs"} +{"level":"debug","ts":"2023-08-03T06:00:36.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:00:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:37","latency":"93.991µs"} +{"level":"debug","ts":"2023-08-03T06:00:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:37","latency":"91.491µs"} +{"level":"debug","ts":"2023-08-03T06:00:41.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:00:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:42","latency":"97.414µs"} +{"level":"debug","ts":"2023-08-03T06:00:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:42","latency":"92.684µs"} +{"level":"debug","ts":"2023-08-03T06:00:46.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:00:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:47","latency":"95.57µs"} +{"level":"debug","ts":"2023-08-03T06:00:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:47","latency":"118.366µs"} +{"level":"debug","ts":"2023-08-03T06:00:51.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:00:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:52","latency":"93.645µs"} +{"level":"debug","ts":"2023-08-03T06:00:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:52","latency":"100.005µs"} +{"level":"debug","ts":"2023-08-03T06:00:56.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:00:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:57","latency":"114.654µs"} +{"level":"debug","ts":"2023-08-03T06:00:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:57","latency":"158.472µs"} +{"level":"debug","ts":"2023-08-03T06:01:01.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:02","latency":"91.368µs"} +{"level":"debug","ts":"2023-08-03T06:01:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:02","latency":"85.789µs"} +{"level":"debug","ts":"2023-08-03T06:01:06.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:07","latency":"109.272µs"} +{"level":"debug","ts":"2023-08-03T06:01:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:07","latency":"81.069µs"} +{"level":"debug","ts":"2023-08-03T06:01:11.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:01:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:12","latency":"102.075µs"} +{"level":"debug","ts":"2023-08-03T06:01:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:12","latency":"106.616µs"} +{"level":"debug","ts":"2023-08-03T06:01:16.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:17","latency":"91.648µs"} +{"level":"debug","ts":"2023-08-03T06:01:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:17","latency":"100.953µs"} +{"level":"debug","ts":"2023-08-03T06:01:21.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:22","latency":"82.921µs"} +{"level":"debug","ts":"2023-08-03T06:01:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:22","latency":"103.245µs"} +{"level":"debug","ts":"2023-08-03T06:01:26.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:27","latency":"92.625µs"} +{"level":"debug","ts":"2023-08-03T06:01:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:27","latency":"93.821µs"} +{"level":"debug","ts":"2023-08-03T06:01:31.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:32","latency":"92.865µs"} +{"level":"debug","ts":"2023-08-03T06:01:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:32","latency":"96.804µs"} +{"level":"debug","ts":"2023-08-03T06:01:36.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:01:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:37","latency":"100.56µs"} +{"level":"debug","ts":"2023-08-03T06:01:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:37","latency":"102.449µs"} +{"level":"debug","ts":"2023-08-03T06:01:41.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:42","latency":"97.247µs"} +{"level":"debug","ts":"2023-08-03T06:01:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:42","latency":"87.67µs"} +{"level":"debug","ts":"2023-08-03T06:01:46.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:01:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:47","latency":"94.695µs"} +{"level":"debug","ts":"2023-08-03T06:01:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:47","latency":"101.891µs"} +{"level":"debug","ts":"2023-08-03T06:01:51.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:01:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:52","latency":"89.582µs"} +{"level":"debug","ts":"2023-08-03T06:01:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:52","latency":"96.679µs"} +{"level":"debug","ts":"2023-08-03T06:01:56.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:01:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:57","latency":"103.417µs"} +{"level":"debug","ts":"2023-08-03T06:01:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:57","latency":"97.9µs"} +{"level":"debug","ts":"2023-08-03T06:02:01.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:02:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:02","latency":"82.334µs"} +{"level":"debug","ts":"2023-08-03T06:02:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:02","latency":"124.626µs"} +{"level":"info","ts":"2023-08-03T06:02:06.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersDetected":0,"statusByPeer":"map[]","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","peersToDetect":0,"peersUndetected":0} +{"level":"debug","ts":"2023-08-03T06:02:06.702Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:07","latency":"91.923µs"} +{"level":"debug","ts":"2023-08-03T06:02:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:07","latency":"80.05µs"} +{"level":"debug","ts":"2023-08-03T06:02:11.703Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:12","latency":"92.656µs"} +{"level":"debug","ts":"2023-08-03T06:02:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:12","latency":"100.119µs"} +{"level":"debug","ts":"2023-08-03T06:02:16.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:17","latency":"99.552µs"} +{"level":"debug","ts":"2023-08-03T06:02:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:17","latency":"80.429µs"} +{"level":"debug","ts":"2023-08-03T06:02:19.614Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:19","latency":"71.202µs"} +{"level":"debug","ts":"2023-08-03T06:02:19.819Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:19","latency":"53.452µs"} +{"level":"debug","ts":"2023-08-03T06:02:21.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:02:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:22","latency":"91.945µs"} +{"level":"debug","ts":"2023-08-03T06:02:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:22","latency":"94.98µs"} +{"level":"debug","ts":"2023-08-03T06:02:26.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:27","latency":"101.193µs"} +{"level":"debug","ts":"2023-08-03T06:02:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:27","latency":"105.521µs"} +{"level":"debug","ts":"2023-08-03T06:02:31.706Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:32","latency":"98.68µs"} +{"level":"debug","ts":"2023-08-03T06:02:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:32","latency":"88.285µs"} +{"level":"debug","ts":"2023-08-03T06:02:36.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:37","latency":"97.739µs"} +{"level":"debug","ts":"2023-08-03T06:02:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:37","latency":"89.976µs"} +{"level":"debug","ts":"2023-08-03T06:02:41.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:42","latency":"98.455µs"} +{"level":"debug","ts":"2023-08-03T06:02:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:42","latency":"79.38µs"} +{"level":"debug","ts":"2023-08-03T06:02:46.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:47","latency":"117.554µs"} +{"level":"debug","ts":"2023-08-03T06:02:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:47","latency":"112.505µs"} +{"level":"debug","ts":"2023-08-03T06:02:51.709Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:02:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:52","latency":"114.822µs"} +{"level":"debug","ts":"2023-08-03T06:02:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:52","latency":"93.218µs"} +{"level":"debug","ts":"2023-08-03T06:02:56.709Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:02:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:57","latency":"93.115µs"} +{"level":"debug","ts":"2023-08-03T06:02:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:57","latency":"187.901µs"} +{"level":"debug","ts":"2023-08-03T06:03:01.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:02","latency":"96.287µs"} +{"level":"debug","ts":"2023-08-03T06:03:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:02","latency":"96.535µs"} +{"level":"debug","ts":"2023-08-03T06:03:06.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:07","latency":"95.541µs"} +{"level":"debug","ts":"2023-08-03T06:03:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:07","latency":"108.991µs"} +{"level":"debug","ts":"2023-08-03T06:03:11.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:12","latency":"118.382µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:12","latency":"123.425µs"} +{"level":"debug","ts":"2023-08-03T06:03:12.337Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:03:12","latency":"4.099652ms"} +{"level":"info","ts":"2023-08-03T06:03:12.548Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:03:12.548Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:03:12.548Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} +{"level":"debug","ts":"2023-08-03T06:03:12.548Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-03T06:03:12.549Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:03:12.549Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:03:12.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.809Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"info","ts":"2023-08-03T06:03:12.809Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:03:12.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:12.810Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:12.810Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","duration":795} +{"level":"info","ts":"2023-08-03T06:03:12.810Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"info","ts":"2023-08-03T06:03:12.810Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:03:12.811Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"3c7f6cf7f77743e1d4dac8a6234546bca3407f1d00b1e1979ba6d78bd4186b64\\\" \\n\\ntransmitterID = \\\"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:03:12","latency":"269.803685ms"} +{"level":"debug","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","streamName":"ragedisco/v1","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","id":"ragep2p","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} +{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","loaded":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"],"numLoaded":1,"id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"numQueried":5,"found":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"],"numFound":1} +{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"PeerV2","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":0,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} +{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"ab82444d2298d6e72b3a0737ec27100ce3da7bd1569f25a2ea19aed502623eb5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","oracleID":0,"_id":"OCREndpointV2","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"PeerV2","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"ne":1,"previousNe":0} +{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":4,"epoch":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:12.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} +{"level":"warn","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"warn","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:13.014Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"out","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remoteAddr":"10.14.104.202:6690"} +{"level":"info","ts":"2023-08-03T06:03:13.015Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:13.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"info","ts":"2023-08-03T06:03:13.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"info","ts":"2023-08-03T06:03:13.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:03:13.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}"} +{"level":"debug","ts":"2023-08-03T06:03:13.671Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.758Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:13.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:14.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.790Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.877Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:15.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:16.823Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.910Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:16.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.114Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:17","latency":"93.444µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:17","latency":"89.499µs"} +{"level":"debug","ts":"2023-08-03T06:03:17.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:17.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.014Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:18.669Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"debug","ts":"2023-08-03T06:03:18.669Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:18.669Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:03:18.671Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","direction":"out","remoteAddr":"10.14.116.75:6690"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"out","remoteAddr":"10.14.31.21:6690","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.72.41:6690","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","direction":"out"} +{"level":"debug","ts":"2023-08-03T06:03:18.673Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343"} +{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} +{"level":"debug","ts":"2023-08-03T06:03:18.673Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":2,"candidateEpochs":[2,2,2]} +{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001027728} +{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.000977864} +{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:146","msg":"logging as debug due to context cancellation: ReportGeneration: ReportingPlugin.Observation errored","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":1,"round":1,"error":"error in Observation: DataSource.Observe returned an error: task inputs: too many errors; JuelsPerFeeCoinDataSource.Observe returned an error: task inputs: too many errors","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"leader":4} +{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"leader":4,"epoch":1,"e":1,"l":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":2,"leader":2} +{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} +{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","streamName":"ragedisco/v1","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:18.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.051Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.224Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:19.993Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.080Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:20.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.073Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.181Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:21.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:22.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:22","latency":"95.279µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:22","latency":"547.14µs"} +{"level":"debug","ts":"2023-08-03T06:03:22.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:23.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.163Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:24.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.286Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:25.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.268Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.553Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:26.714Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:27","latency":"90.285µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:27","latency":"119.541µs"} +{"level":"debug","ts":"2023-08-03T06:03:27.291Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.378Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:27.985Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:03:28.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.465Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:28.734Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.506Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.627Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:29.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:30.830Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.582Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.669Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.714Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:03:31.735Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"candidateEpochs":[3,3,3],"newEpoch":3} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":2,"e":2,"l":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.003171846} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00320524} +{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"leader":4,"round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:31.908Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:32","latency":"92.662µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:32","latency":"117.742µs"} +{"level":"debug","ts":"2023-08-03T06:03:32.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.734Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:32.932Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.822Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:33.965Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.806Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.893Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:34.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1},"initialRound":true,"unfulfilledRequest":true,"result":true,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"oid":0,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"sender":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"sender":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001285639} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001423733} +{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:35.828Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:35.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.715Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:03:36.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:36.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.033Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:37","latency":"94.235µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:37","latency":"94.261µs"} +{"level":"debug","ts":"2023-08-03T06:03:37.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.103Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:38.999Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:39.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","unfulfilledRequest":false,"initialRound":false,"reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","deltaCTimeout":true,"alphaReportInfinite":false,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"leader":4,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"result":true,"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":0,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001330488} +{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001396642} +{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-03T06:03:40.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.200Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:40.223Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.138Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.227Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:41.716Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:42.106Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:42","latency":"100.093µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:42","latency":"103.15µs"} +{"level":"debug","ts":"2023-08-03T06:03:42.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.280Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:42.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.072Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:03:43.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:43.391Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:43.809Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","unfulfilledRequest":false,"initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"alphaReportInfinite":false,"deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"leader":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","roundMax":3,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":3,"sender":4,"oid":0} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":3,"sender":0,"epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaAcceptPPB":0,"result":true,"reportEpochRound":{"Epoch":3,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":4,"candidateEpochs":[4,4,4]} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4,"e":3,"l":4} +{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"sender":3} +{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001263688} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.00132707} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"round":1,"observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"sender":0,"msgEpoch":4,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"observationCount":1,"requiredObservationCount":3,"oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"msgEpoch":4,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1,"observationCount":2,"requiredObservationCount":3,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"msgRound":1,"round":1,"sender":4,"msgEpoch":4} +{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"observationCount":3,"requiredObservationCount":3,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":3,"msgEpoch":4,"msgRound":1,"round":1,"oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:43.897Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:43.898Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:43.898Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-03T06:03:43.984Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326","signature":"5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"} +{"level":"debug","ts":"2023-08-03T06:03:43.984Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326"} +{"level":"debug","ts":"2023-08-03T06:03:44.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.407Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:44.535Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326","signature":"5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"} +{"level":"debug","ts":"2023-08-03T06:03:44.535Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"],"id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326"} +{"level":"debug","ts":"2023-08-03T06:03:44.535Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326","signatures":["5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"]} +{"level":"debug","ts":"2023-08-03T06:03:45.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.420Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:45.507Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.283Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.441Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.528Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:46.717Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:47","latency":"106.517µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:47","latency":"86.191µs"} +{"level":"debug","ts":"2023-08-03T06:03:47.331Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.505Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.541Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:47.628Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","unfulfilledRequest":false,"alphaReportPPB":0,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","deltaCTimeout":true,"alphaReportInfinite":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}},"oid":0} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001358127} +{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.00139733} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2,"observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"msgRound":2,"round":2,"sender":0,"msgEpoch":4,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"observationCount":1,"requiredObservationCount":3,"oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"msgEpoch":4,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":2,"requiredObservationCount":3,"round":2,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":4,"msgEpoch":4,"msgRound":2,"oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"leader":0,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:47.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":2,"sender":3,"msgEpoch":4,"msgRound":2,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:47.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:48.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.596Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:48.683Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.667Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.668Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:49.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.515Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.689Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.703Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:50.790Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:51.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:51.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"deviation":true,"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":4,"Round":1},"alphaAcceptInfinite":false,"result":true,"deviates":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"info","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001305635} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001414326} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"round":3,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":4,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":0,"msgEpoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":3,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"msgEpoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"requiredObservationCount":3,"round":3,"observationCount":2} +{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"leader":0,"round":3,"sender":4,"msgEpoch":4,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"round":3,"observationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":3,"sender":3,"msgEpoch":4,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:03:51.882Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:51.908Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:51.908Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:03:51.995Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"69305a83-003e-48ed-9ecb-63993e79ab19","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"} +{"level":"debug","ts":"2023-08-03T06:03:51.995Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV","id":"69305a83-003e-48ed-9ecb-63993e79ab19"} +{"level":"debug","ts":"2023-08-03T06:03:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:52","latency":"94.058µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:52","latency":"87.843µs"} +{"level":"debug","ts":"2023-08-03T06:03:52.489Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"} +{"level":"debug","ts":"2023-08-03T06:03:52.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.809Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:52.896Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.097Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"69305a83-003e-48ed-9ecb-63993e79ab19","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"} +{"level":"debug","ts":"2023-08-03T06:03:53.097Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"69305a83-003e-48ed-9ecb-63993e79ab19","signatures":["5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"]} +{"level":"debug","ts":"2023-08-03T06:03:53.614Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.788Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:53.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.633Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:54.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:55.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","initialRound":false,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":4,"msgRound":3,"leader":0} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":3,"oid":0} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"deviates":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"round":4,"msgRound":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"info","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","newEpoch":5,"candidateEpochs":[5,5,5],"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"sender":1} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"e":4,"l":0} +{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"oid":0} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001236301} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001285082} +{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"leader":4,"round":1,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:03:55.849Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.895Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:55.914Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:55.914Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:03:55.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.000Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"175f899c-1e4c-4205-adab-a3be08edfd8f","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"} +{"level":"debug","ts":"2023-08-03T06:03:56.000Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j","id":"175f899c-1e4c-4205-adab-a3be08edfd8f"} +{"level":"debug","ts":"2023-08-03T06:03:56.351Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"} +{"level":"debug","ts":"2023-08-03T06:03:56.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:03:56.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.953Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:56.971Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"175f899c-1e4c-4205-adab-a3be08edfd8f","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"} +{"level":"debug","ts":"2023-08-03T06:03:56.971Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"175f899c-1e4c-4205-adab-a3be08edfd8f","signatures":["5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"]} +{"level":"debug","ts":"2023-08-03T06:03:57.041Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:57","latency":"102.001µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:57","latency":"82.276µs"} +{"level":"debug","ts":"2023-08-03T06:03:57.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.966Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:57.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.160Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:03:58.813Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:58.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.052Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.140Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"result":true,"alphaReportPPB":0,"initialRound":false,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z","deltaC":0,"deltaCTimeout":true,"deviation":true,"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":4,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"deviates":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"info","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001493828} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001523135} +{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"round":2,"observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":0} +{"level":"debug","ts":"2023-08-03T06:03:59.869Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:03:59.920Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:03:59.920Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:00.007Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} +{"level":"debug","ts":"2023-08-03T06:04:00.007Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5"} +{"level":"debug","ts":"2023-08-03T06:04:00.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:00.218Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} +{"level":"debug","ts":"2023-08-03T06:04:00.850Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} +{"level":"debug","ts":"2023-08-03T06:04:00.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.164Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.252Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:01.478Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} +{"level":"debug","ts":"2023-08-03T06:04:01.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:04:01.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.075Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} +{"level":"debug","ts":"2023-08-03T06:04:02.075Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"],"id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5"} +{"level":"debug","ts":"2023-08-03T06:04:02.075Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5","signatures":["532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"]} +{"level":"debug","ts":"2023-08-03T06:04:02.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:02","latency":"99.557µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:02","latency":"76.377µs"} +{"level":"debug","ts":"2023-08-03T06:04:02.261Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:02.989Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.315Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:03.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","initialRound":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","result":true,"unfulfilledRequest":false,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"alphaReportPPB":0,"deviation":true} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"oid":0} +{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"info","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001283235} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00131368} +{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"leader":4,"round":3,"observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:03.925Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:03.925Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:04.003Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.012Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"} +{"level":"debug","ts":"2023-08-03T06:04:04.012Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36"} +{"level":"debug","ts":"2023-08-03T06:04:04.184Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.283Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"} +{"level":"debug","ts":"2023-08-03T06:04:04.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:04.874Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"} +{"level":"debug","ts":"2023-08-03T06:04:04.874Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36","signatures":["4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"]} +{"level":"debug","ts":"2023-08-03T06:04:05.075Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.424Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:05.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.346Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.587Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:06.720Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:07.195Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:07","latency":"88.116µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:07","latency":"97.575µs"} +{"level":"debug","ts":"2023-08-03T06:04:07.368Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:07.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviation":true,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"result":true,"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z"} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"leader":4,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","roundMax":3,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":3,"sender":4,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"candidateEpochs":[6,6,6],"newEpoch":6} +{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"oid":0,"e":5,"l":4} +{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001284916} +{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001354533} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":0,"msgEpoch":6,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1,"observationCount":1,"requiredObservationCount":3,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":1,"msgEpoch":6,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1,"sender":4,"msgEpoch":6,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1,"observationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"sender":3,"msgEpoch":6,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:07.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:08.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:08.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.737Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:09.824Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.766Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:10.853Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.476Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.721Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:11.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:11.846Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false,"deviation":true,"deltaCTimeout":true,"initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"deltaC":0,"alphaReportInfinite":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:11.847Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":6,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"info","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001269424} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001356931} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"round":2,"observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":1,"sender":3,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":0,"msgEpoch":6,"msgRound":2,"oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"requiredObservationCount":3,"round":2,"observationCount":1} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"msgEpoch":6,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"round":2,"observationCount":2,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":6,"leader":0,"round":2,"sender":4,"msgEpoch":6,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observationCount":3,"requiredObservationCount":3,"oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:11.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":2,"sender":3,"msgEpoch":6} +{"level":"debug","ts":"2023-08-03T06:04:11.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:11.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:11.935Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:11.935Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:12.021Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fc527a5e-853e-4443-b17b-108f6c92379b","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"} +{"level":"debug","ts":"2023-08-03T06:04:12.022Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh","id":"fc527a5e-853e-4443-b17b-108f6c92379b"} +{"level":"debug","ts":"2023-08-03T06:04:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:12","latency":"96.623µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:12","latency":"100.095µs"} +{"level":"debug","ts":"2023-08-03T06:04:12.293Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"} +{"level":"debug","ts":"2023-08-03T06:04:12.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:12.897Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fc527a5e-853e-4443-b17b-108f6c92379b","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"} +{"level":"debug","ts":"2023-08-03T06:04:12.897Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fc527a5e-853e-4443-b17b-108f6c92379b","signatures":["5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"]} +{"level":"debug","ts":"2023-08-03T06:04:12.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.009Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.247Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:04:13.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.589Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:13.996Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.441Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:14.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.064Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:15.690Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:15.850Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"initialRound":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportPPB":0,"alphaReportInfinite":false,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}},"oid":0} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":6,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001377671} +{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001367142} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":6,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"sender":4,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"sender":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":3,"sender":0,"msgEpoch":6,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observationCount":1,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":3,"sender":1,"msgEpoch":6} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"observationCount":2,"requiredObservationCount":3,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"msgEpoch":6,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"observationCount":3,"requiredObservationCount":3,"oid":0} +{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:15.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":6,"msgRound":3,"oid":0,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:15.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:16.089Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.176Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:16.722Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:16.785Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:17","latency":"94.572µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:17","latency":"93.735µs"} +{"level":"debug","ts":"2023-08-03T06:04:17.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:17.882Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.777Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:18.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.163Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:19.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:19.855Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z","result":true,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"round":4,"oid":0,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","result":true,"contractEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":2},"deviates":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"msgRound":3,"oid":0,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","l":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"e":6} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":1,"epoch":6,"round":3} +{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001355775} +{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.0014145} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":1,"observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":0,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"msgEpoch":7,"msgRound":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":1,"msgEpoch":7,"oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","msgRound":1} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"sender":4,"msgEpoch":7,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:19.861Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":1,"sender":3,"msgEpoch":7,"msgRound":1,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:19.861Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:19.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.218Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:20.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.013Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:21.723Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:21.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.038Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:22","latency":"98.507µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:22","latency":"92.482µs"} +{"level":"debug","ts":"2023-08-03T06:04:22.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:22.955Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.128Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:23.513Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:23.861Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","unfulfilledRequest":false,"deviation":true,"initialRound":false,"alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z","result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:04:23.862Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"msgRound":1,"oid":0,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":7,"Round":1},"latestAcceptedEpochRound":{"Epoch":6,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001455097} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00146203} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":4,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"sender":0,"msgEpoch":7,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"requiredObservationCount":3,"round":2,"observationCount":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"sender":1,"msgEpoch":7,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"observationCount":2,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":2,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"sender":4,"msgEpoch":7} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":2,"observationCount":3} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":2,"sender":3,"msgEpoch":7,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:23.998Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.171Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:24.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.611Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:25.802Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":1},"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"info","ts":"2023-08-03T06:04:25.802Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:26.119Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.533Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:26.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:27.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:27","latency":"91.562µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:27","latency":"91.364µs"} +{"level":"debug","ts":"2023-08-03T06:04:27.370Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.590Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:27.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","deviation":true,"deltaC":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2},"result":true} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":7,"Round":1},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":7,"Round":2},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00141027} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001549653} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"leader":0,"round":3,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":0,"msgEpoch":7,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"observationCount":1,"requiredObservationCount":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":3,"sender":4,"msgEpoch":7,"msgRound":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"observationCount":2,"requiredObservationCount":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":3,"sender":1,"msgEpoch":7,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observationCount":3,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:27.870Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":7,"msgRound":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:27.870Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:28.259Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.334Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:04:28.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.643Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:28.730Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.282Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.702Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:29.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:30.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.323Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.496Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:04:31.743Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:31.830Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:31.870Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"deltaCTimeout":true,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportPPB":0,"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deviation":true,"deltaC":0,"result":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"round":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":7,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":7,"Round":3},"latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":1,"epoch":7,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"e":7,"l":0} +{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":8,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:32","latency":"90.838µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:32","latency":"95.341µs"} +{"level":"debug","ts":"2023-08-03T06:04:32.338Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.512Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.786Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:32.873Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.562Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.868Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:33.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.650Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.886Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:34.973Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:35.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.575Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.726Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:36.749Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:36.929Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:37","latency":"111.625µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:37","latency":"113.196µs"} +{"level":"debug","ts":"2023-08-03T06:04:37.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:37.817Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":4,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-03T06:04:37.817Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:37.818Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.019Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.106Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:38.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.800Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:39.973Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.168Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.256Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:40.865Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.262Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:41.727Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:04:41.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:42","latency":"91.88µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:42","latency":"96.817µs"} +{"level":"debug","ts":"2023-08-03T06:04:42.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.328Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:42.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.161Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:43.421Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:04:44.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.418Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:44.505Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.114Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.288Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:45.602Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.380Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.570Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.657Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:46.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:47","latency":"97.723µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:47","latency":"99.347µs"} +{"level":"debug","ts":"2023-08-03T06:04:47.295Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:47.694Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:48.716Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:49.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.427Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:50.764Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.481Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.654Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.729Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:04:51.810Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","candidateEpochs":[9,9,9],"newEpoch":9} +{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":8,"leader":2,"e":8,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00127707} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001293866} +{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:52","latency":"106.597µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:52","latency":"106.453µs"} +{"level":"debug","ts":"2023-08-03T06:04:52.483Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:52.836Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.522Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.695Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.793Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:53.880Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.602Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.776Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:54.934Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.693Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.853Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:55.866Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","unfulfilledRequest":false,"alphaReportInfinite":false,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deviation":true,"initialRound":false,"deltaCTimeout":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":1,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":3,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":7,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001255222} +{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001292893} +{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:04:55.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.730Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:04:56.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:56.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:57","latency":"94.101µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:57","latency":"100.245µs"} +{"level":"debug","ts":"2023-08-03T06:04:57.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.843Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":5,"Round":3}} +{"level":"info","ts":"2023-08-03T06:04:57.843Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:04:57.937Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:57.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.508Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:04:58.849Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:58.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.057Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:04:59.883Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","initialRound":false,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"deviation":true,"alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","latestAcceptedEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":9,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001236557} +{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.00126559} +{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-03T06:04:59.909Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:04:59.983Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:00.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.004Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:01.731Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:01.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.084Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.172Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:02","latency":"100.276µs"} +{"level":"debug","ts":"2023-08-03T06:05:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:02","latency":"99.912µs"} +{"level":"debug","ts":"2023-08-03T06:05:03.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.159Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:03.260Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportInfinite":false,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":9,"leader":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"epoch":9} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportEpochRound":{"Epoch":9,"Round":3},"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","e":9,"l":3,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9} +{"level":"info","ts":"2023-08-03T06:05:03.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-03T06:05:03.890Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-03T06:05:04.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.268Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:04.273Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.314Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:05.353Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.227Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.431Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:06.731Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:07","latency":"104.826µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:07","latency":"95.95µs"} +{"level":"debug","ts":"2023-08-03T06:05:07.230Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.350Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.404Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:07.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.236Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.381Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.409Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:08.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.280Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.454Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:09.857Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":6,"Round":3},"reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-03T06:05:09.857Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:10.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.506Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:10.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.465Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.648Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:11.732Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:12","latency":"105.204µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:12","latency":"102.58µs"} +{"level":"debug","ts":"2023-08-03T06:05:12.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.595Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:12.682Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.595Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:05:13.669Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:13.863Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":7,"Round":1}} +{"level":"info","ts":"2023-08-03T06:05:13.863Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:14.380Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:14.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.444Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.618Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:15.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.502Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.732Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:16.821Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:16.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:17","latency":"102.254µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:17","latency":"104.38µs"} +{"level":"debug","ts":"2023-08-03T06:05:17.582Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:17.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.786Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:18.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.646Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:19.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:20.838Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.006Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.093Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.710Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:21.733Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:21.873Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":7,"Round":3}} +{"level":"info","ts":"2023-08-03T06:05:21.873Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:21.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.098Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.186Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:22","latency":"92.811µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:22","latency":"86.639µs"} +{"level":"debug","ts":"2023-08-03T06:05:22.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:22.921Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.808Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"candidateEpochs":[11,11,11],"newEpoch":11} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":10,"leader":2,"e":10,"l":2} +{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"leader":2,"epoch":11} +{"level":"debug","ts":"2023-08-03T06:05:23.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.226Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:24.885Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:25.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.157Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.413Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:26.734Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:05:26.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:27","latency":"97.342µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:27","latency":"92.771µs"} +{"level":"debug","ts":"2023-08-03T06:05:27.410Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:27.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.169Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:28.682Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:05:29.061Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:29.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.088Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:30.568Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.183Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.356Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.617Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:31.735Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:32","latency":"79.531µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:32","latency":"126.632µs"} +{"level":"debug","ts":"2023-08-03T06:05:32.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.411Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:32.713Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.438Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.678Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:33.766Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.336Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:34.813Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.605Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.804Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:35.891Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.736Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:05:36.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:36.903Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:37","latency":"96.955µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:37","latency":"97.727µs"} +{"level":"debug","ts":"2023-08-03T06:05:37.533Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:37.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.744Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:38.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.042Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.789Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:39.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.688Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:40.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.040Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.128Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.737Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} +{"level":"debug","ts":"2023-08-03T06:05:41.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:41.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.094Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:42","latency":"126.932µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:42","latency":"88.869µs"} +{"level":"debug","ts":"2023-08-03T06:05:42.853Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.770Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} +{"level":"debug","ts":"2023-08-03T06:05:43.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":12,"candidateEpochs":[12,12,12]} +{"level":"info","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":2,"epoch":11,"e":11,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"info","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001358091} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001393873} +{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"leader":0,"round":1,"observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":12,"msgRound":1,"round":1,"sender":0,"oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"leader":0,"observationCount":1,"requiredObservationCount":3,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":4,"msgEpoch":12,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"requiredObservationCount":3,"round":1,"observationCount":2} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":12,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:43.895Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":3,"msgEpoch":12,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} +{"level":"debug","ts":"2023-08-03T06:05:43.895Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} +{"level":"debug","ts":"2023-08-03T06:05:44.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:44.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.226Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:45.880Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1}} +{"level":"info","ts":"2023-08-03T06:05:45.880Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:45.938Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.311Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:46.738Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:47.003Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.177Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:47","latency":"117.222µs"} +{"level":"debug","ts":"2023-08-03T06:05:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:47","latency":"99.734µs"} +{"level":"debug","ts":"2023-08-03T06:05:47.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:47.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:47.896Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"unfulfilledRequest":false,"alphaReportPPB":0,"result":true,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":12,"Round":1,"H":[167,39,199,18,183,107,6,93,111,62,215,255,184,87,18,232,246,121,81,174,216,105,228,243,196,104,139,45,159,91,177,72],"AttestedReport":{"Report":"ZMtDtwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9gNLwPP+ClJhTX7NsKPOXorBFzgqd+2UlX9TJ8weNIs/PxblhJJ+xO1xAx4Wh27fNI+gwPqWH09ELWRPasWQawA=","Signer":0},{"Signature":"q/mraM9mGz5/5b0Kdq5D6FKlq3RizaRnnnv+DBHJ8oteh4RbWB6srbexYGWf+qQxpa/Z5cVgSaUw82wmAPkaPAE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":12,"Round":1},"contractEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001389412} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001543538} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"observation":"CLuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"msgRound":1,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":0,"epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"sender":4,"epoch":12,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":1} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":3,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"sender":0,"msgEpoch":12,"msgRound":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":1,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":4,"msgEpoch":12,"msgRound":2,"oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observationCount":2,"requiredObservationCount":3,"oid":0,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"msgEpoch":12,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":2,"observationCount":3,"requiredObservationCount":3,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"round":2,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:47.900Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"msgEpoch":12,"msgRound":2,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:05:47.900Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:48.102Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:48.565Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.186Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.648Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:49.885Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":9,"Round":2}} +{"level":"info","ts":"2023-08-03T06:05:49.885Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:50.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.436Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:50.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.351Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.526Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.688Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:51.739Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:05:51.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-03T06:05:51.901Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviation":true,"deltaC":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":2},"deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false} +{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2} +{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":12,"Round":2,"H":[203,249,215,232,75,17,54,31,73,249,43,4,33,131,104,95,139,252,141,153,140,131,47,124,153,176,202,210,231,154,29,40],"AttestedReport":{"Report":"ZMtDuwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"uB4xuadLMTbddQvjjWH1/CtvyZiE5bjV6qwGAYb8L6MSYE6ybiTqjTfkx5TY3uEQ186yD9PMHpJj9+STHjo29AE=","Signer":0},{"Signature":"02395+MmLi8ttLxEaeONzS5DBiWrGElvPNxXI9F3aasP4pYkia4ATzpWZNSVoVm649IWzqfWva/SB8RSlZXxLAE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":12,"Round":2},"latestAcceptedEpochRound":{"Epoch":12,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001416368} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001549645} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"round":3,"observation":"CL+HraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"round":3,"msgRound":2,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":0,"msgEpoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"observationCount":1} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":1,"msgEpoch":12,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observationCount":2,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"msgEpoch":12,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} +{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:51.905Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":3} +{"level":"debug","ts":"2023-08-03T06:05:51.905Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":3,"sender":3,"msgEpoch":12,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:05:51.905Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} +{"level":"debug","ts":"2023-08-03T06:05:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:52","latency":"92.44µs"} +{"level":"debug","ts":"2023-08-03T06:05:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:52","latency":"94.411µs"} +{"level":"debug","ts":"2023-08-03T06:05:52.362Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:52.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:52.721Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:52.808Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:53.387Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:53.560Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042747}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:53.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:53.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:53.889Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":12,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3}} +{"level":"info","ts":"2023-08-03T06:05:53.890Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} +{"level":"debug","ts":"2023-08-03T06:05:54.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:54.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042747}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-03T06:05:54.826Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log new file mode 100644 index 000000000..528fce700 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log @@ -0,0 +1,305 @@ +5:56AM INF Starting external adapter Port=:6060 +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:57AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:58AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +5:59AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:00AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:01AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Five Endpoint=/five Result=5 +6:02AM INF Five Endpoint=/five Result=5 +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Index Endpoint=/ +6:02AM INF Five Endpoint=/five Result=5 +6:02AM INF Five Endpoint=/five Result=5 +6:02AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Index Endpoint=/ +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Index Endpoint=/ +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:03AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Index Endpoint=/ +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:04AM INF Five Endpoint=/five Result=5 +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Index Endpoint=/ +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Index Endpoint=/ +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Index Endpoint=/ +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 +6:05AM INF Five Endpoint=/five Result=5 diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log new file mode 100644 index 000000000..eefa18a7f --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log @@ -0,0 +1,2248 @@ +Ledger location: test-ledger +Log: test-ledger/validator.log +Initializing... +Waiting for fees to stabilize 1... +Waiting for fees to stabilize 2... +Connecting... +Identity: 5vyT24QtBF8szwq5H9V6zU3KovT1SVQzYVexiAmToTsj +Genesis Hash: EAPfNFhUk9oiCPSBxaz6thAzrCkewAB31yyApBahd7R4 +Version: 1.13.3 +Shred Version: 19542 +Gossip Address: 127.0.0.1:1024 +TPU Address: 127.0.0.1:1027 +JSON RPC URL: http://127.0.0.1:8899 +00:00:02 | Processed Slot: 1 | Confirmed Slot: 1 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 0 | ◎500.000000000 +00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 +00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 +00:00:02 | Processed Slot: 3 | Confirmed Slot: 3 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 2 | ◎499.999990000 +00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 +00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 +00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 +00:00:03 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 +00:00:04 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 +00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 +00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 +00:00:04 | Processed Slot: 8 | Confirmed Slot: 8 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 7 | ◎499.999965000 +00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 +00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 +00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 +00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999955000 +00:00:06 | Processed Slot: 11 | Confirmed Slot: 11 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999950000 +00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 +00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 +00:00:06 | Processed Slot: 13 | Confirmed Slot: 13 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 12 | ◎499.999940000 +00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 +00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 +00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 +00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 +00:00:08 | Processed Slot: 16 | Confirmed Slot: 16 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 15 | ◎499.999925000 +00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 +00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 +00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 +00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 +00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 +00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 +00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 +00:00:10 | Processed Slot: 21 | Confirmed Slot: 21 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 20 | ◎499.999900000 +00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 +00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 +00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 +00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 +00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 +00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 +00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 +00:00:12 | Processed Slot: 26 | Confirmed Slot: 26 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 25 | ◎499.999875000 +00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 +00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 +00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 +00:00:13 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 +00:00:13 | Processed Slot: 29 | Confirmed Slot: 29 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 28 | ◎499.999860000 +00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 +00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 +00:00:14 | Processed Slot: 31 | Confirmed Slot: 31 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 30 | ◎499.999850000 +00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 +00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 +00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 +00:00:15 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 +00:00:15 | Processed Slot: 34 | Confirmed Slot: 34 | Finalized Slot: 2 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 33 | ◎499.999835000 +00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 +00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 +00:00:16 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 +00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 +00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 +00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 +00:00:17 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 +00:00:17 | Processed Slot: 39 | Confirmed Slot: 39 | Finalized Slot: 7 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 38 | ◎499.999810000 +00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 +00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 +00:00:18 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 +00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 +00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 +00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 +00:00:19 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 +00:00:19 | Processed Slot: 44 | Confirmed Slot: 44 | Finalized Slot: 12 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 43 | ◎499.999785000 +00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 +00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 +00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 +00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 +00:00:20 | Processed Slot: 47 | Confirmed Slot: 47 | Finalized Slot: 15 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 46 | ◎499.999770000 +00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 +00:00:21 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 +00:00:21 | Processed Slot: 49 | Confirmed Slot: 49 | Finalized Slot: 17 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 48 | ◎499.999760000 +00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 +00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 +00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 +00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 +00:00:22 | Processed Slot: 52 | Confirmed Slot: 52 | Finalized Slot: 20 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 51 | ◎499.999745000 +00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 +00:00:23 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 +00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 +00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 +00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 +00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 +00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 +00:00:24 | Processed Slot: 57 | Confirmed Slot: 57 | Finalized Slot: 25 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 56 | ◎499.999720000 +00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 +00:00:25 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 +00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 +00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 +00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 +00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 +00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 +00:00:26 | Processed Slot: 62 | Confirmed Slot: 62 | Finalized Slot: 30 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 61 | ◎499.999695000 +00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 +00:00:27 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 +00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 +00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 +00:00:27 | Processed Slot: 65 | Confirmed Slot: 65 | Finalized Slot: 33 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 64 | ◎499.999680000 +00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 +00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 +00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 +00:00:28 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 +00:00:29 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 +00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 +00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 +00:00:29 | Processed Slot: 70 | Confirmed Slot: 70 | Finalized Slot: 38 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 69 | ◎499.999655000 +00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 +00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 +00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 +00:00:30 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 +00:00:31 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 +00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 +00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 +00:00:31 | Processed Slot: 75 | Confirmed Slot: 75 | Finalized Slot: 43 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 74 | ◎499.999630000 +00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 +00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 +00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 +00:00:32 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 +00:00:33 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 +00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 +00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 +00:00:33 | Processed Slot: 80 | Confirmed Slot: 80 | Finalized Slot: 48 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 79 | ◎499.999605000 +00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 +00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 +00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 +00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 +00:00:35 | Processed Slot: 83 | Confirmed Slot: 83 | Finalized Slot: 51 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 82 | ◎499.999590000 +00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 +00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 +00:00:35 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 +00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 +00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 +00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 +00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 +00:00:37 | Processed Slot: 88 | Confirmed Slot: 88 | Finalized Slot: 56 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 87 | ◎499.999565000 +00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 +00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 +00:00:37 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 +00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 +00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 +00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 +00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 +00:00:39 | Processed Slot: 93 | Confirmed Slot: 93 | Finalized Slot: 61 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 92 | ◎499.999540000 +00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 +00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 +00:00:39 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 +00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 +00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 +00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 +00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 +00:00:41 | Processed Slot: 98 | Confirmed Slot: 98 | Finalized Slot: 66 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 97 | ◎499.999515000 +00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 +00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 +00:00:41 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 +00:00:42 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 +00:00:42 | Processed Slot: 101 | Confirmed Slot: 101 | Finalized Slot: 69 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 100 | ◎499.999500000 +00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 +00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 +00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 +00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 +00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 +00:00:43 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 +00:00:44 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 +00:00:44 | Processed Slot: 106 | Confirmed Slot: 106 | Finalized Slot: 74 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 105 | ◎499.999475000 +00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 +00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 +00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 +00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 +00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 +00:00:45 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 +00:00:46 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 +00:00:46 | Processed Slot: 111 | Confirmed Slot: 111 | Finalized Slot: 79 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 110 | ◎499.999450000 +00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 +00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 +00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 +00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 +00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 +00:00:47 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 +00:00:48 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 +00:00:48 | Processed Slot: 116 | Confirmed Slot: 116 | Finalized Slot: 84 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 115 | ◎499.999425000 +00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 +00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 +00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 +00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 +00:00:49 | Processed Slot: 119 | Confirmed Slot: 119 | Finalized Slot: 87 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 118 | ◎499.999410000 +00:00:49 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 +00:00:50 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 +00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 +00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 +00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 +00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 +00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 +00:00:51 | Processed Slot: 124 | Confirmed Slot: 124 | Finalized Slot: 92 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 123 | ◎499.999385000 +00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 +00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 +00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 +00:00:52 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 +00:00:53 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 +00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 +00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 +00:00:53 | Processed Slot: 129 | Confirmed Slot: 129 | Finalized Slot: 97 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 128 | ◎499.999360000 +00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 +00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 +00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 +00:00:54 | Processed Slot: 132 | Confirmed Slot: 131 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999350000 +00:00:55 | Processed Slot: 132 | Confirmed Slot: 132 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999345000 +00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 +00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 +00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 133 | ◎499.999335000 +00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 +00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 +00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 +00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 +00:00:57 | Processed Slot: 137 | Confirmed Slot: 137 | Finalized Slot: 105 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 136 | ◎499.999320000 +00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 +00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 +00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 138 | ◎499.999310000 +00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999307500 +00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999307500 +00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999307500 +00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999307500 +00:00:59 | Processed Slot: 142 | Confirmed Slot: 142 | Finalized Slot: 110 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999305000 +00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 +00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 +00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999295000 +00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999290000 +00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999290000 +00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 +00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 +00:01:01 | Processed Slot: 147 | Confirmed Slot: 147 | Finalized Slot: 115 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999280000 +00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 +00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 +00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999270000 +00:01:02 | Processed Slot: 150 | Confirmed Slot: 149 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 153 | ◎499.999270000 +00:01:02 | Processed Slot: 150 | Confirmed Slot: 150 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 153 | ◎499.999265000 +00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 +00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 +00:01:03 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999255000 +00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 156 | ◎499.999250000 +00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 156 | ◎499.999250000 +00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 +00:01:04 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 +00:01:04 | Processed Slot: 155 | Confirmed Slot: 155 | Finalized Slot: 123 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 158 | ◎499.999240000 +00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 +00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 +00:01:05 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 +00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 +00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 +00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 +00:01:06 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 +00:01:06 | Processed Slot: 160 | Confirmed Slot: 160 | Finalized Slot: 128 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 163 | ◎499.999215000 +00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 +00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 +00:01:07 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 +00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 +00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 +00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 +00:01:08 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 +00:01:08 | Processed Slot: 165 | Confirmed Slot: 165 | Finalized Slot: 133 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 168 | ◎499.999190000 +00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 +00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 +00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 +00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 +00:01:09 | Processed Slot: 168 | Confirmed Slot: 168 | Finalized Slot: 136 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 171 | ◎499.999175000 +00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 +00:01:10 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 +00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 +00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 +00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 +00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 +00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 +00:01:11 | Processed Slot: 173 | Confirmed Slot: 173 | Finalized Slot: 141 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 176 | ◎499.999150000 +00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 +00:01:12 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 +00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 +00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 +00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 +00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 +00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 +00:01:13 | Processed Slot: 178 | Confirmed Slot: 178 | Finalized Slot: 146 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 181 | ◎499.999125000 +00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 +00:01:14 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 +00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 +00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 +00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 +00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 +00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 +00:01:15 | Processed Slot: 183 | Confirmed Slot: 183 | Finalized Slot: 151 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 186 | ◎499.999100000 +00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 +00:01:16 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 +00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 +00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 +00:01:16 | Processed Slot: 186 | Confirmed Slot: 186 | Finalized Slot: 154 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 189 | ◎499.999085000 +00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 +00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 +00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 +00:01:17 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 +00:01:18 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 +00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 +00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 +00:01:18 | Processed Slot: 191 | Confirmed Slot: 191 | Finalized Slot: 159 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 194 | ◎499.999060000 +00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 +00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 +00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 +00:01:19 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 +00:01:20 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 +00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 +00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 +00:01:20 | Processed Slot: 196 | Confirmed Slot: 196 | Finalized Slot: 164 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 199 | ◎499.999035000 +00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 +00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 +00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 +00:01:21 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 +00:01:22 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 +00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 +00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 +00:01:22 | Processed Slot: 201 | Confirmed Slot: 201 | Finalized Slot: 169 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 204 | ◎499.999010000 +00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 +00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 +00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 +00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 +00:01:24 | Processed Slot: 204 | Confirmed Slot: 204 | Finalized Slot: 172 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 207 | ◎499.998995000 +00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 +00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 +00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 +00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 +00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 +00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 +00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 +00:01:26 | Processed Slot: 209 | Confirmed Slot: 209 | Finalized Slot: 177 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 212 | ◎499.998970000 +00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 +00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 +00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 +00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 +00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 +00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 +00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 +00:01:28 | Processed Slot: 214 | Confirmed Slot: 214 | Finalized Slot: 182 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 217 | ◎499.998945000 +00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 +00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 +00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 +00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 +00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 +00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 +00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 +00:01:30 | Processed Slot: 219 | Confirmed Slot: 219 | Finalized Slot: 187 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 222 | ◎499.998920000 +00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 +00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 +00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 +00:01:31 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 +00:01:31 | Processed Slot: 222 | Confirmed Slot: 222 | Finalized Slot: 190 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 225 | ◎499.998905000 +00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 +00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 +00:01:32 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 +00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 +00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 +00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 +00:01:33 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 +00:01:33 | Processed Slot: 227 | Confirmed Slot: 227 | Finalized Slot: 195 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 230 | ◎499.998880000 +00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 +00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 +00:01:34 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 +00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 +00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 +00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 +00:01:35 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 +00:01:35 | Processed Slot: 232 | Confirmed Slot: 232 | Finalized Slot: 200 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 235 | ◎499.998855000 +00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 +00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 +00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 +00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 +00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 +00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 +00:01:37 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 +00:01:37 | Processed Slot: 237 | Confirmed Slot: 237 | Finalized Slot: 205 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 240 | ◎499.998830000 +00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998825000 +00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998825000 +00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 +00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 +00:01:38 | Processed Slot: 240 | Confirmed Slot: 240 | Finalized Slot: 208 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 243 | ◎499.998815000 +00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 +00:01:39 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 +00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998805000 +00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998800000 +00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998800000 +00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 +00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 +00:01:40 | Processed Slot: 245 | Confirmed Slot: 245 | Finalized Slot: 213 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 248 | ◎499.998790000 +00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 +00:01:41 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 +00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998780000 +00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998775000 +00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998775000 +00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 +00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 +00:01:42 | Processed Slot: 250 | Confirmed Slot: 250 | Finalized Slot: 218 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 253 | ◎499.998765000 +00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 +00:01:43 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 +00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998755000 +00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998750000 +00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998750000 +00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 +00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 +00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998740000 +00:01:44 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998735000 +00:01:45 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998735000 +00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 +00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 +00:01:45 | Processed Slot: 258 | Confirmed Slot: 258 | Finalized Slot: 226 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 261 | ◎499.998725000 +00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 +00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 +00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998715000 +00:01:46 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998710000 +00:01:47 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998710000 +00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 +00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 +00:01:47 | Processed Slot: 263 | Confirmed Slot: 263 | Finalized Slot: 231 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 266 | ◎499.998700000 +00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 +00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 +00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998690000 +00:01:48 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998685000 +00:01:49 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998685000 +00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 +00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 +00:01:49 | Processed Slot: 268 | Confirmed Slot: 268 | Finalized Slot: 236 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 271 | ◎499.998675000 +00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 +00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 +00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998665000 +00:01:50 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998660000 +00:01:51 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998660000 +00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 +00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 +00:01:51 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 276 | ◎499.998650000 +00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 277 | ◎499.998645000 +00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 277 | ◎499.998645000 +00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 +00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 +00:01:53 | Processed Slot: 276 | Confirmed Slot: 276 | Finalized Slot: 244 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 279 | ◎499.998635000 +00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 +00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 +00:01:53 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 281 | ◎499.998625000 +00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 282 | ◎499.998620000 +00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 282 | ◎499.998620000 +00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 +00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 +00:01:55 | Processed Slot: 281 | Confirmed Slot: 281 | Finalized Slot: 249 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 284 | ◎499.998610000 +00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 +00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 +00:01:55 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 286 | ◎499.998600000 +00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 287 | ◎499.998595000 +00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 287 | ◎499.998595000 +00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 +00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 +00:01:57 | Processed Slot: 286 | Confirmed Slot: 286 | Finalized Slot: 254 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 289 | ◎499.998585000 +00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 +00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 +00:01:57 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 291 | ◎499.998575000 +00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 292 | ◎499.998570000 +00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 292 | ◎499.998570000 +00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 +00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 +00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 294 | ◎499.998560000 +00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 295 | ◎499.998555000 +00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 295 | ◎499.998555000 +00:01:59 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 +00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 +00:02:00 | Processed Slot: 294 | Confirmed Slot: 294 | Finalized Slot: 262 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 297 | ◎499.998545000 +00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 +00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 +00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 299 | ◎499.998535000 +00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 300 | ◎499.998530000 +00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 300 | ◎499.998530000 +00:02:01 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 +00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 +00:02:02 | Processed Slot: 299 | Confirmed Slot: 299 | Finalized Slot: 267 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 302 | ◎499.998520000 +00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 +00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 +00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 304 | ◎499.998510000 +00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 305 | ◎499.998505000 +00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 305 | ◎499.998505000 +00:02:03 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 +00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 +00:02:04 | Processed Slot: 304 | Confirmed Slot: 304 | Finalized Slot: 272 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 307 | ◎499.998495000 +00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 +00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 +00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998485000 +00:02:05 | Processed Slot: 307 | Confirmed Slot: 306 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 310 | ◎499.998485000 +00:02:05 | Processed Slot: 307 | Confirmed Slot: 307 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 310 | ◎499.998480000 +00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 +00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 +00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 312 | ◎499.998470000 +00:02:06 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 313 | ◎499.998465000 +00:02:07 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 313 | ◎499.998465000 +00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 +00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 +00:02:07 | Processed Slot: 312 | Confirmed Slot: 312 | Finalized Slot: 280 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 315 | ◎499.998455000 +00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 +00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 +00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 317 | ◎499.998445000 +00:02:08 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 318 | ◎499.998440000 +00:02:09 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 318 | ◎499.998440000 +00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 +00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 +00:02:09 | Processed Slot: 317 | Confirmed Slot: 317 | Finalized Slot: 285 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 320 | ◎499.998430000 +00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 +00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 +00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 322 | ◎499.998420000 +00:02:10 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 323 | ◎499.998415000 +00:02:11 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 323 | ◎499.998415000 +00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 +00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 +00:02:11 | Processed Slot: 322 | Confirmed Slot: 322 | Finalized Slot: 290 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 325 | ◎499.998405000 +00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998400000 +00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998400000 +00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 327 | ◎499.998395000 +00:02:12 | Processed Slot: 325 | Confirmed Slot: 324 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 328 | ◎499.998395000 +00:02:13 | Processed Slot: 325 | Confirmed Slot: 325 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 328 | ◎499.998390000 +00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 +00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 +00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 330 | ◎499.998380000 +00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 331 | ◎499.998375000 +00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 331 | ◎499.998375000 +00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 +00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 +00:02:15 | Processed Slot: 330 | Confirmed Slot: 330 | Finalized Slot: 298 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 333 | ◎499.998365000 +00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 +00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 +00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 335 | ◎499.998355000 +00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 336 | ◎499.998350000 +00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 336 | ◎499.998350000 +00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 +00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 +00:02:17 | Processed Slot: 335 | Confirmed Slot: 335 | Finalized Slot: 303 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 338 | ◎499.998340000 +00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 +00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 +00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 340 | ◎499.998330000 +00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 341 | ◎499.998325000 +00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 341 | ◎499.998325000 +00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 +00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 +00:02:19 | Processed Slot: 340 | Confirmed Slot: 340 | Finalized Slot: 308 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 343 | ◎499.998315000 +00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998310000 +00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998310000 +00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 345 | ◎499.998305000 +00:02:20 | Processed Slot: 343 | Confirmed Slot: 342 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 346 | ◎499.998305000 +00:02:20 | Processed Slot: 343 | Confirmed Slot: 343 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 346 | ◎499.998300000 +00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 +00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 +00:02:21 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 348 | ◎499.998290000 +00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 349 | ◎499.998285000 +00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 349 | ◎499.998285000 +00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 +00:02:22 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 +00:02:22 | Processed Slot: 348 | Confirmed Slot: 348 | Finalized Slot: 316 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 351 | ◎499.998275000 +00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 +00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 +00:02:23 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 353 | ◎499.998265000 +00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 354 | ◎499.998260000 +00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 354 | ◎499.998260000 +00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 +00:02:24 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 +00:02:24 | Processed Slot: 353 | Confirmed Slot: 353 | Finalized Slot: 321 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 356 | ◎499.998250000 +00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 +00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 +00:02:25 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 358 | ◎499.998240000 +00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 359 | ◎499.998235000 +00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 359 | ◎499.998235000 +00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 +00:02:26 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 +00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 361 | ◎499.998225000 +00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 362 | ◎499.998220000 +00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 362 | ◎499.998220000 +00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 363 | ◎499.998215000 +00:02:27 | Processed Slot: 361 | Confirmed Slot: 360 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 364 | ◎499.998215000 +00:02:27 | Processed Slot: 361 | Confirmed Slot: 361 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 364 | ◎499.998210000 +00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 +00:02:28 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 +00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 366 | ◎499.998200000 +00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 367 | ◎499.998195000 +00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 367 | ◎499.998195000 +00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 +00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 +00:02:29 | Processed Slot: 366 | Confirmed Slot: 366 | Finalized Slot: 334 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 369 | ◎499.998185000 +00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 +00:02:30 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 +00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 371 | ◎499.998175000 +00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 372 | ◎499.998170000 +00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 372 | ◎499.998170000 +00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 +00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 +00:02:31 | Processed Slot: 371 | Confirmed Slot: 371 | Finalized Slot: 339 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 374 | ◎499.998160000 +00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 +00:02:32 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 +00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 376 | ◎499.998150000 +00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 377 | ◎499.998145000 +00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 377 | ◎499.998145000 +00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 +00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 +00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 379 | ◎499.998135000 +00:02:33 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 380 | ◎499.998130000 +00:02:34 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 380 | ◎499.998130000 +00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 381 | ◎499.998125000 +00:02:34 | Processed Slot: 379 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 382 | ◎499.998125000 +00:02:34 | Processed Slot: 379 | Confirmed Slot: 379 | Finalized Slot: 347 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 382 | ◎499.998120000 +00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 +00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 +00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 384 | ◎499.998110000 +00:02:35 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 385 | ◎499.998105000 +00:02:36 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 385 | ◎499.998105000 +00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 +00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 +00:02:36 | Processed Slot: 384 | Confirmed Slot: 384 | Finalized Slot: 352 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 387 | ◎499.998095000 +00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 +00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 +00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.998085000 +00:02:37 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 390 | ◎499.998080000 +00:02:38 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 390 | ◎499.998080000 +00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 +00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 +00:02:38 | Processed Slot: 389 | Confirmed Slot: 389 | Finalized Slot: 357 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 392 | ◎499.998070000 +00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 +00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 +00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 394 | ◎499.998060000 +00:02:39 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 395 | ◎499.998055000 +00:02:40 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 395 | ◎499.998055000 +00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 +00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 +00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 397 | ◎499.998045000 +00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 398 | ◎499.998040000 +00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 398 | ◎499.998040000 +00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 +00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 +00:02:42 | Processed Slot: 397 | Confirmed Slot: 397 | Finalized Slot: 365 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 400 | ◎499.998030000 +00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 +00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 +00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 402 | ◎499.998020000 +00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 403 | ◎499.998015000 +00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 403 | ◎499.998015000 +00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 +00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 +00:02:44 | Processed Slot: 402 | Confirmed Slot: 402 | Finalized Slot: 370 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 405 | ◎499.998005000 +00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 +00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 +00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 407 | ◎499.997995000 +00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 408 | ◎499.997990000 +00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 408 | ◎499.997990000 +00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 +00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 +00:02:46 | Processed Slot: 407 | Confirmed Slot: 407 | Finalized Slot: 375 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 410 | ◎499.997980000 +00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 +00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 +00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 412 | ◎499.997970000 +00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 413 | ◎499.997965000 +00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 413 | ◎499.997965000 +00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 +00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 +00:02:48 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 415 | ◎499.997955000 +00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 416 | ◎499.997950000 +00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 416 | ◎499.997950000 +00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 +00:02:49 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 +00:02:49 | Processed Slot: 415 | Confirmed Slot: 415 | Finalized Slot: 383 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 418 | ◎499.997940000 +00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 +00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 +00:02:50 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 420 | ◎499.997930000 +00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 421 | ◎499.997925000 +00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 421 | ◎499.997925000 +00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 +00:02:51 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 +00:02:51 | Processed Slot: 420 | Confirmed Slot: 420 | Finalized Slot: 388 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 423 | ◎499.997915000 +00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 +00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 +00:02:52 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 425 | ◎499.997905000 +00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 426 | ◎499.997900000 +00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 426 | ◎499.997900000 +00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 +00:02:53 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 +00:02:53 | Processed Slot: 425 | Confirmed Slot: 425 | Finalized Slot: 393 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 428 | ◎499.997890000 +00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 +00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 +00:02:54 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 430 | ◎499.997880000 +00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 431 | ◎499.997875000 +00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 431 | ◎499.997875000 +00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 +00:02:55 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 +00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.997865000 +00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 434 | ◎499.997860000 +00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 434 | ◎499.997860000 +00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 +00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 +00:02:56 | Processed Slot: 433 | Confirmed Slot: 433 | Finalized Slot: 401 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 436 | ◎499.997850000 +00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 +00:02:57 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 +00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 438 | ◎499.997840000 +00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 439 | ◎499.997835000 +00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 439 | ◎499.997835000 +00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 +00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 +00:02:58 | Processed Slot: 438 | Confirmed Slot: 438 | Finalized Slot: 406 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 441 | ◎499.997825000 +00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 +00:02:59 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 +00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 443 | ◎499.997815000 +00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 444 | ◎499.997810000 +00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 444 | ◎499.997810000 +00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 +00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 +00:03:00 | Processed Slot: 443 | Confirmed Slot: 443 | Finalized Slot: 411 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 446 | ◎499.997800000 +00:03:00 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997795000 +00:03:01 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997795000 +00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 448 | ◎499.997790000 +00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 449 | ◎499.997785000 +00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 449 | ◎499.997785000 +00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 +00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 +00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 451 | ◎499.997775000 +00:03:02 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 452 | ◎499.997770000 +00:03:03 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 452 | ◎499.997770000 +00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 +00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 +00:03:03 | Processed Slot: 451 | Confirmed Slot: 451 | Finalized Slot: 419 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 454 | ◎499.997760000 +00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 +00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 +00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 456 | ◎499.997750000 +00:03:04 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 457 | ◎499.997745000 +00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 457 | ◎499.997745000 +00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 +00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 +00:03:05 | Processed Slot: 456 | Confirmed Slot: 456 | Finalized Slot: 424 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 459 | ◎499.997735000 +00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 +00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 +00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 461 | ◎499.997725000 +00:03:06 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 462 | ◎499.997720000 +00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 462 | ◎499.997720000 +00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 +00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 +00:03:07 | Processed Slot: 461 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 464 | ◎499.997710000 +00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997705000 +00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997705000 +00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 466 | ◎499.997700000 +00:03:08 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 467 | ◎499.997695000 +00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 467 | ◎499.997695000 +00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 +00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 +00:03:09 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 469 | ◎499.997685000 +00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 470 | ◎499.997680000 +00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 470 | ◎499.997680000 +00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 +00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 +00:03:11 | Processed Slot: 469 | Confirmed Slot: 469 | Finalized Slot: 437 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 472 | ◎499.997670000 +00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 +00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 +00:03:11 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 474 | ◎499.997660000 +00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 475 | ◎499.997655000 +00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 475 | ◎499.997655000 +00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 +00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 +00:03:13 | Processed Slot: 474 | Confirmed Slot: 474 | Finalized Slot: 442 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 477 | ◎499.997645000 +00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 +00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 +00:03:13 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 479 | ◎499.997635000 +00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 480 | ◎499.997630000 +00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 480 | ◎499.997630000 +00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 +00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 +00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 482 | ◎499.997620000 +00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 483 | ◎499.997615000 +00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 483 | ◎499.997615000 +00:03:15 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 484 | ◎499.997610000 +00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 485 | ◎499.997605000 +00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 485 | ◎499.997605000 +00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 +00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 +00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 487 | ◎499.997595000 +00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 488 | ◎499.997590000 +00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 488 | ◎499.997590000 +00:03:17 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 +00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 +00:03:18 | Processed Slot: 487 | Confirmed Slot: 487 | Finalized Slot: 455 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 490 | ◎499.997580000 +00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 +00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 +00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 492 | ◎499.997570000 +00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 493 | ◎499.997565000 +00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 493 | ◎499.997565000 +00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 +00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 +00:03:20 | Processed Slot: 492 | Confirmed Slot: 492 | Finalized Slot: 460 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 495 | ◎499.997555000 +00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 +00:03:21 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 +00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 497 | ◎499.997545000 +00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 498 | ◎499.997540000 +00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 498 | ◎499.997540000 +00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 +00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 +00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 500 | ◎499.997530000 +00:03:22 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 501 | ◎499.997525000 +00:03:23 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 501 | ◎499.997525000 +00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 502 | ◎499.997520000 +00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 503 | ◎499.997515000 +00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 503 | ◎499.997515000 +00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 +00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 +00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 505 | ◎499.997505000 +00:03:24 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 506 | ◎499.997500000 +00:03:25 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 506 | ◎499.997500000 +00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 +00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 +00:03:25 | Processed Slot: 505 | Confirmed Slot: 505 | Finalized Slot: 473 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.997490000 +00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 +00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 +00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 510 | ◎499.997480000 +00:03:26 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 511 | ◎499.997475000 +00:03:27 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 511 | ◎499.997475000 +00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 +00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 +00:03:27 | Processed Slot: 510 | Confirmed Slot: 510 | Finalized Slot: 478 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 513 | ◎499.997465000 +00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 +00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 +00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 515 | ◎499.997455000 +00:03:28 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 516 | ◎499.997450000 +00:03:29 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 516 | ◎499.997450000 +00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 +00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 +00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 518 | ◎499.997440000 +00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 519 | ◎499.997435000 +00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 519 | ◎499.997435000 +00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 520 | ◎499.997430000 +00:03:30 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 521 | ◎499.997425000 +00:03:31 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 521 | ◎499.997425000 +00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 +00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 +00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 523 | ◎499.997415000 +00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 524 | ◎499.997410000 +00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 524 | ◎499.997410000 +00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 +00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 +00:03:33 | Processed Slot: 523 | Confirmed Slot: 523 | Finalized Slot: 491 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 526 | ◎499.997400000 +00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 +00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 +00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 528 | ◎499.997390000 +00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 529 | ◎499.997385000 +00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 529 | ◎499.997385000 +00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 +00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 +00:03:35 | Processed Slot: 528 | Confirmed Slot: 528 | Finalized Slot: 496 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 531 | ◎499.997375000 +00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 +00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 +00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 533 | ◎499.997365000 +00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 534 | ◎499.997360000 +00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 534 | ◎499.997360000 +00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 +00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 +00:03:37 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 536 | ◎499.997350000 +00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 537 | ◎499.997345000 +00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 537 | ◎499.997345000 +00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 538 | ◎499.997340000 +00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 539 | ◎499.997335000 +00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 539 | ◎499.997335000 +00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 +00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 +00:03:39 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 541 | ◎499.997325000 +00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 542 | ◎499.997320000 +00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 542 | ◎499.997320000 +00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 +00:03:40 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 +00:03:40 | Processed Slot: 541 | Confirmed Slot: 541 | Finalized Slot: 509 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 544 | ◎499.997310000 +00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 +00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 +00:03:41 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 546 | ◎499.997300000 +00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 547 | ◎499.997295000 +00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 547 | ◎499.997295000 +00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 +00:03:42 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 +00:03:42 | Processed Slot: 546 | Confirmed Slot: 546 | Finalized Slot: 514 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 549 | ◎499.997285000 +00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997280000 +00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997280000 +00:03:43 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 551 | ◎499.997275000 +00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 552 | ◎499.997270000 +00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 552 | ◎499.997270000 +00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 +00:03:44 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 +00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 554 | ◎499.997260000 +00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 555 | ◎499.997255000 +00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 555 | ◎499.997255000 +00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 556 | ◎499.997250000 +00:03:45 | Processed Slot: 554 | Confirmed Slot: 553 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 557 | ◎499.997245000 +00:03:45 | Processed Slot: 554 | Confirmed Slot: 554 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 557 | ◎499.997245000 +00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 +00:03:46 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 +00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 559 | ◎499.997235000 +00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 560 | ◎499.997230000 +00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 560 | ◎499.997230000 +00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 +00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 +00:03:47 | Processed Slot: 559 | Confirmed Slot: 559 | Finalized Slot: 527 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 562 | ◎499.997220000 +00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 +00:03:48 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 +00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 564 | ◎499.997210000 +00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 565 | ◎499.997205000 +00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 565 | ◎499.997205000 +00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 +00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 +00:03:49 | Processed Slot: 564 | Confirmed Slot: 564 | Finalized Slot: 532 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 567 | ◎499.997195000 +00:03:49 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997190000 +00:03:50 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997190000 +00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 569 | ◎499.997185000 +00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 570 | ◎499.997180000 +00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 570 | ◎499.997180000 +00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 +00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 +00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 572 | ◎499.997170000 +00:03:51 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 573 | ◎499.997165000 +00:03:52 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 573 | ◎499.997165000 +00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 574 | ◎499.997160000 +00:03:52 | Processed Slot: 572 | Confirmed Slot: 571 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 575 | ◎499.997160000 +00:03:52 | Processed Slot: 572 | Confirmed Slot: 572 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 575 | ◎499.997155000 +00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 +00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 +00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 577 | ◎499.997145000 +00:03:53 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 578 | ◎499.997140000 +00:03:54 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 578 | ◎499.997140000 +00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 +00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 +00:03:54 | Processed Slot: 577 | Confirmed Slot: 577 | Finalized Slot: 545 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 580 | ◎499.997130000 +00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 +00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 +00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 582 | ◎499.997120000 +00:03:55 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 583 | ◎499.997115000 +00:03:56 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 583 | ◎499.997115000 +00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 +00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 +00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 585 | ◎499.997105000 +00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 586 | ◎499.997100000 +00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 586 | ◎499.997100000 +00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 587 | ◎499.997095000 +00:03:57 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 588 | ◎499.997090000 +00:03:58 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 588 | ◎499.997090000 +00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 +00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 +00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 590 | ◎499.997080000 +00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 591 | ◎499.997075000 +00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 591 | ◎499.997075000 +00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 592 | ◎499.997070000 +00:03:59 | Processed Slot: 590 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 593 | ◎499.997070000 +00:04:00 | Processed Slot: 590 | Confirmed Slot: 590 | Finalized Slot: 558 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 593 | ◎499.997065000 +00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 +00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 +00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 595 | ◎499.997055000 +00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 596 | ◎499.997050000 +00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 596 | ◎499.997050000 +00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 +00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 +00:04:02 | Processed Slot: 595 | Confirmed Slot: 595 | Finalized Slot: 563 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 598 | ◎499.997040000 +00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 +00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 +00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 600 | ◎499.997030000 +00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 601 | ◎499.997025000 +00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 601 | ◎499.997025000 +00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 +00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 +00:04:04 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 603 | ◎499.997015000 +00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 604 | ◎499.997010000 +00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 604 | ◎499.997010000 +00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 605 | ◎499.997005000 +00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 606 | ◎499.997000000 +00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 606 | ◎499.997000000 +00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 +00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 +00:04:06 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 608 | ◎499.996990000 +00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 609 | ◎499.996985000 +00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 609 | ◎499.996985000 +00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 +00:04:07 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 +00:04:07 | Processed Slot: 608 | Confirmed Slot: 608 | Finalized Slot: 576 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 611 | ◎499.996975000 +00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 +00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 +00:04:08 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 613 | ◎499.996965000 +00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 614 | ◎499.996960000 +00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 614 | ◎499.996960000 +00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 +00:04:09 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 +00:04:09 | Processed Slot: 613 | Confirmed Slot: 613 | Finalized Slot: 581 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 616 | ◎499.996950000 +00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 +00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 +00:04:10 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 618 | ◎499.996940000 +00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 619 | ◎499.996935000 +00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 619 | ◎499.996935000 +00:04:10 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 +00:04:11 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 +00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 621 | ◎499.996925000 +00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 622 | ◎499.996920000 +00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 622 | ◎499.996920000 +00:04:12 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 623 | ◎499.996915000 +00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 624 | ◎499.996910000 +00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 624 | ◎499.996910000 +00:04:12 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 +00:04:13 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 +00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 626 | ◎499.996900000 +00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 627 | ◎499.996895000 +00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 627 | ◎499.996895000 +00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 +00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 +00:04:14 | Processed Slot: 626 | Confirmed Slot: 626 | Finalized Slot: 594 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 629 | ◎499.996885000 +00:04:14 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 +00:04:15 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 +00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 631 | ◎499.996875000 +00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 632 | ◎499.996870000 +00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 632 | ◎499.996870000 +00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 +00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 +00:04:16 | Processed Slot: 631 | Confirmed Slot: 631 | Finalized Slot: 599 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 634 | ◎499.996860000 +00:04:16 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 +00:04:17 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 +00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 636 | ◎499.996850000 +00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 637 | ◎499.996845000 +00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 637 | ◎499.996845000 +00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 +00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 +00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 639 | ◎499.996835000 +00:04:18 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 640 | ◎499.996830000 +00:04:19 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 640 | ◎499.996830000 +00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 641 | ◎499.996825000 +00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 642 | ◎499.996820000 +00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 642 | ◎499.996820000 +00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 +00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 +00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 644 | ◎499.996810000 +00:04:20 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 645 | ◎499.996805000 +00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 645 | ◎499.996805000 +00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 +00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 +00:04:21 | Processed Slot: 644 | Confirmed Slot: 644 | Finalized Slot: 612 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 647 | ◎499.996795000 +00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 +00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 +00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 649 | ◎499.996785000 +00:04:22 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 650 | ◎499.996780000 +00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 650 | ◎499.996780000 +00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 +00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 +00:04:23 | Processed Slot: 649 | Confirmed Slot: 649 | Finalized Slot: 617 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 652 | ◎499.996770000 +00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 +00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 +00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 654 | ◎499.996760000 +00:04:24 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 655 | ◎499.996755000 +00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 655 | ◎499.996755000 +00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 +00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 +00:04:25 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 657 | ◎499.996745000 +00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 658 | ◎499.996740000 +00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 658 | ◎499.996740000 +00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 659 | ◎499.996735000 +00:04:26 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 660 | ◎499.996730000 +00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 660 | ◎499.996730000 +00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 +00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 +00:04:27 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 662 | ◎499.996720000 +00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 663 | ◎499.996715000 +00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 663 | ◎499.996715000 +00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 +00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 +00:04:29 | Processed Slot: 662 | Confirmed Slot: 662 | Finalized Slot: 630 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 665 | ◎499.996705000 +00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 +00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 +00:04:29 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 667 | ◎499.996695000 +00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 668 | ◎499.996690000 +00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 668 | ◎499.996690000 +00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 +00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 +00:04:31 | Processed Slot: 667 | Confirmed Slot: 667 | Finalized Slot: 635 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 670 | ◎499.996680000 +00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996675000 +00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996675000 +00:04:31 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 672 | ◎499.996670000 +00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 673 | ◎499.996665000 +00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 673 | ◎499.996665000 +00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 +00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 +00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 675 | ◎499.996655000 +00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 676 | ◎499.996650000 +00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 676 | ◎499.996650000 +00:04:34 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 677 | ◎499.996645000 +00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 678 | ◎499.996640000 +00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 678 | ◎499.996640000 +00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 +00:04:35 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 +00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 680 | ◎499.996630000 +00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 681 | ◎499.996625000 +00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 681 | ◎499.996625000 +00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 +00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 +00:04:36 | Processed Slot: 680 | Confirmed Slot: 680 | Finalized Slot: 648 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 683 | ◎499.996615000 +00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 +00:04:37 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 +00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 685 | ◎499.996605000 +00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 686 | ◎499.996600000 +00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 686 | ◎499.996600000 +00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 +00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 +00:04:38 | Processed Slot: 685 | Confirmed Slot: 685 | Finalized Slot: 653 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 688 | ◎499.996590000 +00:04:38 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996585000 +00:04:39 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996585000 +00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 690 | ◎499.996580000 +00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 691 | ◎499.996575000 +00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 691 | ◎499.996575000 +00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 +00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 +00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 693 | ◎499.996565000 +00:04:40 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 694 | ◎499.996560000 +00:04:41 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 694 | ◎499.996560000 +00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 695 | ◎499.996555000 +00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 696 | ◎499.996550000 +00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 696 | ◎499.996550000 +00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 +00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 +00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 698 | ◎499.996540000 +00:04:42 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 699 | ◎499.996535000 +00:04:43 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 699 | ◎499.996535000 +00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 +00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 +00:04:43 | Processed Slot: 698 | Confirmed Slot: 698 | Finalized Slot: 666 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 701 | ◎499.996525000 +00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 +00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 +00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 703 | ◎499.996515000 +00:04:44 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 704 | ◎499.996510000 +00:04:45 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 704 | ◎499.996510000 +00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 +00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 +00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 706 | ◎499.996500000 +00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 707 | ◎499.996495000 +00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 707 | ◎499.996495000 +00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 708 | ◎499.996490000 +00:04:46 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 709 | ◎499.996485000 +00:04:47 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 709 | ◎499.996485000 +00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 +00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 +00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 711 | ◎499.996475000 +00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 712 | ◎499.996470000 +00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 712 | ◎499.996470000 +00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 713 | ◎499.996465000 +00:04:48 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 714 | ◎499.996460000 +00:04:49 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 714 | ◎499.996460000 +00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 +00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 +00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 716 | ◎499.996450000 +00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 717 | ◎499.996445000 +00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 717 | ◎499.996445000 +00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 +00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 +00:04:51 | Processed Slot: 716 | Confirmed Slot: 716 | Finalized Slot: 684 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 719 | ◎499.996435000 +00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 +00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 +00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 721 | ◎499.996425000 +00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 722 | ◎499.996420000 +00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 722 | ◎499.996420000 +00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 +00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 +00:04:53 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 724 | ◎499.996410000 +00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 725 | ◎499.996405000 +00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 725 | ◎499.996405000 +00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 726 | ◎499.996400000 +00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 727 | ◎499.996395000 +00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 727 | ◎499.996395000 +00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 +00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 +00:04:55 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 729 | ◎499.996385000 +00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 730 | ◎499.996380000 +00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 730 | ◎499.996380000 +00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 731 | ◎499.996375000 +00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 732 | ◎499.996370000 +00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 732 | ◎499.996370000 +00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 +00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 +00:04:57 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 734 | ◎499.996360000 +00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 735 | ◎499.996355000 +00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 735 | ◎499.996355000 +00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 +00:04:58 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 +00:04:58 | Processed Slot: 734 | Confirmed Slot: 734 | Finalized Slot: 702 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 737 | ◎499.996345000 +00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 +00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 +00:04:59 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 739 | ◎499.996335000 +00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 740 | ◎499.996330000 +00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 740 | ◎499.996330000 +00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 +00:05:00 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 +00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 742 | ◎499.996320000 +00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 743 | ◎499.996315000 +00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 743 | ◎499.996315000 +00:05:01 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 744 | ◎499.996310000 +00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 745 | ◎499.996305000 +00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 745 | ◎499.996305000 +00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 +00:05:02 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 +00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 747 | ◎499.996295000 +00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 748 | ◎499.996290000 +00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 748 | ◎499.996290000 +00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 749 | ◎499.996285000 +00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 750 | ◎499.996280000 +00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 750 | ◎499.996280000 +00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 +00:05:04 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 +00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 752 | ◎499.996270000 +00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 753 | ◎499.996265000 +00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 753 | ◎499.996265000 +00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 +00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 +00:05:05 | Processed Slot: 752 | Confirmed Slot: 752 | Finalized Slot: 720 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 755 | ◎499.996255000 +00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 +00:05:06 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 +00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 757 | ◎499.996245000 +00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 758 | ◎499.996240000 +00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 758 | ◎499.996240000 +00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 +00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 +00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 760 | ◎499.996230000 +00:05:07 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 761 | ◎499.996225000 +00:05:08 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 761 | ◎499.996225000 +00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 762 | ◎499.996220000 +00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 763 | ◎499.996215000 +00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 763 | ◎499.996215000 +00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 +00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 +00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 765 | ◎499.996205000 +00:05:09 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 766 | ◎499.996200000 +00:05:10 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 766 | ◎499.996200000 +00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 767 | ◎499.996195000 +00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 768 | ◎499.996190000 +00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 768 | ◎499.996190000 +00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 +00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 +00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 770 | ◎499.996180000 +00:05:11 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 771 | ◎499.996175000 +00:05:12 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 771 | ◎499.996175000 +00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 +00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 +00:05:12 | Processed Slot: 770 | Confirmed Slot: 770 | Finalized Slot: 738 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 773 | ◎499.996165000 +00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996160000 +00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996160000 +00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 775 | ◎499.996155000 +00:05:13 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 776 | ◎499.996150000 +00:05:14 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 776 | ◎499.996150000 +00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 +00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 +00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 778 | ◎499.996140000 +00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 779 | ◎499.996135000 +00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 779 | ◎499.996135000 +00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 780 | ◎499.996130000 +00:05:15 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 781 | ◎499.996125000 +00:05:16 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 781 | ◎499.996125000 +00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 +00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 +00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 783 | ◎499.996115000 +00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 784 | ◎499.996110000 +00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 784 | ◎499.996110000 +00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 785 | ◎499.996105000 +00:05:17 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 786 | ◎499.996100000 +00:05:18 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 786 | ◎499.996100000 +00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 +00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 +00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 788 | ◎499.996090000 +00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 789 | ◎499.996085000 +00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 789 | ◎499.996085000 +00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 +00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 +00:05:20 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 791 | ◎499.996075000 +00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 792 | ◎499.996070000 +00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 792 | ◎499.996070000 +00:05:20 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 793 | ◎499.996065000 +00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 794 | ◎499.996060000 +00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 794 | ◎499.996060000 +00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 +00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 +00:05:22 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 796 | ◎499.996050000 +00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 797 | ◎499.996045000 +00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 797 | ◎499.996045000 +00:05:22 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 798 | ◎499.996040000 +00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 799 | ◎499.996035000 +00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 799 | ◎499.996035000 +00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 +00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 +00:05:24 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 801 | ◎499.996025000 +00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 802 | ◎499.996020000 +00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 802 | ◎499.996020000 +00:05:24 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 803 | ◎499.996015000 +00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 804 | ◎499.996010000 +00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 804 | ◎499.996010000 +00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 +00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 +00:05:26 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 806 | ◎499.996000000 +00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 807 | ◎499.995995000 +00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 807 | ◎499.995995000 +00:05:26 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 +00:05:27 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 +00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 809 | ◎499.995985000 +00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 810 | ◎499.995980000 +00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 810 | ◎499.995980000 +00:05:28 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 811 | ◎499.995975000 +00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 812 | ◎499.995970000 +00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 812 | ◎499.995970000 +00:05:28 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 +00:05:29 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 +00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 814 | ◎499.995960000 +00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 815 | ◎499.995955000 +00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 815 | ◎499.995955000 +00:05:30 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 816 | ◎499.995950000 +00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 817 | ◎499.995945000 +00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 817 | ◎499.995945000 +00:05:30 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 +00:05:31 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 +00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 819 | ◎499.995935000 +00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 820 | ◎499.995930000 +00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 820 | ◎499.995930000 +00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 821 | ◎499.995925000 +00:05:32 | Processed Slot: 819 | Confirmed Slot: 818 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 822 | ◎499.995925000 +00:05:32 | Processed Slot: 819 | Confirmed Slot: 819 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 822 | ◎499.995920000 +00:05:32 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 +00:05:33 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 +00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 824 | ◎499.995910000 +00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 825 | ◎499.995905000 +00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 825 | ◎499.995905000 +00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 +00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 +00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 827 | ◎499.995895000 +00:05:34 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 828 | ◎499.995890000 +00:05:35 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 828 | ◎499.995890000 +00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 829 | ◎499.995885000 +00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 830 | ◎499.995880000 +00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 830 | ◎499.995880000 +00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 +00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 +00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 832 | ◎499.995870000 +00:05:36 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 833 | ◎499.995865000 +00:05:37 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 833 | ◎499.995865000 +00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 834 | ◎499.995860000 +00:05:37 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 835 | ◎499.995855000 +00:05:37 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 835 | ◎499.995855000 +00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 +00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 +00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 837 | ◎499.995845000 +00:05:38 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 838 | ◎499.995840000 +00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 838 | ◎499.995840000 +00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 839 | ◎499.995835000 +00:05:39 | Processed Slot: 837 | Confirmed Slot: 836 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 840 | ◎499.995835000 +00:05:39 | Processed Slot: 837 | Confirmed Slot: 837 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 840 | ◎499.995830000 +00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 +00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 +00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 842 | ◎499.995820000 +00:05:40 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 843 | ◎499.995815000 +00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 843 | ◎499.995815000 +00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 +00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 +00:05:41 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 845 | ◎499.995805000 +00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 846 | ◎499.995800000 +00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 846 | ◎499.995800000 +00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 847 | ◎499.995795000 +00:05:42 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 848 | ◎499.995790000 +00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 848 | ◎499.995790000 +00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 +00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 +00:05:43 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 850 | ◎499.995780000 +00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 851 | ◎499.995775000 +00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 851 | ◎499.995775000 +00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 852 | ◎499.995770000 +00:05:44 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 853 | ◎499.995765000 +00:05:45 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 853 | ◎499.995765000 +00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 +00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 +00:05:45 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 855 | ◎499.995755000 +00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 856 | ◎499.995750000 +00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 856 | ◎499.995750000 +00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 857 | ◎499.995745000 +00:05:47 | Processed Slot: 855 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 858 | ◎499.995745000 +00:05:47 | Processed Slot: 855 | Confirmed Slot: 855 | Finalized Slot: 823 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 858 | ◎499.995740000 +00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 +00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 +00:05:48 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 860 | ◎499.995730000 +00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 861 | ◎499.995725000 +00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 861 | ◎499.995725000 +00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 +00:05:49 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 +00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 863 | ◎499.995715000 +00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 864 | ◎499.995710000 +00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 864 | ◎499.995710000 +00:05:50 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 865 | ◎499.995705000 +00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 866 | ◎499.995700000 +00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 866 | ◎499.995700000 +00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 +00:05:51 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 +00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 868 | ◎499.995690000 +00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 869 | ◎499.995685000 +00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 869 | ◎499.995685000 +00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 870 | ◎499.995680000 +00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 871 | ◎499.995675000 +00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 871 | ◎499.995675000 +00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 +00:05:53 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 +00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 873 | ◎499.995665000 +00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 874 | ◎499.995660000 +00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 874 | ◎499.995660000 +00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 +00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 +00:05:54 | Processed Slot: 873 | Confirmed Slot: 873 | Finalized Slot: 841 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 876 | ◎499.995650000 +00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 +00:05:55 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 +00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 878 | ◎499.995640000 +00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 879 | ◎499.995635000 +00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 879 | ◎499.995635000 +00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 +00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 +00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 881 | ◎499.995625000 +00:05:56 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 882 | ◎499.995620000 +00:05:57 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 882 | ◎499.995620000 +00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 883 | ◎499.995615000 +00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 884 | ◎499.995610000 +00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 884 | ◎499.995610000 +00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 +00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 +00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 886 | ◎499.995600000 +00:05:58 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 887 | ◎499.995595000 +00:05:59 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 887 | ◎499.995595000 +00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 888 | ◎499.995590000 +00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 889 | ◎499.995585000 +00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 889 | ◎499.995585000 +00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 +00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 +00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 891 | ◎499.995575000 +00:06:00 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 892 | ◎499.995570000 +00:06:01 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 892 | ◎499.995570000 +00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 +00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 +00:06:01 | Processed Slot: 891 | Confirmed Slot: 891 | Finalized Slot: 859 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 894 | ◎499.995560000 +00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995555000 +00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995555000 +00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 896 | ◎499.995550000 +00:06:02 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 897 | ◎499.995545000 +00:06:03 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 897 | ◎499.995545000 +00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 +00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 +00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 899 | ◎499.995535000 +00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 900 | ◎499.995530000 +00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 900 | ◎499.995530000 +00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 901 | ◎499.995525000 +00:06:04 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 902 | ◎499.995520000 +00:06:05 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 902 | ◎499.995520000 +00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 +00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 +00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 904 | ◎499.995510000 +00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 905 | ◎499.995505000 +00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 905 | ◎499.995505000 +00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 906 | ◎499.995500000 +00:06:06 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 907 | ◎499.995495000 +00:06:07 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 907 | ◎499.995495000 +00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 +00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 +00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 909 | ◎499.995485000 +00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 910 | ◎499.995480000 +00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 910 | ◎499.995480000 +00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 +00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 +00:06:09 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 912 | ◎499.995470000 +00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 913 | ◎499.995465000 +00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 913 | ◎499.995465000 +00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 914 | ◎499.995460000 +00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 915 | ◎499.995455000 +00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 915 | ◎499.995455000 +00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 +00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 +00:06:11 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 917 | ◎499.995445000 +00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 918 | ◎499.995440000 +00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 918 | ◎499.995440000 +00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 919 | ◎499.995435000 +00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 920 | ◎499.995430000 +00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 920 | ◎499.995430000 +00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 +00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 +00:06:13 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 922 | ◎499.995420000 +00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 923 | ◎499.995415000 +00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 923 | ◎499.995415000 +00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 924 | ◎499.995410000 +00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 925 | ◎499.995405000 +00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 925 | ◎499.995405000 +00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 +00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 +00:06:15 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 927 | ◎499.995395000 +00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 928 | ◎499.995390000 +00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 928 | ◎499.995390000 +00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 +00:06:16 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 +00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 930 | ◎499.995380000 +00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 931 | ◎499.995375000 +00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 931 | ◎499.995375000 +00:06:17 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 932 | ◎499.995370000 +00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 933 | ◎499.995365000 +00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 933 | ◎499.995365000 +00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 +00:06:18 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 +00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 935 | ◎499.995355000 +00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 936 | ◎499.995350000 +00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 936 | ◎499.995350000 +00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 937 | ◎499.995345000 +00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 938 | ◎499.995340000 +00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 938 | ◎499.995340000 +00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 +00:06:20 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 +00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 940 | ◎499.995330000 +00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 941 | ◎499.995325000 +00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 941 | ◎499.995325000 +00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 942 | ◎499.995320000 +00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 943 | ◎499.995315000 +00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 943 | ◎499.995315000 +00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 +00:06:22 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 +00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 945 | ◎499.995305000 +00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 946 | ◎499.995300000 +00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 946 | ◎499.995300000 +00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 +00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 +00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 948 | ◎499.995290000 +00:06:23 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 949 | ◎499.995285000 +00:06:24 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 949 | ◎499.995285000 +00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 950 | ◎499.995280000 +00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 951 | ◎499.995275000 +00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 951 | ◎499.995275000 +00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 +00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 +00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 953 | ◎499.995265000 +00:06:25 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 954 | ◎499.995260000 +00:06:26 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 954 | ◎499.995260000 +00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 955 | ◎499.995255000 +00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 956 | ◎499.995250000 +00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 956 | ◎499.995250000 +00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 +00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 +00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 958 | ◎499.995240000 +00:06:27 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 959 | ◎499.995235000 +00:06:28 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 959 | ◎499.995235000 +00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 960 | ◎499.995230000 +00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 961 | ◎499.995225000 +00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 961 | ◎499.995225000 +00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 +00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 +00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 963 | ◎499.995215000 +00:06:29 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 964 | ◎499.995210000 +00:06:30 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 964 | ◎499.995210000 +00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 +00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 +00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 966 | ◎499.995200000 +00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 967 | ◎499.995195000 +00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 967 | ◎499.995195000 +00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 968 | ◎499.995190000 +00:06:31 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 969 | ◎499.995185000 +00:06:32 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 969 | ◎499.995185000 +00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 +00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 +00:06:32 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 971 | ◎499.995175000 +00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 972 | ◎499.995170000 +00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 972 | ◎499.995170000 +00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 973 | ◎499.995165000 +00:06:33 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 974 | ◎499.995160000 +00:06:34 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 974 | ◎499.995160000 +00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 +00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 +00:06:34 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 976 | ◎499.995150000 +00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 977 | ◎499.995145000 +00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 977 | ◎499.995145000 +00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 978 | ◎499.995140000 +00:06:35 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 979 | ◎499.995135000 +00:06:36 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 979 | ◎499.995135000 +00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 +00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 +00:06:36 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 981 | ◎499.995125000 +00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 982 | ◎499.995120000 +00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 982 | ◎499.995120000 +00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 +00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 +00:06:38 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 984 | ◎499.995110000 +00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 985 | ◎499.995105000 +00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 985 | ◎499.995105000 +00:06:38 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 986 | ◎499.995100000 +00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 987 | ◎499.995095000 +00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 987 | ◎499.995095000 +00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 +00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 +00:06:40 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 989 | ◎499.995085000 +00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 990 | ◎499.995080000 +00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 990 | ◎499.995080000 +00:06:40 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 991 | ◎499.995075000 +00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 992 | ◎499.995070000 +00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 992 | ◎499.995070000 +00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 +00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 +00:06:42 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 994 | ◎499.995060000 +00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 995 | ◎499.995055000 +00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 995 | ◎499.995055000 +00:06:42 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 996 | ◎499.995050000 +00:06:43 | Processed Slot: 994 | Confirmed Slot: 993 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 997 | ◎499.995050000 +00:06:43 | Processed Slot: 994 | Confirmed Slot: 994 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 997 | ◎499.995045000 +00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995040000 +00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995040000 +00:06:44 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 999 | ◎499.995035000 +00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1000 | ◎499.995030000 +00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1000 | ◎499.995030000 +00:06:44 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 +00:06:45 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 +00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1002 | ◎499.995020000 +00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎499.995015000 +00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎499.995015000 +00:06:46 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1004 | ◎499.995010000 +00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1005 | ◎499.995005000 +00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1005 | ◎499.995005000 +00:06:46 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 +00:06:47 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 +00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1007 | ◎499.994995000 +00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1008 | ◎499.994990000 +00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1008 | ◎499.994990000 +00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1009 | ◎499.994985000 +00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1010 | ◎499.994980000 +00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1010 | ◎499.994980000 +00:06:48 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 +00:06:49 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 +00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1012 | ◎499.994970000 +00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1013 | ◎499.994965000 +00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1013 | ◎499.994965000 +00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 +00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 +00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎499.994955000 +00:06:50 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1016 | ◎499.994950000 +00:06:51 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1016 | ◎499.994950000 +00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1017 | ◎499.994945000 +00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1018 | ◎499.994940000 +00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1018 | ◎499.994940000 +00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 +00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 +00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1020 | ◎499.994930000 +00:06:52 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1021 | ◎499.994925000 +00:06:53 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1021 | ◎499.994925000 +00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1022 | ◎499.994920000 +00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1023 | ◎499.994915000 +00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1023 | ◎499.994915000 +00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 +00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 +00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1025 | ◎499.994905000 +00:06:54 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1026 | ◎499.994900000 +00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1026 | ◎499.994900000 +00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1027 | ◎499.994895000 +00:06:55 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1028 | ◎499.994890000 +00:06:55 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1028 | ◎499.994890000 +00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 +00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 +00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1030 | ◎499.994880000 +00:06:56 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1031 | ◎499.994875000 +00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1031 | ◎499.994875000 +00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 +00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 +00:06:57 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1033 | ◎499.994865000 +00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1034 | ◎499.994860000 +00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1034 | ◎499.994860000 +00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1035 | ◎499.994855000 +00:06:58 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1036 | ◎499.994850000 +00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1036 | ◎499.994850000 +00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 +00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 +00:06:59 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1038 | ◎499.994840000 +00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1039 | ◎499.994835000 +00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1039 | ◎499.994835000 +00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1040 | ◎499.994830000 +00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1041 | ◎499.994825000 +00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1041 | ◎499.994825000 +00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 +00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 +00:07:02 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1043 | ◎499.994815000 +00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1044 | ◎499.994810000 +00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1044 | ◎499.994810000 +00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1045 | ◎499.994805000 +00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1046 | ◎499.994800000 +00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1046 | ◎499.994800000 +00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 +00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 +00:07:04 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1048 | ◎499.994790000 +00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1049 | ◎499.994785000 +00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1049 | ◎499.994785000 +00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 +00:07:05 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 +00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1051 | ◎499.994775000 +00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1052 | ◎499.994770000 +00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1052 | ◎499.994770000 +00:07:06 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1053 | ◎499.994765000 +00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1054 | ◎499.994760000 +00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1054 | ◎499.994760000 +00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 +00:07:07 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 +00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎499.994750000 +00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎499.994745000 +00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎499.994745000 +00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎499.994740000 +00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎499.994735000 +00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎499.994735000 +00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 +00:07:09 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 +00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎499.994725000 +00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎499.994720000 +00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎499.994720000 +00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎499.994715000 +00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎499.994710000 +00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎499.994710000 +00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 +00:07:11 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 +00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1066 | ◎499.994700000 +00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1067 | ◎499.994695000 +00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1067 | ◎499.994695000 +00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 +00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 +00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎499.994685000 +00:07:12 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1070 | ◎499.994680000 +00:07:13 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1070 | ◎499.994680000 +00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1071 | ◎499.994675000 +00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1072 | ◎499.994670000 +00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1072 | ◎499.994670000 +00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 +00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 +00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎499.994660000 +00:07:14 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1075 | ◎499.994655000 +00:07:15 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1075 | ◎499.994655000 +00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1076 | ◎499.994650000 +00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1077 | ◎499.994645000 +00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1077 | ◎499.994645000 +00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 +00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 +00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎499.994635000 +00:07:16 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1080 | ◎499.994630000 +00:07:17 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1080 | ◎499.994630000 +00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎499.994625000 +00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎499.994620000 +00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎499.994620000 +00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 +00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 +00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎499.994610000 +00:07:18 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎499.994605000 +00:07:19 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎499.994605000 +00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 +00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 +00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎499.994595000 +00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎499.994590000 +00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎499.994590000 +00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎499.994585000 +00:07:20 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎499.994580000 +00:07:21 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎499.994580000 +00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 +00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 +00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1092 | ◎499.994570000 +00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1093 | ◎499.994565000 +00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1093 | ◎499.994565000 +00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1094 | ◎499.994560000 +00:07:22 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1095 | ◎499.994555000 +00:07:23 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1095 | ◎499.994555000 +00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 +00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 +00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1097 | ◎499.994545000 +00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1098 | ◎499.994540000 +00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1098 | ◎499.994540000 +00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎499.994535000 +00:07:24 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1100 | ◎499.994530000 +00:07:25 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1100 | ◎499.994530000 +00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994525000 +00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994525000 +00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1102 | ◎499.994520000 +00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1103 | ◎499.994515000 +00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1103 | ◎499.994515000 +00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 +00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 +00:07:27 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1105 | ◎499.994505000 +00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1106 | ◎499.994500000 +00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1106 | ◎499.994500000 +00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1107 | ◎499.994495000 +00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎499.994490000 +00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎499.994490000 +00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 +00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 +00:07:29 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1110 | ◎499.994480000 +00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1111 | ◎499.994475000 +00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1111 | ◎499.994475000 +00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1112 | ◎499.994470000 +00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1113 | ◎499.994465000 +00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1113 | ◎499.994465000 +00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 +00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 +00:07:31 | Processed Slot: 1112 | Confirmed Slot: 1112 | Finalized Slot: 1080 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎499.994455000 +00:07:31 | Processed Slot: 1113 | Confirmed Slot: 1113 | Finalized Slot: 1081 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎499.994450000 +00:07:31 | Processed Slot: 1113 | Confirmed Slot: 1113 | Finalized Slot: 1081 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎499.994450000 +00:07:31 | Processed Slot: 1114 | Confirmed Slot: 1114 | Finalized Slot: 1082 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎499.994445000 +00:07:32 | Processed Slot: 1115 | Confirmed Slot: 1115 | Finalized Slot: 1083 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎499.994440000 +00:07:32 | Processed Slot: 1115 | Confirmed Slot: 1115 | Finalized Slot: 1083 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎499.994440000 +00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1116 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994435000 +00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1116 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994435000 +00:07:33 | Processed Slot: 1117 | Confirmed Slot: 1117 | Finalized Slot: 1085 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎499.994430000 +00:07:33 | Processed Slot: 1118 | Confirmed Slot: 1118 | Finalized Slot: 1086 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎499.994425000 +00:07:33 | Processed Slot: 1118 | Confirmed Slot: 1118 | Finalized Slot: 1086 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎499.994425000 +00:07:33 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 +00:07:34 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 +00:07:34 | Processed Slot: 1120 | Confirmed Slot: 1120 | Finalized Slot: 1088 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1123 | ◎499.994415000 +00:07:34 | Processed Slot: 1121 | Confirmed Slot: 1121 | Finalized Slot: 1089 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1124 | ◎499.994410000 +00:07:34 | Processed Slot: 1121 | Confirmed Slot: 1121 | Finalized Slot: 1089 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1124 | ◎499.994410000 +00:07:35 | Processed Slot: 1122 | Confirmed Slot: 1122 | Finalized Slot: 1090 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎499.994405000 +00:07:35 | Processed Slot: 1123 | Confirmed Slot: 1123 | Finalized Slot: 1091 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1126 | ◎499.994400000 +00:07:35 | Processed Slot: 1123 | Confirmed Slot: 1123 | Finalized Slot: 1091 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1126 | ◎499.994400000 +00:07:35 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 +00:07:36 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 +00:07:36 | Processed Slot: 1125 | Confirmed Slot: 1125 | Finalized Slot: 1093 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1128 | ◎499.994390000 +00:07:36 | Processed Slot: 1126 | Confirmed Slot: 1126 | Finalized Slot: 1094 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎499.994385000 +00:07:36 | Processed Slot: 1126 | Confirmed Slot: 1126 | Finalized Slot: 1094 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎499.994385000 +00:07:37 | Processed Slot: 1127 | Confirmed Slot: 1127 | Finalized Slot: 1095 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1130 | ◎499.994380000 +00:07:37 | Processed Slot: 1128 | Confirmed Slot: 1128 | Finalized Slot: 1096 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1131 | ◎499.994375000 +00:07:37 | Processed Slot: 1128 | Confirmed Slot: 1128 | Finalized Slot: 1096 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1131 | ◎499.994375000 +00:07:37 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 +00:07:38 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 +00:07:38 | Processed Slot: 1130 | Confirmed Slot: 1130 | Finalized Slot: 1098 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1133 | ◎499.994365000 +00:07:38 | Processed Slot: 1131 | Confirmed Slot: 1131 | Finalized Slot: 1099 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎499.994360000 +00:07:38 | Processed Slot: 1131 | Confirmed Slot: 1131 | Finalized Slot: 1099 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎499.994360000 +00:07:39 | Processed Slot: 1132 | Confirmed Slot: 1132 | Finalized Slot: 1100 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1135 | ◎499.994355000 +00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 +00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 +00:07:39 | Processed Slot: 1134 | Confirmed Slot: 1134 | Finalized Slot: 1102 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎499.994345000 +00:07:40 | Processed Slot: 1134 | Confirmed Slot: 1134 | Finalized Slot: 1102 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎499.994345000 +00:07:40 | Processed Slot: 1135 | Confirmed Slot: 1135 | Finalized Slot: 1103 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎499.994340000 +00:07:40 | Processed Slot: 1136 | Confirmed Slot: 1136 | Finalized Slot: 1104 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎499.994335000 +00:07:40 | Processed Slot: 1136 | Confirmed Slot: 1136 | Finalized Slot: 1104 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎499.994335000 +00:07:41 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 +00:07:41 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 +00:07:41 | Processed Slot: 1138 | Confirmed Slot: 1138 | Finalized Slot: 1106 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎499.994325000 +00:07:41 | Processed Slot: 1139 | Confirmed Slot: 1139 | Finalized Slot: 1107 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎499.994320000 +00:07:42 | Processed Slot: 1139 | Confirmed Slot: 1139 | Finalized Slot: 1107 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎499.994320000 +00:07:42 | Processed Slot: 1140 | Confirmed Slot: 1140 | Finalized Slot: 1108 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎499.994315000 +00:07:42 | Processed Slot: 1141 | Confirmed Slot: 1141 | Finalized Slot: 1109 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎499.994310000 +00:07:42 | Processed Slot: 1141 | Confirmed Slot: 1141 | Finalized Slot: 1109 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎499.994310000 +00:07:43 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 +00:07:43 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 +00:07:43 | Processed Slot: 1143 | Confirmed Slot: 1143 | Finalized Slot: 1111 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎499.994300000 +00:07:43 | Processed Slot: 1144 | Confirmed Slot: 1144 | Finalized Slot: 1112 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1147 | ◎499.994295000 +00:07:44 | Processed Slot: 1144 | Confirmed Slot: 1144 | Finalized Slot: 1112 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1147 | ◎499.994295000 +00:07:44 | Processed Slot: 1145 | Confirmed Slot: 1145 | Finalized Slot: 1113 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1148 | ◎499.994290000 +00:07:44 | Processed Slot: 1146 | Confirmed Slot: 1146 | Finalized Slot: 1114 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1149 | ◎499.994285000 +00:07:44 | Processed Slot: 1146 | Confirmed Slot: 1146 | Finalized Slot: 1114 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1149 | ◎499.994285000 +00:07:45 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 +00:07:45 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 +00:07:45 | Processed Slot: 1148 | Confirmed Slot: 1148 | Finalized Slot: 1116 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎499.994275000 +00:07:45 | Processed Slot: 1149 | Confirmed Slot: 1149 | Finalized Slot: 1117 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1152 | ◎499.994270000 +00:07:46 | Processed Slot: 1149 | Confirmed Slot: 1149 | Finalized Slot: 1117 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1152 | ◎499.994270000 +00:07:46 | Processed Slot: 1150 | Confirmed Slot: 1150 | Finalized Slot: 1118 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1153 | ◎499.994265000 +00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 +00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 +00:07:47 | Processed Slot: 1152 | Confirmed Slot: 1152 | Finalized Slot: 1120 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎499.994255000 +00:07:47 | Processed Slot: 1152 | Confirmed Slot: 1152 | Finalized Slot: 1120 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎499.994255000 +00:07:47 | Processed Slot: 1153 | Confirmed Slot: 1153 | Finalized Slot: 1121 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎499.994250000 +00:07:47 | Processed Slot: 1154 | Confirmed Slot: 1154 | Finalized Slot: 1122 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎499.994245000 +00:07:48 | Processed Slot: 1154 | Confirmed Slot: 1154 | Finalized Slot: 1122 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎499.994245000 +00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 +00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 +00:07:48 | Processed Slot: 1156 | Confirmed Slot: 1156 | Finalized Slot: 1124 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎499.994235000 +00:07:49 | Processed Slot: 1157 | Confirmed Slot: 1157 | Finalized Slot: 1125 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎499.994230000 +00:07:49 | Processed Slot: 1157 | Confirmed Slot: 1157 | Finalized Slot: 1125 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎499.994230000 +00:07:49 | Processed Slot: 1158 | Confirmed Slot: 1158 | Finalized Slot: 1126 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎499.994225000 +00:07:49 | Processed Slot: 1159 | Confirmed Slot: 1159 | Finalized Slot: 1127 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎499.994220000 +00:07:50 | Processed Slot: 1159 | Confirmed Slot: 1159 | Finalized Slot: 1127 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎499.994220000 +00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 +00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 +00:07:50 | Processed Slot: 1161 | Confirmed Slot: 1161 | Finalized Slot: 1129 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎499.994210000 +00:07:51 | Processed Slot: 1162 | Confirmed Slot: 1162 | Finalized Slot: 1130 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1165 | ◎499.994205000 +00:07:51 | Processed Slot: 1162 | Confirmed Slot: 1162 | Finalized Slot: 1130 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1165 | ◎499.994205000 +00:07:51 | Processed Slot: 1163 | Confirmed Slot: 1163 | Finalized Slot: 1131 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1166 | ◎499.994200000 +00:07:51 | Processed Slot: 1164 | Confirmed Slot: 1164 | Finalized Slot: 1132 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1167 | ◎499.994195000 +00:07:52 | Processed Slot: 1164 | Confirmed Slot: 1164 | Finalized Slot: 1132 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1167 | ◎499.994195000 +00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 +00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 +00:07:52 | Processed Slot: 1166 | Confirmed Slot: 1166 | Finalized Slot: 1134 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1169 | ◎499.994185000 +00:07:53 | Processed Slot: 1167 | Confirmed Slot: 1167 | Finalized Slot: 1135 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1170 | ◎499.994180000 +00:07:53 | Processed Slot: 1167 | Confirmed Slot: 1167 | Finalized Slot: 1135 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1170 | ◎499.994180000 +00:07:53 | Processed Slot: 1168 | Confirmed Slot: 1168 | Finalized Slot: 1136 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1171 | ◎499.994175000 +00:07:53 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 +00:07:54 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 +00:07:54 | Processed Slot: 1170 | Confirmed Slot: 1170 | Finalized Slot: 1138 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1173 | ◎499.994165000 +00:07:54 | Processed Slot: 1170 | Confirmed Slot: 1170 | Finalized Slot: 1138 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1173 | ◎499.994165000 +00:07:54 | Processed Slot: 1171 | Confirmed Slot: 1171 | Finalized Slot: 1139 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1174 | ◎499.994160000 +00:07:55 | Processed Slot: 1172 | Confirmed Slot: 1172 | Finalized Slot: 1140 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎499.994155000 +00:07:55 | Processed Slot: 1172 | Confirmed Slot: 1172 | Finalized Slot: 1140 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎499.994155000 +00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 +00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 +00:07:56 | Processed Slot: 1174 | Confirmed Slot: 1174 | Finalized Slot: 1142 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎499.994145000 +00:07:56 | Processed Slot: 1175 | Confirmed Slot: 1175 | Finalized Slot: 1143 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎499.994140000 +00:07:56 | Processed Slot: 1175 | Confirmed Slot: 1175 | Finalized Slot: 1143 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎499.994140000 +00:07:56 | Processed Slot: 1176 | Confirmed Slot: 1176 | Finalized Slot: 1144 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎499.994135000 +00:07:57 | Processed Slot: 1177 | Confirmed Slot: 1177 | Finalized Slot: 1145 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎499.994130000 +00:07:57 | Processed Slot: 1177 | Confirmed Slot: 1177 | Finalized Slot: 1145 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎499.994130000 +00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 +00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 +00:07:58 | Processed Slot: 1179 | Confirmed Slot: 1179 | Finalized Slot: 1147 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎499.994120000 +00:07:58 | Processed Slot: 1180 | Confirmed Slot: 1180 | Finalized Slot: 1148 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎499.994115000 +00:07:58 | Processed Slot: 1180 | Confirmed Slot: 1180 | Finalized Slot: 1148 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎499.994115000 +00:07:58 | Processed Slot: 1181 | Confirmed Slot: 1181 | Finalized Slot: 1149 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎499.994110000 +00:07:59 | Processed Slot: 1182 | Confirmed Slot: 1182 | Finalized Slot: 1150 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1185 | ◎499.994105000 +00:07:59 | Processed Slot: 1182 | Confirmed Slot: 1182 | Finalized Slot: 1150 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1185 | ◎499.994105000 +00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 +00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 +00:08:00 | Processed Slot: 1184 | Confirmed Slot: 1184 | Finalized Slot: 1152 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎499.994095000 +00:08:00 | Processed Slot: 1185 | Confirmed Slot: 1185 | Finalized Slot: 1153 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎499.994090000 +00:08:00 | Processed Slot: 1185 | Confirmed Slot: 1185 | Finalized Slot: 1153 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎499.994090000 +00:08:00 | Processed Slot: 1186 | Confirmed Slot: 1186 | Finalized Slot: 1154 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎499.994085000 +00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 +00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 +00:08:01 | Processed Slot: 1188 | Confirmed Slot: 1188 | Finalized Slot: 1156 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎499.994075000 +00:08:01 | Processed Slot: 1188 | Confirmed Slot: 1188 | Finalized Slot: 1156 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎499.994075000 +00:08:02 | Processed Slot: 1189 | Confirmed Slot: 1189 | Finalized Slot: 1157 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎499.994070000 +00:08:02 | Processed Slot: 1190 | Confirmed Slot: 1190 | Finalized Slot: 1158 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎499.994065000 +00:08:02 | Processed Slot: 1190 | Confirmed Slot: 1190 | Finalized Slot: 1158 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎499.994065000 +00:08:02 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 +00:08:03 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 +00:08:03 | Processed Slot: 1192 | Confirmed Slot: 1192 | Finalized Slot: 1160 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎499.994055000 +00:08:03 | Processed Slot: 1193 | Confirmed Slot: 1193 | Finalized Slot: 1161 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎499.994050000 +00:08:03 | Processed Slot: 1193 | Confirmed Slot: 1193 | Finalized Slot: 1161 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎499.994050000 +00:08:04 | Processed Slot: 1194 | Confirmed Slot: 1194 | Finalized Slot: 1162 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎499.994045000 +00:08:04 | Processed Slot: 1195 | Confirmed Slot: 1195 | Finalized Slot: 1163 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎499.994040000 +00:08:04 | Processed Slot: 1195 | Confirmed Slot: 1195 | Finalized Slot: 1163 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎499.994040000 +00:08:04 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 +00:08:05 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 +00:08:05 | Processed Slot: 1197 | Confirmed Slot: 1197 | Finalized Slot: 1165 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎499.994030000 +00:08:05 | Processed Slot: 1198 | Confirmed Slot: 1198 | Finalized Slot: 1166 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎499.994025000 +00:08:05 | Processed Slot: 1198 | Confirmed Slot: 1198 | Finalized Slot: 1166 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎499.994025000 +00:08:06 | Processed Slot: 1199 | Confirmed Slot: 1199 | Finalized Slot: 1167 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎499.994020000 +00:08:06 | Processed Slot: 1200 | Confirmed Slot: 1200 | Finalized Slot: 1168 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎499.994015000 +00:08:06 | Processed Slot: 1200 | Confirmed Slot: 1200 | Finalized Slot: 1168 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎499.994015000 +00:08:06 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 +00:08:07 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 +00:08:07 | Processed Slot: 1202 | Confirmed Slot: 1202 | Finalized Slot: 1170 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎499.994005000 +00:08:07 | Processed Slot: 1203 | Confirmed Slot: 1203 | Finalized Slot: 1171 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎499.994000000 +00:08:07 | Processed Slot: 1203 | Confirmed Slot: 1203 | Finalized Slot: 1171 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎499.994000000 +00:08:08 | Processed Slot: 1204 | Confirmed Slot: 1204 | Finalized Slot: 1172 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎499.993995000 +00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1204 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993995000 +00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1205 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993990000 +00:08:08 | Processed Slot: 1206 | Confirmed Slot: 1206 | Finalized Slot: 1174 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎499.993985000 +00:08:09 | Processed Slot: 1206 | Confirmed Slot: 1206 | Finalized Slot: 1174 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎499.993985000 +00:08:09 | Processed Slot: 1207 | Confirmed Slot: 1207 | Finalized Slot: 1175 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎499.993980000 +00:08:09 | Processed Slot: 1208 | Confirmed Slot: 1208 | Finalized Slot: 1176 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎499.993975000 +00:08:09 | Processed Slot: 1208 | Confirmed Slot: 1208 | Finalized Slot: 1176 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎499.993975000 +00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 +00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 +00:08:10 | Processed Slot: 1210 | Confirmed Slot: 1210 | Finalized Slot: 1178 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎499.993965000 +00:08:10 | Processed Slot: 1211 | Confirmed Slot: 1211 | Finalized Slot: 1179 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎499.993960000 +00:08:11 | Processed Slot: 1211 | Confirmed Slot: 1211 | Finalized Slot: 1179 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎499.993960000 +00:08:11 | Processed Slot: 1212 | Confirmed Slot: 1212 | Finalized Slot: 1180 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎499.993955000 +00:08:11 | Processed Slot: 1213 | Confirmed Slot: 1213 | Finalized Slot: 1181 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎499.993950000 +00:08:11 | Processed Slot: 1213 | Confirmed Slot: 1213 | Finalized Slot: 1181 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎499.993950000 +00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 +00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 +00:08:12 | Processed Slot: 1215 | Confirmed Slot: 1215 | Finalized Slot: 1183 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎499.993940000 +00:08:12 | Processed Slot: 1216 | Confirmed Slot: 1216 | Finalized Slot: 1184 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎499.993935000 +00:08:13 | Processed Slot: 1216 | Confirmed Slot: 1216 | Finalized Slot: 1184 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎499.993935000 +00:08:13 | Processed Slot: 1217 | Confirmed Slot: 1217 | Finalized Slot: 1185 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎499.993930000 +00:08:13 | Processed Slot: 1218 | Confirmed Slot: 1218 | Finalized Slot: 1186 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎499.993925000 +00:08:14 | Processed Slot: 1218 | Confirmed Slot: 1218 | Finalized Slot: 1186 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎499.993925000 +00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 +00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 +00:08:14 | Processed Slot: 1220 | Confirmed Slot: 1220 | Finalized Slot: 1188 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎499.993915000 +00:08:15 | Processed Slot: 1221 | Confirmed Slot: 1221 | Finalized Slot: 1189 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎499.993910000 +00:08:15 | Processed Slot: 1221 | Confirmed Slot: 1221 | Finalized Slot: 1189 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎499.993910000 +00:08:15 | Processed Slot: 1222 | Confirmed Slot: 1222 | Finalized Slot: 1190 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎499.993905000 +00:08:15 | Processed Slot: 1223 | Confirmed Slot: 1222 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993905000 +00:08:16 | Processed Slot: 1223 | Confirmed Slot: 1223 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993900000 +00:08:16 | Processed Slot: 1224 | Confirmed Slot: 1224 | Finalized Slot: 1192 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎499.993895000 +00:08:16 | Processed Slot: 1224 | Confirmed Slot: 1224 | Finalized Slot: 1192 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎499.993895000 +00:08:16 | Processed Slot: 1225 | Confirmed Slot: 1225 | Finalized Slot: 1193 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎499.993890000 +00:08:17 | Processed Slot: 1226 | Confirmed Slot: 1226 | Finalized Slot: 1194 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎499.993885000 +00:08:17 | Processed Slot: 1226 | Confirmed Slot: 1226 | Finalized Slot: 1194 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎499.993885000 +00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 +00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 +00:08:18 | Processed Slot: 1228 | Confirmed Slot: 1228 | Finalized Slot: 1196 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎499.993875000 +00:08:18 | Processed Slot: 1229 | Confirmed Slot: 1229 | Finalized Slot: 1197 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎499.993870000 +00:08:18 | Processed Slot: 1229 | Confirmed Slot: 1229 | Finalized Slot: 1197 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎499.993870000 +00:08:18 | Processed Slot: 1230 | Confirmed Slot: 1230 | Finalized Slot: 1198 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎499.993865000 +00:08:19 | Processed Slot: 1231 | Confirmed Slot: 1231 | Finalized Slot: 1199 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎499.993860000 +00:08:19 | Processed Slot: 1231 | Confirmed Slot: 1231 | Finalized Slot: 1199 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎499.993860000 +00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 +00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 +00:08:20 | Processed Slot: 1233 | Confirmed Slot: 1233 | Finalized Slot: 1201 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎499.993850000 +00:08:20 | Processed Slot: 1234 | Confirmed Slot: 1234 | Finalized Slot: 1202 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎499.993845000 +00:08:20 | Processed Slot: 1234 | Confirmed Slot: 1234 | Finalized Slot: 1202 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎499.993845000 +00:08:20 | Processed Slot: 1235 | Confirmed Slot: 1235 | Finalized Slot: 1203 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎499.993840000 +00:08:21 | Processed Slot: 1236 | Confirmed Slot: 1236 | Finalized Slot: 1204 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎499.993835000 +00:08:21 | Processed Slot: 1236 | Confirmed Slot: 1236 | Finalized Slot: 1204 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎499.993835000 +00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1237 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993830000 +00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1237 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993830000 +00:08:22 | Processed Slot: 1238 | Confirmed Slot: 1238 | Finalized Slot: 1206 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎499.993825000 +00:08:22 | Processed Slot: 1239 | Confirmed Slot: 1239 | Finalized Slot: 1207 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎499.993820000 +00:08:22 | Processed Slot: 1239 | Confirmed Slot: 1239 | Finalized Slot: 1207 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎499.993820000 +00:08:22 | Processed Slot: 1240 | Confirmed Slot: 1240 | Finalized Slot: 1208 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎499.993815000 +00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1240 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993815000 +00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1241 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993810000 +00:08:23 | Processed Slot: 1242 | Confirmed Slot: 1242 | Finalized Slot: 1210 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎499.993805000 +00:08:23 | Processed Slot: 1242 | Confirmed Slot: 1242 | Finalized Slot: 1210 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎499.993805000 +00:08:24 | Processed Slot: 1243 | Confirmed Slot: 1243 | Finalized Slot: 1211 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎499.993800000 +00:08:24 | Processed Slot: 1244 | Confirmed Slot: 1244 | Finalized Slot: 1212 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎499.993795000 +00:08:24 | Processed Slot: 1244 | Confirmed Slot: 1244 | Finalized Slot: 1212 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎499.993795000 +00:08:24 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 +00:08:25 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 +00:08:25 | Processed Slot: 1246 | Confirmed Slot: 1246 | Finalized Slot: 1214 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎499.993785000 +00:08:25 | Processed Slot: 1247 | Confirmed Slot: 1247 | Finalized Slot: 1215 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎499.993780000 +00:08:25 | Processed Slot: 1247 | Confirmed Slot: 1247 | Finalized Slot: 1215 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎499.993780000 +00:08:26 | Processed Slot: 1248 | Confirmed Slot: 1248 | Finalized Slot: 1216 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎499.993775000 +00:08:26 | Processed Slot: 1249 | Confirmed Slot: 1249 | Finalized Slot: 1217 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎499.993770000 +00:08:26 | Processed Slot: 1249 | Confirmed Slot: 1249 | Finalized Slot: 1217 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎499.993770000 +00:08:26 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 +00:08:27 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 +00:08:27 | Processed Slot: 1251 | Confirmed Slot: 1251 | Finalized Slot: 1219 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎499.993760000 +00:08:27 | Processed Slot: 1252 | Confirmed Slot: 1252 | Finalized Slot: 1220 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎499.993755000 +00:08:27 | Processed Slot: 1252 | Confirmed Slot: 1252 | Finalized Slot: 1220 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎499.993755000 +00:08:28 | Processed Slot: 1253 | Confirmed Slot: 1253 | Finalized Slot: 1221 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎499.993750000 +00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 +00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 +00:08:28 | Processed Slot: 1255 | Confirmed Slot: 1255 | Finalized Slot: 1223 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎499.993740000 +00:08:29 | Processed Slot: 1255 | Confirmed Slot: 1255 | Finalized Slot: 1223 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎499.993740000 +00:08:29 | Processed Slot: 1256 | Confirmed Slot: 1256 | Finalized Slot: 1224 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎499.993735000 +00:08:29 | Processed Slot: 1257 | Confirmed Slot: 1257 | Finalized Slot: 1225 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎499.993730000 +00:08:29 | Processed Slot: 1257 | Confirmed Slot: 1257 | Finalized Slot: 1225 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎499.993730000 +00:08:30 | Processed Slot: 1258 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎499.993725000 +00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993725000 +00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1259 | Finalized Slot: 1227 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993720000 +00:08:30 | Processed Slot: 1260 | Confirmed Slot: 1260 | Finalized Slot: 1228 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎499.993715000 +00:08:31 | Processed Slot: 1260 | Confirmed Slot: 1260 | Finalized Slot: 1228 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎499.993715000 +00:08:31 | Processed Slot: 1261 | Confirmed Slot: 1261 | Finalized Slot: 1229 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎499.993710000 +00:08:31 | Processed Slot: 1262 | Confirmed Slot: 1262 | Finalized Slot: 1230 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎499.993705000 +00:08:31 | Processed Slot: 1262 | Confirmed Slot: 1262 | Finalized Slot: 1230 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎499.993705000 +00:08:32 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 +00:08:32 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 +00:08:32 | Processed Slot: 1264 | Confirmed Slot: 1264 | Finalized Slot: 1232 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎499.993695000 +00:08:32 | Processed Slot: 1265 | Confirmed Slot: 1265 | Finalized Slot: 1233 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎499.993690000 +00:08:33 | Processed Slot: 1265 | Confirmed Slot: 1265 | Finalized Slot: 1233 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎499.993690000 +00:08:33 | Processed Slot: 1266 | Confirmed Slot: 1266 | Finalized Slot: 1234 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎499.993685000 +00:08:33 | Processed Slot: 1267 | Confirmed Slot: 1267 | Finalized Slot: 1235 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎499.993680000 +00:08:33 | Processed Slot: 1267 | Confirmed Slot: 1267 | Finalized Slot: 1235 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎499.993680000 +00:08:34 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 +00:08:34 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 +00:08:34 | Processed Slot: 1269 | Confirmed Slot: 1269 | Finalized Slot: 1237 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎499.993670000 +00:08:34 | Processed Slot: 1270 | Confirmed Slot: 1270 | Finalized Slot: 1238 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎499.993665000 +00:08:35 | Processed Slot: 1270 | Confirmed Slot: 1270 | Finalized Slot: 1238 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎499.993665000 +00:08:35 | Processed Slot: 1271 | Confirmed Slot: 1271 | Finalized Slot: 1239 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎499.993660000 +00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 +00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 +00:08:36 | Processed Slot: 1273 | Confirmed Slot: 1273 | Finalized Slot: 1241 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎499.993650000 +00:08:36 | Processed Slot: 1273 | Confirmed Slot: 1273 | Finalized Slot: 1241 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎499.993650000 +00:08:36 | Processed Slot: 1274 | Confirmed Slot: 1274 | Finalized Slot: 1242 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎499.993645000 +00:08:36 | Processed Slot: 1275 | Confirmed Slot: 1275 | Finalized Slot: 1243 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎499.993640000 +00:08:37 | Processed Slot: 1275 | Confirmed Slot: 1275 | Finalized Slot: 1243 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎499.993640000 +00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 +00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 +00:08:37 | Processed Slot: 1277 | Confirmed Slot: 1277 | Finalized Slot: 1245 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎499.993630000 +00:08:38 | Processed Slot: 1278 | Confirmed Slot: 1278 | Finalized Slot: 1246 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎499.993625000 +00:08:38 | Processed Slot: 1278 | Confirmed Slot: 1278 | Finalized Slot: 1246 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎499.993625000 +00:08:38 | Processed Slot: 1279 | Confirmed Slot: 1279 | Finalized Slot: 1247 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎499.993620000 +00:08:38 | Processed Slot: 1280 | Confirmed Slot: 1280 | Finalized Slot: 1248 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎499.993615000 +00:08:39 | Processed Slot: 1280 | Confirmed Slot: 1280 | Finalized Slot: 1248 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎499.993615000 +00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 +00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 +00:08:39 | Processed Slot: 1282 | Confirmed Slot: 1282 | Finalized Slot: 1250 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎499.993605000 +00:08:40 | Processed Slot: 1283 | Confirmed Slot: 1283 | Finalized Slot: 1251 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎499.993600000 +00:08:40 | Processed Slot: 1283 | Confirmed Slot: 1283 | Finalized Slot: 1251 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎499.993600000 +00:08:40 | Processed Slot: 1284 | Confirmed Slot: 1284 | Finalized Slot: 1252 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎499.993595000 +00:08:40 | Processed Slot: 1285 | Confirmed Slot: 1285 | Finalized Slot: 1253 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎499.993590000 +00:08:41 | Processed Slot: 1285 | Confirmed Slot: 1285 | Finalized Slot: 1253 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎499.993590000 +00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 +00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 +00:08:41 | Processed Slot: 1287 | Confirmed Slot: 1287 | Finalized Slot: 1255 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎499.993580000 +00:08:42 | Processed Slot: 1288 | Confirmed Slot: 1288 | Finalized Slot: 1256 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎499.993575000 +00:08:42 | Processed Slot: 1288 | Confirmed Slot: 1288 | Finalized Slot: 1256 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎499.993575000 +00:08:42 | Processed Slot: 1289 | Confirmed Slot: 1289 | Finalized Slot: 1257 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎499.993570000 +00:08:42 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 +00:08:43 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 +00:08:43 | Processed Slot: 1291 | Confirmed Slot: 1291 | Finalized Slot: 1259 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎499.993560000 +00:08:43 | Processed Slot: 1291 | Confirmed Slot: 1291 | Finalized Slot: 1259 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎499.993560000 +00:08:43 | Processed Slot: 1292 | Confirmed Slot: 1292 | Finalized Slot: 1260 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎499.993555000 +00:08:44 | Processed Slot: 1293 | Confirmed Slot: 1293 | Finalized Slot: 1261 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎499.993550000 +00:08:44 | Processed Slot: 1293 | Confirmed Slot: 1293 | Finalized Slot: 1261 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎499.993550000 +00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 +00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 +00:08:45 | Processed Slot: 1295 | Confirmed Slot: 1295 | Finalized Slot: 1263 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎499.993540000 +00:08:45 | Processed Slot: 1296 | Confirmed Slot: 1296 | Finalized Slot: 1264 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎499.993535000 +00:08:45 | Processed Slot: 1296 | Confirmed Slot: 1296 | Finalized Slot: 1264 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎499.993535000 +00:08:45 | Processed Slot: 1297 | Confirmed Slot: 1297 | Finalized Slot: 1265 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎499.993530000 +00:08:46 | Processed Slot: 1298 | Confirmed Slot: 1298 | Finalized Slot: 1266 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎499.993525000 +00:08:46 | Processed Slot: 1298 | Confirmed Slot: 1298 | Finalized Slot: 1266 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎499.993525000 +00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 +00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 +00:08:47 | Processed Slot: 1300 | Confirmed Slot: 1300 | Finalized Slot: 1268 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎499.993515000 +00:08:47 | Processed Slot: 1301 | Confirmed Slot: 1301 | Finalized Slot: 1269 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎499.993510000 +00:08:47 | Processed Slot: 1301 | Confirmed Slot: 1301 | Finalized Slot: 1269 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎499.993510000 +00:08:47 | Processed Slot: 1302 | Confirmed Slot: 1302 | Finalized Slot: 1270 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎499.993505000 +00:08:48 | Processed Slot: 1303 | Confirmed Slot: 1303 | Finalized Slot: 1271 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎499.993500000 +00:08:48 | Processed Slot: 1303 | Confirmed Slot: 1303 | Finalized Slot: 1271 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎499.993500000 +00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 +00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 +00:08:49 | Processed Slot: 1305 | Confirmed Slot: 1305 | Finalized Slot: 1273 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎499.993490000 +00:08:49 | Processed Slot: 1306 | Confirmed Slot: 1306 | Finalized Slot: 1274 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎499.993485000 +00:08:49 | Processed Slot: 1306 | Confirmed Slot: 1306 | Finalized Slot: 1274 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎499.993485000 +00:08:49 | Processed Slot: 1307 | Confirmed Slot: 1307 | Finalized Slot: 1275 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎499.993480000 +00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 +00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 +00:08:50 | Processed Slot: 1309 | Confirmed Slot: 1309 | Finalized Slot: 1277 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎499.993470000 +00:08:50 | Processed Slot: 1309 | Confirmed Slot: 1309 | Finalized Slot: 1277 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎499.993470000 +00:08:51 | Processed Slot: 1310 | Confirmed Slot: 1310 | Finalized Slot: 1278 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎499.993465000 +00:08:51 | Processed Slot: 1311 | Confirmed Slot: 1311 | Finalized Slot: 1279 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎499.993460000 +00:08:51 | Processed Slot: 1311 | Confirmed Slot: 1311 | Finalized Slot: 1279 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎499.993460000 +00:08:51 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 +00:08:52 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 +00:08:52 | Processed Slot: 1313 | Confirmed Slot: 1313 | Finalized Slot: 1281 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎499.993450000 +00:08:52 | Processed Slot: 1314 | Confirmed Slot: 1314 | Finalized Slot: 1282 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎499.993445000 +00:08:52 | Processed Slot: 1314 | Confirmed Slot: 1314 | Finalized Slot: 1282 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎499.993445000 +00:08:53 | Processed Slot: 1315 | Confirmed Slot: 1315 | Finalized Slot: 1283 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎499.993440000 +00:08:53 | Processed Slot: 1316 | Confirmed Slot: 1316 | Finalized Slot: 1284 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎499.993435000 +00:08:53 | Processed Slot: 1316 | Confirmed Slot: 1316 | Finalized Slot: 1284 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎499.993435000 +00:08:53 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 +00:08:54 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 +00:08:54 | Processed Slot: 1318 | Confirmed Slot: 1318 | Finalized Slot: 1286 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎499.993425000 +00:08:54 | Processed Slot: 1319 | Confirmed Slot: 1319 | Finalized Slot: 1287 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎499.993420000 +00:08:54 | Processed Slot: 1319 | Confirmed Slot: 1319 | Finalized Slot: 1287 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎499.993420000 +00:08:55 | Processed Slot: 1320 | Confirmed Slot: 1320 | Finalized Slot: 1288 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎499.993415000 +00:08:55 | Processed Slot: 1321 | Confirmed Slot: 1321 | Finalized Slot: 1289 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎499.993410000 +00:08:55 | Processed Slot: 1321 | Confirmed Slot: 1321 | Finalized Slot: 1289 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎499.993410000 +00:08:55 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 +00:08:56 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 +00:08:56 | Processed Slot: 1323 | Confirmed Slot: 1323 | Finalized Slot: 1291 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎499.993400000 +00:08:56 | Processed Slot: 1324 | Confirmed Slot: 1324 | Finalized Slot: 1292 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎499.993395000 +00:08:56 | Processed Slot: 1324 | Confirmed Slot: 1324 | Finalized Slot: 1292 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎499.993395000 +00:08:57 | Processed Slot: 1325 | Confirmed Slot: 1325 | Finalized Slot: 1293 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎499.993390000 +00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 +00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 +00:08:57 | Processed Slot: 1327 | Confirmed Slot: 1327 | Finalized Slot: 1295 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎499.993380000 +00:08:58 | Processed Slot: 1327 | Confirmed Slot: 1327 | Finalized Slot: 1295 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎499.993380000 +00:08:58 | Processed Slot: 1328 | Confirmed Slot: 1328 | Finalized Slot: 1296 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎499.993375000 +00:08:58 | Processed Slot: 1329 | Confirmed Slot: 1329 | Finalized Slot: 1297 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎499.993370000 +00:08:58 | Processed Slot: 1329 | Confirmed Slot: 1329 | Finalized Slot: 1297 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎499.993370000 +00:08:59 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 +00:08:59 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 +00:08:59 | Processed Slot: 1331 | Confirmed Slot: 1331 | Finalized Slot: 1299 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎499.993360000 +00:08:59 | Processed Slot: 1332 | Confirmed Slot: 1332 | Finalized Slot: 1300 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎499.993355000 +00:09:00 | Processed Slot: 1332 | Confirmed Slot: 1332 | Finalized Slot: 1300 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎499.993355000 +00:09:00 | Processed Slot: 1333 | Confirmed Slot: 1333 | Finalized Slot: 1301 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎499.993350000 +00:09:00 | Processed Slot: 1334 | Confirmed Slot: 1334 | Finalized Slot: 1302 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎499.993345000 +00:09:00 | Processed Slot: 1334 | Confirmed Slot: 1334 | Finalized Slot: 1302 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎499.993345000 +00:09:01 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 +00:09:01 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 +00:09:01 | Processed Slot: 1336 | Confirmed Slot: 1336 | Finalized Slot: 1304 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎499.993335000 +00:09:01 | Processed Slot: 1337 | Confirmed Slot: 1337 | Finalized Slot: 1305 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎499.993330000 +00:09:02 | Processed Slot: 1337 | Confirmed Slot: 1337 | Finalized Slot: 1305 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎499.993330000 +00:09:02 | Processed Slot: 1338 | Confirmed Slot: 1338 | Finalized Slot: 1306 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎499.993325000 +00:09:02 | Processed Slot: 1339 | Confirmed Slot: 1339 | Finalized Slot: 1307 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎499.993320000 +00:09:02 | Processed Slot: 1339 | Confirmed Slot: 1339 | Finalized Slot: 1307 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎499.993320000 +00:09:03 | Processed Slot: 1340 | Confirmed Slot: 1340 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 +00:09:03 | Processed Slot: 1340 | Confirmed Slot: 1340 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 +00:09:03 | Processed Slot: 1341 | Confirmed Slot: 1341 | Finalized Slot: 1309 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎499.993310000 +00:09:03 | Processed Slot: 1342 | Confirmed Slot: 1342 | Finalized Slot: 1310 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎499.993305000 +00:09:04 | Processed Slot: 1342 | Confirmed Slot: 1342 | Finalized Slot: 1310 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎499.993305000 +00:09:04 | Processed Slot: 1343 | Confirmed Slot: 1343 | Finalized Slot: 1311 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎499.993300000 +00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 +00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 +00:09:05 | Processed Slot: 1345 | Confirmed Slot: 1345 | Finalized Slot: 1313 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎499.993290000 +00:09:05 | Processed Slot: 1345 | Confirmed Slot: 1345 | Finalized Slot: 1313 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎499.993290000 +00:09:05 | Processed Slot: 1346 | Confirmed Slot: 1346 | Finalized Slot: 1314 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎499.993285000 +00:09:05 | Processed Slot: 1347 | Confirmed Slot: 1347 | Finalized Slot: 1315 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎499.993280000 +00:09:06 | Processed Slot: 1347 | Confirmed Slot: 1347 | Finalized Slot: 1315 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎499.993280000 +00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 +00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 +00:09:06 | Processed Slot: 1349 | Confirmed Slot: 1349 | Finalized Slot: 1317 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎499.993270000 +00:09:07 | Processed Slot: 1350 | Confirmed Slot: 1350 | Finalized Slot: 1318 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎499.993265000 +00:09:07 | Processed Slot: 1350 | Confirmed Slot: 1350 | Finalized Slot: 1318 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎499.993265000 +00:09:07 | Processed Slot: 1351 | Confirmed Slot: 1351 | Finalized Slot: 1319 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎499.993260000 +00:09:07 | Processed Slot: 1352 | Confirmed Slot: 1352 | Finalized Slot: 1320 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎499.993255000 +00:09:08 | Processed Slot: 1352 | Confirmed Slot: 1352 | Finalized Slot: 1320 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎499.993255000 +00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 +00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 +00:09:08 | Processed Slot: 1354 | Confirmed Slot: 1354 | Finalized Slot: 1322 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎499.993245000 +00:09:09 | Processed Slot: 1355 | Confirmed Slot: 1355 | Finalized Slot: 1323 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎499.993240000 +00:09:09 | Processed Slot: 1355 | Confirmed Slot: 1355 | Finalized Slot: 1323 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎499.993240000 +00:09:09 | Processed Slot: 1356 | Confirmed Slot: 1356 | Finalized Slot: 1324 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎499.993235000 +00:09:09 | Processed Slot: 1357 | Confirmed Slot: 1357 | Finalized Slot: 1325 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎499.993230000 +00:09:10 | Processed Slot: 1357 | Confirmed Slot: 1357 | Finalized Slot: 1325 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎499.993230000 +00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1358 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993225000 +00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1358 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993225000 +00:09:10 | Processed Slot: 1359 | Confirmed Slot: 1359 | Finalized Slot: 1327 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎499.993220000 +00:09:11 | Processed Slot: 1360 | Confirmed Slot: 1360 | Finalized Slot: 1328 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎499.993215000 +00:09:11 | Processed Slot: 1360 | Confirmed Slot: 1360 | Finalized Slot: 1328 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎499.993215000 +00:09:11 | Processed Slot: 1361 | Confirmed Slot: 1361 | Finalized Slot: 1329 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎499.993210000 +00:09:11 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 +00:09:12 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 +00:09:12 | Processed Slot: 1363 | Confirmed Slot: 1363 | Finalized Slot: 1331 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎499.993200000 +00:09:12 | Processed Slot: 1363 | Confirmed Slot: 1363 | Finalized Slot: 1331 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎499.993200000 +00:09:12 | Processed Slot: 1364 | Confirmed Slot: 1364 | Finalized Slot: 1332 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1367 | ◎499.993195000 +00:09:13 | Processed Slot: 1365 | Confirmed Slot: 1365 | Finalized Slot: 1333 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1368 | ◎499.993190000 +00:09:13 | Processed Slot: 1365 | Confirmed Slot: 1365 | Finalized Slot: 1333 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1368 | ◎499.993190000 +00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 +00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 +00:09:14 | Processed Slot: 1367 | Confirmed Slot: 1367 | Finalized Slot: 1335 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1370 | ◎499.993180000 +00:09:14 | Processed Slot: 1368 | Confirmed Slot: 1368 | Finalized Slot: 1336 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1371 | ◎499.993175000 +00:09:14 | Processed Slot: 1368 | Confirmed Slot: 1368 | Finalized Slot: 1336 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1371 | ◎499.993175000 +00:09:14 | Processed Slot: 1369 | Confirmed Slot: 1369 | Finalized Slot: 1337 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1372 | ◎499.993170000 +00:09:15 | Processed Slot: 1370 | Confirmed Slot: 1370 | Finalized Slot: 1338 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1373 | ◎499.993165000 +00:09:15 | Processed Slot: 1370 | Confirmed Slot: 1370 | Finalized Slot: 1338 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1373 | ◎499.993165000 +00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 +00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 +00:09:16 | Processed Slot: 1372 | Confirmed Slot: 1372 | Finalized Slot: 1340 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1375 | ◎499.993155000 +00:09:16 | Processed Slot: 1373 | Confirmed Slot: 1373 | Finalized Slot: 1341 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎499.993150000 +00:09:16 | Processed Slot: 1373 | Confirmed Slot: 1373 | Finalized Slot: 1341 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎499.993150000 +00:09:16 | Processed Slot: 1374 | Confirmed Slot: 1374 | Finalized Slot: 1342 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎499.993145000 +00:09:17 | Processed Slot: 1375 | Confirmed Slot: 1375 | Finalized Slot: 1343 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎499.993140000 +00:09:17 | Processed Slot: 1375 | Confirmed Slot: 1375 | Finalized Slot: 1343 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎499.993140000 +00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1376 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993135000 +00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1376 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993135000 +00:09:18 | Processed Slot: 1377 | Confirmed Slot: 1377 | Finalized Slot: 1345 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎499.993130000 +00:09:18 | Processed Slot: 1378 | Confirmed Slot: 1378 | Finalized Slot: 1346 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎499.993125000 +00:09:18 | Processed Slot: 1378 | Confirmed Slot: 1378 | Finalized Slot: 1346 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎499.993125000 +00:09:18 | Processed Slot: 1379 | Confirmed Slot: 1379 | Finalized Slot: 1347 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎499.993120000 +00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 +00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 +00:09:19 | Processed Slot: 1381 | Confirmed Slot: 1381 | Finalized Slot: 1349 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1384 | ◎499.993110000 +00:09:19 | Processed Slot: 1381 | Confirmed Slot: 1381 | Finalized Slot: 1349 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1384 | ◎499.993110000 +00:09:20 | Processed Slot: 1382 | Confirmed Slot: 1382 | Finalized Slot: 1350 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1385 | ◎499.993105000 +00:09:20 | Processed Slot: 1383 | Confirmed Slot: 1383 | Finalized Slot: 1351 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1386 | ◎499.993100000 +00:09:20 | Processed Slot: 1383 | Confirmed Slot: 1383 | Finalized Slot: 1351 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1386 | ◎499.993100000 +00:09:20 | Processed Slot: 1384 | Confirmed Slot: 1384 | Finalized Slot: 1352 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1387 | ◎499.993095000 +00:09:21 | Processed Slot: 1384 | Confirmed Slot: 1384 | Finalized Slot: 1352 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1387 | ◎499.993095000 +00:09:21 | Processed Slot: 1385 | Confirmed Slot: 1385 | Finalized Slot: 1353 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1388 | ◎499.993090000 +00:09:21 | Processed Slot: 1386 | Confirmed Slot: 1386 | Finalized Slot: 1354 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1389 | ◎499.993085000 +00:09:21 | Processed Slot: 1386 | Confirmed Slot: 1386 | Finalized Slot: 1354 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1389 | ◎499.993085000 +00:09:22 | Processed Slot: 1387 | Confirmed Slot: 1387 | Finalized Slot: 1355 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1390 | ◎499.993080000 +00:09:22 | Processed Slot: 1388 | Confirmed Slot: 1388 | Finalized Slot: 1356 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1391 | ◎499.993075000 diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log new file mode 100644 index 000000000..e5aa3f4ca --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-08 06:04:07.734 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:07.751 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC +2023-08-08 06:04:07.755 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-08 06:04:08.443 UTC [48] LOG: received fast shutdown request +.2023-08-08 06:04:08.447 UTC [48] LOG: aborting any active transactions +2023-08-08 06:04:08.448 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-08 06:04:08.448 UTC [50] LOG: shutting down +2023-08-08 06:04:08.539 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-08 06:04:08.553 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-08 06:04:08.553 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-08 06:04:08.555 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:08.629 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC +2023-08-08 06:04:08.634 UTC [1] LOG: database system is ready to accept connections +2023-08-08 06:04:10.034 UTC [92] FATAL: role "chainlink" does not exist +2023-08-08 06:04:11.240 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-08 06:04:11.240 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-08 06:04:11.240 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-08 06:04:11.240 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-08 06:04:11.241 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-08 06:04:11.241 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log new file mode 100644 index 000000000..fca38a241 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log @@ -0,0 +1,1050 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-08T06:04:11.225Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:11.225Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:11.225Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:11.226Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-08T06:04:11.231Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:11.231Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:11.231Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"6756d5db-1f60-41f8-9942-9e3e9c29275a"} +{"level":"debug","ts":"2023-08-08T06:04:11.237Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"6756d5db-1f60-41f8-9942-9e3e9c29275a"} +{"level":"debug","ts":"2023-08-08T06:04:11.240Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/08 06:04:11 OK 0001_initial.sql +2023/08/08 06:04:11 OK 0002_gormv2.sql +2023/08/08 06:04:11 OK 0003_eth_logs_table.sql +2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql +2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql +2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql +2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/08 06:04:11 OK 0010_bridge_fk.sql +2023/08/08 06:04:11 OK 0011_latest_round_requested.sql +2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql +2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql +2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql +2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql +2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/08 06:04:11 OK 0018_add_node_version_table.sql +2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/08 06:04:11 OK 0020_remove_result_task.sql +2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql +2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql +2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql +2023/08/08 06:04:11 OK 0025_create_log_config_table.sql +2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql +2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/08 06:04:11 OK 0028_vrf_v2.sql +2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql +2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql +2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/08 06:04:12 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/08 06:04:12 OK 0034_webhook_external_initiator.sql +2023/08/08 06:04:12 OK 0035_create_feeds_managers.sql +2023/08/08 06:04:12 OK 0036_external_job_id.go +2023/08/08 06:04:12 OK 0037_cascade_deletes.sql +2023/08/08 06:04:12 OK 0038_create_csa_keys.sql +2023/08/08 06:04:12 OK 0039_remove_fmv2_precision.sql +2023/08/08 06:04:12 OK 0040_heads_l1_block_number.sql +2023/08/08 06:04:12 OK 0041_eth_tx_strategies.sql +2023/08/08 06:04:12 OK 0042_create_job_proposals.sql +2023/08/08 06:04:12 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/08 06:04:12 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/08 06:04:12 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/08 06:04:12 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/08 06:04:12 OK 0047_add_uuid_to_job_proposals.sql +2023/08/08 06:04:12 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/08 06:04:12 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/08 06:04:12 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/08 06:04:12 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/08 06:04:12 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/08 06:04:12 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/08 06:04:12 OK 0054_remove_legacy_pipeline.go +2023/08/08 06:04:12 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/08 06:04:12 OK 0056_multichain.go +2023/08/08 06:04:12 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/08 06:04:12 OK 0058_direct_request_whitelist.sql +2023/08/08 06:04:12 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/08 06:04:12 OK 0060_combine_keys_tables.sql +2023/08/08 06:04:12 OK 0061_multichain_relations.sql +2023/08/08 06:04:12 OK 0062_upgrade_keepers.sql +2023/08/08 06:04:12 OK 0063_add_job_proposal_timestamp.sql +2023/08/08 06:04:12 OK 0064_cascade_delete_chain_nodes.sql +2023/08/08 06:04:12 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/08 06:04:12 OK 0066_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/08 06:04:12 OK 0068_eth_tx_from_address_idx.sql +2023/08/08 06:04:12 OK 0069_remove_unused_columns.sql +2023/08/08 06:04:12 OK 0070_dynamic_fee_txes.sql +2023/08/08 06:04:12 OK 0071_allow_null_json_serializable.sql +2023/08/08 06:04:12 OK 0072_drop_unused_tables.sql +2023/08/08 06:04:12 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/08 06:04:12 OK 0074_simulation_eth_tx.sql +2023/08/08 06:04:12 OK 0075_unique_job_names.sql +2023/08/08 06:04:12 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/08 06:04:12 OK 0077_add_webauthn_table.sql +2023/08/08 06:04:12 OK 0078_only_one_version.sql +2023/08/08 06:04:12 OK 0079_vrf_v2_fields.sql +2023/08/08 06:04:12 OK 0080_drop_unused_cols.sql +2023/08/08 06:04:12 OK 0081_unconsumed_log_broadcasts.sql +2023/08/08 06:04:12 OK 0082_lease_lock.sql +2023/08/08 06:04:12 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/08 06:04:12 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/08 06:04:12 OK 0085_requested_confs_delay.sql +2023/08/08 06:04:12 OK 0086_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0087_ocr2_tables.sql +2023/08/08 06:04:12 OK 0088_vrfv2_request_timeout.sql +2023/08/08 06:04:12 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/08 06:04:12 OK 0090_ocr_new_timeouts.sql +2023/08/08 06:04:12 OK 0091_ocr2_relay.sql +2023/08/08 06:04:12 OK 0092_bptxm_tx_checkers.sql +2023/08/08 06:04:12 OK 0093_terra_txm.sql +2023/08/08 06:04:12 OK 0094_blockhash_store_job.sql +2023/08/08 06:04:12 OK 0095_terra_fcd.sql +2023/08/08 06:04:12 OK 0096_create_job_proposal_specs.sql +2023/08/08 06:04:12 OK 0097_bootstrap_spec.sql +2023/08/08 06:04:12 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/08 06:04:12 OK 0099_terra_msgs_created_at.sql +2023/08/08 06:04:12 OK 0100_bootstrap_config.sql +2023/08/08 06:04:12 OK 0101_generic_ocr2.sql +2023/08/08 06:04:12 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/08 06:04:12 OK 0103_terra_msgs_type_url.sql +2023/08/08 06:04:12 OK 0104_terra_cascade_delete.sql +2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql +2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql +2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql +2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql +2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql +2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql +2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql +2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/08 06:04:12 OK 0115_log_poller.sql +2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql +2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql +2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql +2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql +2023/08/08 06:04:12 OK 0121_remove_log_configs.sql +2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql +2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql +2023/08/08 06:04:12 OK 0126_remove_observation_source.sql +2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql +2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql +2023/08/08 06:04:12 OK 0131_add_multi_user.sql +2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql +2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql +2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql +2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql +2023/08/08 06:04:12 OK 0137_remove_tx_index.sql +2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql +2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql +2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql +2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/08 06:04:12 OK 0144_optimize_lp.sql +2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql +2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0148_dkg_shares.sql +2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql +2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql +2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql +2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql +2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql +2023/08/08 06:04:12 OK 0155_remove_terra.sql +2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql +2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql +2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql +2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/08 06:04:12 OK 0164_add_cosmos.sql +2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql +2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql +2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql +2023/08/08 06:04:12 OK 0168_drop_node_tables.sql +2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql +2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql +2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql +2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql +2023/08/08 06:04:12 OK 0174_vrf_owner.sql +2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql +2023/08/08 06:04:12 OK 0176_s4_shared_table.sql +2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql +2023/08/08 06:04:12 OK 0178_drop_access_list.sql +2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql +2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql +2023/08/08 06:04:13 OK 0182_nullable_feed_id.sql +2023/08/08 06:04:13 OK 0183_functions_new_fields.sql +2023/08/08 06:04:13 OK 0184_chains_tables_removal.sql +2023/08/08 06:04:13 OK 0185_create_mercury_transmit_requests.sql +2023/08/08 06:04:13 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:17.354Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID ff7af286de1cccd73dfbd0faee78d9282746ac5f0c7b6086d7c9f33426dbf7af for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:17.354Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:19.647Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 5VQgfwYGjJvdrfToRQwENv44vGNVyPERKCN2ypameS51","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:21.756Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 04c7127c322f80587dd3e3dec222bd38315d0515c6776975834bdd1621e93810","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.137Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:24.331Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:24.331Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.331Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-08T06:04:24.332Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-08T06:04:24.332Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-08T06:04:24.332Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-08T06:04:24.333Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 34917. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":34917} +{"level":"debug","ts":"2023-08-08T06:04:24.333Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":34917,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-08T06:04:24.334Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenPort":34917,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/34917","id":"PeerV1","v1peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:04:24.334Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"PeerV2"} +{"level":"debug","ts":"2023-08-08T06:04:24.335Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"saveLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","in":"recvLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:24.336Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-08T06:04:24.336Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:24.336Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.19s","version":"2.4.0@d0c54ea","appID":"6756d5db-1f60-41f8-9942-9e3e9c29275a"} +{"level":"debug","ts":"2023-08-08T06:04:24.337Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000708055} +{"level":"info","ts":"2023-08-08T06:04:24.344Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-08T06:04:24.348Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011057677} +{"level":"debug","ts":"2023-08-08T06:04:24.348Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.800Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.97891ms"} +{"level":"debug","ts":"2023-08-08T06:04:24.801Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:24","latency":"243.078µs"} +{"level":"debug","ts":"2023-08-08T06:04:29.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:04:29.449Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:04:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:29","latency":"123.189µs"} +{"level":"debug","ts":"2023-08-08T06:04:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:29","latency":"138.869µs"} +{"level":"info","ts":"2023-08-08T06:04:34.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-08T06:04:34.336Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:34","latency":"117.659µs"} +{"level":"debug","ts":"2023-08-08T06:04:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:34","latency":"121.154µs"} +{"level":"debug","ts":"2023-08-08T06:04:39.337Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:39","latency":"108.341µs"} +{"level":"debug","ts":"2023-08-08T06:04:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:39","latency":"123.142µs"} +{"level":"debug","ts":"2023-08-08T06:04:44.338Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:44","latency":"122.1µs"} +{"level":"debug","ts":"2023-08-08T06:04:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:44","latency":"101.193µs"} +{"level":"debug","ts":"2023-08-08T06:04:49.339Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:49","latency":"109.623µs"} +{"level":"debug","ts":"2023-08-08T06:04:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:49","latency":"119.621µs"} +{"level":"debug","ts":"2023-08-08T06:04:54.339Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:54","latency":"110.797µs"} +{"level":"debug","ts":"2023-08-08T06:04:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:54","latency":"112.709µs"} +{"level":"debug","ts":"2023-08-08T06:04:59.340Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:59","latency":"115.817µs"} +{"level":"debug","ts":"2023-08-08T06:04:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:59","latency":"109.718µs"} +{"level":"debug","ts":"2023-08-08T06:05:00.175Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:05:00.177Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-08T06:05:00.250Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-08T06:05:00.252Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:00","latency":"76.315941ms"} +{"level":"debug","ts":"2023-08-08T06:05:03.257Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:03","latency":"2.605815ms"} +{"level":"debug","ts":"2023-08-08T06:05:04.340Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:04","latency":"90.367µs"} +{"level":"debug","ts":"2023-08-08T06:05:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:04","latency":"99.755µs"} +{"level":"debug","ts":"2023-08-08T06:05:05.538Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:05","latency":"2.091878316s"} +{"level":"debug","ts":"2023-08-08T06:05:08.033Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:08","latency":"2.305292125s"} +{"level":"debug","ts":"2023-08-08T06:05:09.341Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:09","latency":"113.213µs"} +{"level":"debug","ts":"2023-08-08T06:05:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:09","latency":"111.039µs"} +{"level":"debug","ts":"2023-08-08T06:05:14.342Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:14","latency":"100.022µs"} +{"level":"debug","ts":"2023-08-08T06:05:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:14","latency":"86.157µs"} +{"level":"debug","ts":"2023-08-08T06:05:19.343Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:05:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:19","latency":"96.268µs"} +{"level":"debug","ts":"2023-08-08T06:05:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:19","latency":"95.229µs"} +{"level":"debug","ts":"2023-08-08T06:05:24.344Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:05:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:24","latency":"100.662µs"} +{"level":"debug","ts":"2023-08-08T06:05:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:24","latency":"99.645µs"} +{"level":"debug","ts":"2023-08-08T06:05:26.961Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:26","latency":"57.216µs"} +{"level":"debug","ts":"2023-08-08T06:05:27.149Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"53.315µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.344Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:29","latency":"97.424µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:29","latency":"100.59µs"} +{"level":"debug","ts":"2023-08-08T06:05:34.345Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:34","latency":"101.403µs"} +{"level":"debug","ts":"2023-08-08T06:05:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:34","latency":"86.651µs"} +{"level":"debug","ts":"2023-08-08T06:05:39.346Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:39","latency":"122.509µs"} +{"level":"debug","ts":"2023-08-08T06:05:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:39","latency":"102.938µs"} +{"level":"debug","ts":"2023-08-08T06:05:44.347Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:44","latency":"103.074µs"} +{"level":"debug","ts":"2023-08-08T06:05:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:44","latency":"77.536µs"} +{"level":"debug","ts":"2023-08-08T06:05:49.347Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:49","latency":"103.77µs"} +{"level":"debug","ts":"2023-08-08T06:05:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:49","latency":"102.31µs"} +{"level":"debug","ts":"2023-08-08T06:05:54.347Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:54","latency":"109.82µs"} +{"level":"debug","ts":"2023-08-08T06:05:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:54","latency":"108.619µs"} +{"level":"debug","ts":"2023-08-08T06:05:59.348Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:59","latency":"93.992µs"} +{"level":"debug","ts":"2023-08-08T06:05:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:59","latency":"90.462µs"} +{"level":"debug","ts":"2023-08-08T06:06:04.349Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:04","latency":"128.309µs"} +{"level":"debug","ts":"2023-08-08T06:06:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:04","latency":"107.141µs"} +{"level":"debug","ts":"2023-08-08T06:06:09.350Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:09","latency":"105.771µs"} +{"level":"debug","ts":"2023-08-08T06:06:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:09","latency":"106.957µs"} +{"level":"debug","ts":"2023-08-08T06:06:14.351Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:14","latency":"99.525µs"} +{"level":"debug","ts":"2023-08-08T06:06:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:14","latency":"105.686µs"} +{"level":"debug","ts":"2023-08-08T06:06:19.351Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:19","latency":"111.931µs"} +{"level":"debug","ts":"2023-08-08T06:06:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:19","latency":"106.863µs"} +{"level":"debug","ts":"2023-08-08T06:06:24.353Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:24","latency":"120.705µs"} +{"level":"debug","ts":"2023-08-08T06:06:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:24","latency":"131.523µs"} +{"level":"debug","ts":"2023-08-08T06:06:29.353Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:06:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:29","latency":"104.916µs"} +{"level":"debug","ts":"2023-08-08T06:06:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:29","latency":"77.424µs"} +{"level":"debug","ts":"2023-08-08T06:06:34.353Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:34","latency":"104.184µs"} +{"level":"debug","ts":"2023-08-08T06:06:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:34","latency":"88.715µs"} +{"level":"debug","ts":"2023-08-08T06:06:39.354Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:39","latency":"94.66µs"} +{"level":"debug","ts":"2023-08-08T06:06:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:39","latency":"105.854µs"} +{"level":"debug","ts":"2023-08-08T06:06:44.355Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:06:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:44","latency":"96.545µs"} +{"level":"debug","ts":"2023-08-08T06:06:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:44","latency":"96.516µs"} +{"level":"debug","ts":"2023-08-08T06:06:49.355Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:49","latency":"89.606µs"} +{"level":"debug","ts":"2023-08-08T06:06:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:49","latency":"96.951µs"} +{"level":"debug","ts":"2023-08-08T06:06:54.356Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:54","latency":"108.123µs"} +{"level":"debug","ts":"2023-08-08T06:06:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:54","latency":"87.973µs"} +{"level":"debug","ts":"2023-08-08T06:06:59.357Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:59","latency":"125.067µs"} +{"level":"debug","ts":"2023-08-08T06:06:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:59","latency":"136.11µs"} +{"level":"debug","ts":"2023-08-08T06:07:04.358Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:04","latency":"106.13µs"} +{"level":"debug","ts":"2023-08-08T06:07:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:04","latency":"123.173µs"} +{"level":"debug","ts":"2023-08-08T06:07:09.359Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:09.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:09","latency":"108.782µs"} +{"level":"debug","ts":"2023-08-08T06:07:09.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:09","latency":"109.043µs"} +{"level":"debug","ts":"2023-08-08T06:07:14.359Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:14","latency":"130.735µs"} +{"level":"debug","ts":"2023-08-08T06:07:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:14","latency":"123.396µs"} +{"level":"debug","ts":"2023-08-08T06:07:19.360Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:19","latency":"130.134µs"} +{"level":"debug","ts":"2023-08-08T06:07:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:19","latency":"119.504µs"} +{"level":"debug","ts":"2023-08-08T06:07:24.361Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:24","latency":"116.399µs"} +{"level":"debug","ts":"2023-08-08T06:07:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:24","latency":"116.907µs"} +{"level":"debug","ts":"2023-08-08T06:07:29.362Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:07:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:29","latency":"92.731µs"} +{"level":"debug","ts":"2023-08-08T06:07:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:29","latency":"97.117µs"} +{"level":"debug","ts":"2023-08-08T06:07:34.362Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:34","latency":"108.439µs"} +{"level":"debug","ts":"2023-08-08T06:07:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:34","latency":"115.874µs"} +{"level":"debug","ts":"2023-08-08T06:07:39.363Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:07:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:39","latency":"126.143µs"} +{"level":"debug","ts":"2023-08-08T06:07:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:39","latency":"144.308µs"} +{"level":"debug","ts":"2023-08-08T06:07:44.363Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:44","latency":"115.397µs"} +{"level":"debug","ts":"2023-08-08T06:07:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:44","latency":"115.604µs"} +{"level":"debug","ts":"2023-08-08T06:07:49.364Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:49","latency":"112.679µs"} +{"level":"debug","ts":"2023-08-08T06:07:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:49","latency":"111.434µs"} +{"level":"debug","ts":"2023-08-08T06:07:54.365Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:54","latency":"132.513µs"} +{"level":"debug","ts":"2023-08-08T06:07:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:54","latency":"129.096µs"} +{"level":"debug","ts":"2023-08-08T06:07:59.366Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:59","latency":"107.335µs"} +{"level":"debug","ts":"2023-08-08T06:07:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:59","latency":"111.499µs"} +{"level":"debug","ts":"2023-08-08T06:08:04.366Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:04","latency":"114.823µs"} +{"level":"debug","ts":"2023-08-08T06:08:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:04","latency":"138.594µs"} +{"level":"debug","ts":"2023-08-08T06:08:09.367Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:09","latency":"94.579µs"} +{"level":"debug","ts":"2023-08-08T06:08:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:09","latency":"107.213µs"} +{"level":"debug","ts":"2023-08-08T06:08:14.368Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:14","latency":"120.681µs"} +{"level":"debug","ts":"2023-08-08T06:08:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:14","latency":"120.626µs"} +{"level":"debug","ts":"2023-08-08T06:08:19.368Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:19","latency":"124.695µs"} +{"level":"debug","ts":"2023-08-08T06:08:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:19","latency":"120.794µs"} +{"level":"debug","ts":"2023-08-08T06:08:24.369Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:24","latency":"117.577µs"} +{"level":"debug","ts":"2023-08-08T06:08:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:24","latency":"120.56µs"} +{"level":"debug","ts":"2023-08-08T06:08:29.369Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:29","latency":"115.827µs"} +{"level":"debug","ts":"2023-08-08T06:08:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:29","latency":"123.091µs"} +{"level":"debug","ts":"2023-08-08T06:08:34.370Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:08:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:34","latency":"126.556µs"} +{"level":"debug","ts":"2023-08-08T06:08:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:34","latency":"126.543µs"} +{"level":"debug","ts":"2023-08-08T06:08:39.371Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:39","latency":"126.4µs"} +{"level":"debug","ts":"2023-08-08T06:08:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:39","latency":"102.07µs"} +{"level":"debug","ts":"2023-08-08T06:08:44.372Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:44","latency":"105.523µs"} +{"level":"debug","ts":"2023-08-08T06:08:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:44","latency":"93.989µs"} +{"level":"debug","ts":"2023-08-08T06:08:49.372Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:08:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:49","latency":"100.873µs"} +{"level":"debug","ts":"2023-08-08T06:08:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:49","latency":"98.83µs"} +{"level":"debug","ts":"2023-08-08T06:08:54.373Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:54","latency":"103.147µs"} +{"level":"debug","ts":"2023-08-08T06:08:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:54","latency":"95.621µs"} +{"level":"debug","ts":"2023-08-08T06:08:59.373Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:59","latency":"144.635µs"} +{"level":"debug","ts":"2023-08-08T06:08:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:59","latency":"145.386µs"} +{"level":"debug","ts":"2023-08-08T06:09:04.374Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:04","latency":"101.265µs"} +{"level":"debug","ts":"2023-08-08T06:09:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:04","latency":"101.525µs"} +{"level":"debug","ts":"2023-08-08T06:09:09.375Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:09:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:09","latency":"119.697µs"} +{"level":"debug","ts":"2023-08-08T06:09:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:09","latency":"209.634µs"} +{"level":"debug","ts":"2023-08-08T06:09:14.376Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:14","latency":"108.23µs"} +{"level":"debug","ts":"2023-08-08T06:09:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:14","latency":"95.205µs"} +{"level":"debug","ts":"2023-08-08T06:09:19.377Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:19","latency":"116.594µs"} +{"level":"debug","ts":"2023-08-08T06:09:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:19","latency":"117.7µs"} +{"level":"debug","ts":"2023-08-08T06:09:24.377Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:24","latency":"125.56µs"} +{"level":"debug","ts":"2023-08-08T06:09:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:24","latency":"96.532µs"} +{"level":"debug","ts":"2023-08-08T06:09:29.378Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:09:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:29","latency":"110.78µs"} +{"level":"debug","ts":"2023-08-08T06:09:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:29","latency":"110.366µs"} +{"level":"info","ts":"2023-08-08T06:09:34.336Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} +{"level":"debug","ts":"2023-08-08T06:09:34.379Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:34","latency":"124.023µs"} +{"level":"debug","ts":"2023-08-08T06:09:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:34","latency":"109.416µs"} +{"level":"debug","ts":"2023-08-08T06:09:39.379Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:39","latency":"124.416µs"} +{"level":"debug","ts":"2023-08-08T06:09:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:39","latency":"130.391µs"} +{"level":"debug","ts":"2023-08-08T06:09:43.639Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:43","latency":"118.163µs"} +{"level":"debug","ts":"2023-08-08T06:09:43.827Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:43","latency":"40.587µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.380Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:44","latency":"125.549µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:44","latency":"101.919µs"} +{"level":"debug","ts":"2023-08-08T06:09:47.086Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:47","latency":"4.237159ms"} +{"level":"info","ts":"2023-08-08T06:09:47.285Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} +{"level":"debug","ts":"2023-08-08T06:09:47.285Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-08T06:09:47.285Z","caller":"ocrbootstrap/delegate.go:110","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-08T06:09:47.285Z","caller":"ocrbootstrap/delegate.go:127","msg":"Launching new bootstrap node","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","args":{"BootstrapperFactory":{"BinaryNetworkEndpointFactory":{},"BootstrapperFactory":{}},"V2Bootstrappers":null,"ContractConfigTracker":{},"Database":{},"LocalConfig":{"BlockchainTimeout":20000000000,"ContractConfigConfirmations":1,"SkipContractConfigConfirmations":false,"ContractConfigTrackerPollInterval":15000000000,"ContractTransmitterTransmitTimeout":10000000000,"DatabaseTimeout":10000000000,"MinOCR2MaxDurationQuery":0,"DevelopmentMode":""},"Logger":{},"MonitoringEndpoint":null,"OffchainConfigDigester":{"ProgramID":"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ","StateID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5"}}} +{"level":"debug","ts":"2023-08-08T06:09:47.286Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} +{"level":"debug","ts":"2023-08-08T06:09:47.286Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:47.488Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:47.488Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} +{"level":"info","ts":"2023-08-08T06:09:47.489Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} +{"level":"debug","ts":"2023-08-08T06:09:47.489Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:47.489Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:09:47.489Z","logger":"OCRBootstrap","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"info","ts":"2023-08-08T06:09:47.489Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:09:47.490Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"bootstrap\\\"\\nname = \\\"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc\\\"\\nforwardingAllowed = false\\n\\n\\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\n\\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:47","latency":"212.185973ms"} +{"level":"debug","ts":"2023-08-08T06:09:47.691Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"info","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":null} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} +{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:09:47.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","numFound":1,"loaded":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"],"id":"ragep2p","_id":"discoveryProtocol","found":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"],"numLoaded":1,"queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numQueried":5} +{"level":"info","ts":"2023-08-08T06:09:47.696Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:46","msg":"BootstrapperV2: Initialized","version":"2.4.0@d0c54ea","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"PeerV2","_id":"bootstrapperV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","bootstrappers":null} +{"level":"info","ts":"2023-08-08T06:09:47.696Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:81","msg":"BootstrapperV2: Started listening","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"PeerV2","_id":"bootstrapperV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:09:48.584Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:48.787Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:49.381Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:49.650Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:49","latency":"122.161µs"} +{"level":"debug","ts":"2023-08-08T06:09:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:49","latency":"118.912µs"} +{"level":"debug","ts":"2023-08-08T06:09:49.853Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:50.689Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:50.892Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:51.716Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:51.919Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:52.737Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:52.940Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:53.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:53.968Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:09:54.382Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:54","latency":"110.233µs"} +{"level":"debug","ts":"2023-08-08T06:09:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:54","latency":"95.451µs"} +{"level":"debug","ts":"2023-08-08T06:09:54.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:55.010Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:55.888Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:56.091Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:56.943Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:57.147Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:58.014Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:58.217Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:59.107Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:59.310Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:09:59.383Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:59","latency":"110.702µs"} +{"level":"debug","ts":"2023-08-08T06:09:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:59","latency":"129.031µs"} +{"level":"debug","ts":"2023-08-08T06:10:00.123Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.326Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:01.169Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:01.372Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:02.183Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:02.386Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:02.895Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:10:03.210Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:03.413Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:04.291Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:04.383Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:04.494Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:04.766Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","direction":"in","remoteAddr":"10.14.53.196:49076","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:04.767Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:04.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","in":"processAnnouncement","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}"} +{"level":"debug","ts":"2023-08-08T06:10:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:04","latency":"106.535µs"} +{"level":"debug","ts":"2023-08-08T06:10:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:04","latency":"108.246µs"} +{"level":"debug","ts":"2023-08-08T06:10:05.316Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:05.518Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:06.317Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:06.520Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:07.348Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:07.551Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:08.369Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:08.572Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:09.384Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:09.397Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.600Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:09","latency":"98.821µs"} +{"level":"debug","ts":"2023-08-08T06:10:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:09","latency":"100.114µs"} +{"level":"debug","ts":"2023-08-08T06:10:10.476Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:10.679Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.556Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.759Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:12.654Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:12.856Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:13.753Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:13.956Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.385Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:14","latency":"115.416µs"} +{"level":"debug","ts":"2023-08-08T06:10:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:14","latency":"124.008µs"} +{"level":"debug","ts":"2023-08-08T06:10:14.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:14.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:14.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:14.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:14.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:14.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:15.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.847Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.050Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.864Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.067Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","direction":"in","remoteAddr":"10.14.31.164:49396"} +{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:17.897Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.097Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:10:18.100Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:18.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:18.949Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.152Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.386Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:19","latency":"117.242µs"} +{"level":"debug","ts":"2023-08-08T06:10:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:19","latency":"140.937µs"} +{"level":"debug","ts":"2023-08-08T06:10:20.020Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.057Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:20.058Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:20.057Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"warn","ts":"2023-08-08T06:10:20.058Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:20.223Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.095Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.298Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.166Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.368Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.190Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.393Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.265Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.387Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:24.468Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:24","latency":"110.963µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:24","latency":"119.215µs"} +{"level":"debug","ts":"2023-08-08T06:10:25.283Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.486Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.296Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.499Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:27.391Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.594Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.402Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"in","remoteAddr":"10.14.88.105:34874"} +{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:28.605Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.388Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:29.411Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.614Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:29","latency":"113.448µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:29","latency":"132.034µs"} +{"level":"debug","ts":"2023-08-08T06:10:30.456Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.509Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.712Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.552Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.755Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.300Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:10:33.597Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.800Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.389Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:34.644Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:34","latency":"107.6µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:34","latency":"133.709µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.846Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.691Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.893Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.141Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:36.141Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:36.775Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.868Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.071Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.959Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.162Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.390Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:39","latency":"95.614µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:39","latency":"90.601µs"} +{"level":"debug","ts":"2023-08-08T06:10:40.034Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.107Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.309Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.203Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.406Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.268Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.471Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.552Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:43.552Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:43.626Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"in","remoteAddr":"10.14.107.222:58236"} +{"level":"info","ts":"2023-08-08T06:10:43.626Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}","_id":"discoveryProtocol","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:10:44.280Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.391Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:44.482Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:44","latency":"121.772µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:44","latency":"108.186µs"} +{"level":"debug","ts":"2023-08-08T06:10:45.299Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.502Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.353Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.555Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.369Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.572Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.430Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.503Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:10:48.633Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:49.517Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.720Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:49","latency":"131.608µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:49","latency":"104.718µs"} +{"level":"debug","ts":"2023-08-08T06:10:50.542Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.746Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.560Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.643Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.845Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.678Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.881Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.393Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:54.689Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:54","latency":"119.197µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:54","latency":"128.127µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.891Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.729Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.932Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.777Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.980Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.849Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.052Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.394Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:59","latency":"112.79µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:59","latency":"113.395µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.925Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.127Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.986Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.188Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.040Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.243Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.064Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.266Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.706Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:11:04.099Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.302Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.395Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:04","latency":"101.159µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:04","latency":"113.754µs"} +{"level":"debug","ts":"2023-08-08T06:11:05.198Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.401Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.209Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.412Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.290Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.492Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.378Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.581Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.396Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:09.431Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.634Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:09","latency":"133.264µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:09","latency":"202.607µs"} +{"level":"debug","ts":"2023-08-08T06:11:10.452Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.654Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.501Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.704Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.574Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.777Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.605Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.397Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:14.664Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:14","latency":"157.598µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:14","latency":"148.416µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.866Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.674Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.876Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.724Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.927Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.010Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.851Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.909Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:11:19.054Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.398Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:19","latency":"108.869µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:19","latency":"122.271µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.887Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.090Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.958Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.161Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.035Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.238Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.126Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.330Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.144Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.347Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.399Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:24","latency":"117.613µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:24","latency":"134.798µs"} +{"level":"debug","ts":"2023-08-08T06:11:25.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.410Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.262Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.465Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.348Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.551Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.415Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.617Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.400Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:29.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.713Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:29","latency":"105.862µs"} +{"level":"debug","ts":"2023-08-08T06:11:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:29","latency":"125.001µs"} +{"level":"debug","ts":"2023-08-08T06:11:30.575Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.778Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.652Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.855Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.727Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.930Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.747Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.950Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.111Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:11:34.401Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:34.772Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:34","latency":"119.251µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:34","latency":"109.645µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.974Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.796Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.998Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.860Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.063Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.924Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.127Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.963Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.165Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.402Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:39","latency":"146.443µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:39","latency":"117.598µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.993Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.196Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.024Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.227Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.311Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.123Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.195Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.398Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.403Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:11:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:44","latency":"117.582µs"} +{"level":"debug","ts":"2023-08-08T06:11:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:44","latency":"156.242µs"} +{"level":"debug","ts":"2023-08-08T06:11:45.266Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.469Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.365Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.568Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.382Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.585Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.409Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.612Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.314Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:11:49.404Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:49.414Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.616Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:49","latency":"111.724µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:49","latency":"144.964µs"} +{"level":"debug","ts":"2023-08-08T06:11:50.419Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.622Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.478Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.681Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.529Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.731Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.563Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.405Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:54.647Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:54","latency":"121.999µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:54","latency":"128.419µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.850Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.717Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.920Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.793Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.996Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.853Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.055Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.934Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.137Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.406Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:59","latency":"113.64µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:59","latency":"106.027µs"} +{"level":"debug","ts":"2023-08-08T06:12:00.027Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.229Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.100Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.303Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.162Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.365Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.224Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.427Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.305Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.407Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:04.508Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.517Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:12:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:04","latency":"105.328µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:04","latency":"108.105µs"} +{"level":"debug","ts":"2023-08-08T06:12:05.404Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.606Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.420Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.493Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.696Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.517Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.720Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.408Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:09.527Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.730Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:09","latency":"107.742µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:09","latency":"111.542µs"} +{"level":"debug","ts":"2023-08-08T06:12:10.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.826Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.702Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.905Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.707Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.910Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.769Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.972Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.408Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:14","latency":"100.846µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:14","latency":"110.684µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.805Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.008Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.854Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.057Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.881Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.084Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.915Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.117Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.409Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:19.720Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:12:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:19","latency":"91.899µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:19","latency":"96.318µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.991Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.194Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.006Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.010Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.212Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.043Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.246Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.058Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.261Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.410Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:24","latency":"111.461µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:24","latency":"102.278µs"} +{"level":"debug","ts":"2023-08-08T06:12:25.136Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.339Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.146Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.349Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.438Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.309Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.512Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.334Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.411Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:29.537Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:29","latency":"111.775µs"} +{"level":"debug","ts":"2023-08-08T06:12:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:29","latency":"127.428µs"} +{"level":"debug","ts":"2023-08-08T06:12:30.370Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.573Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.388Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.590Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.419Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.622Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.479Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.682Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.411Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:34.571Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.773Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:34","latency":"121.086µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:34","latency":"93.817µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.923Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:12:35.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.826Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.720Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.923Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.805Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.008Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.902Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.105Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.412Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:12:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:39","latency":"147.112µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:39","latency":"117.725µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.912Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.115Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.928Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.131Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.003Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.205Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.033Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.103Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.305Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.412Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:44","latency":"119.258µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:44","latency":"140.836µs"} +{"level":"debug","ts":"2023-08-08T06:12:45.106Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.309Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.111Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.314Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.122Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.215Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.418Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.274Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.413Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:49.477Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:49","latency":"110.591µs"} +{"level":"debug","ts":"2023-08-08T06:12:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:49","latency":"101.426µs"} +{"level":"debug","ts":"2023-08-08T06:12:50.126Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:12:50.345Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.548Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.417Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.619Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.457Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.540Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.743Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.414Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:54.569Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.772Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:54","latency":"112.906µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:54","latency":"111.786µs"} +{"level":"debug","ts":"2023-08-08T06:12:55.605Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.693Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.895Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.710Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.913Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.788Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.991Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.415Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:59.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:59","latency":"113.91µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:59","latency":"131.592µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.854Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.057Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.917Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.120Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.007Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.210Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.036Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.239Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.136Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.338Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.416Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"debug","ts":"2023-08-08T06:13:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:13:04","latency":"110.341µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:13:04","latency":"117.002µs"} +{"level":"debug","ts":"2023-08-08T06:13:05.228Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.329Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} +{"level":"debug","ts":"2023-08-08T06:13:05.431Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.460Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.332Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.534Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.382Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.585Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log new file mode 100644 index 000000000..42398a283 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-08 06:04:07.841 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:07.859 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC +2023-08-08 06:04:07.864 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-08 06:04:08.554 UTC [48] LOG: received fast shutdown request +.2023-08-08 06:04:08.559 UTC [48] LOG: aborting any active transactions +2023-08-08 06:04:08.635 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-08 06:04:08.635 UTC [50] LOG: shutting down +2023-08-08 06:04:08.655 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-08 06:04:08.766 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-08 06:04:08.766 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-08 06:04:08.769 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:08.787 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC +2023-08-08 06:04:08.791 UTC [1] LOG: database system is ready to accept connections +2023-08-08 06:04:10.051 UTC [92] FATAL: role "chainlink" does not exist +2023-08-08 06:04:11.057 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-08 06:04:11.057 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-08 06:04:11.057 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-08 06:04:11.057 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-08 06:04:11.058 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-08 06:04:11.058 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log new file mode 100644 index 000000000..1455e8800 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log @@ -0,0 +1,1786 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-08T06:04:10.941Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.942Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.942Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:10.942Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-08T06:04:10.947Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.947Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.947Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"707e984b-1030-421b-b739-756da958e822"} +{"level":"debug","ts":"2023-08-08T06:04:10.954Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"707e984b-1030-421b-b739-756da958e822"} +{"level":"debug","ts":"2023-08-08T06:04:11.057Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/08 06:04:11 OK 0001_initial.sql +2023/08/08 06:04:11 OK 0002_gormv2.sql +2023/08/08 06:04:11 OK 0003_eth_logs_table.sql +2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql +2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql +2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql +2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/08 06:04:11 OK 0010_bridge_fk.sql +2023/08/08 06:04:11 OK 0011_latest_round_requested.sql +2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql +2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql +2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql +2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql +2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/08 06:04:11 OK 0018_add_node_version_table.sql +2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/08 06:04:11 OK 0020_remove_result_task.sql +2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql +2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql +2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql +2023/08/08 06:04:11 OK 0025_create_log_config_table.sql +2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql +2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/08 06:04:11 OK 0028_vrf_v2.sql +2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql +2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql +2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql +2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql +2023/08/08 06:04:11 OK 0036_external_job_id.go +2023/08/08 06:04:11 OK 0037_cascade_deletes.sql +2023/08/08 06:04:11 OK 0038_create_csa_keys.sql +2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql +2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql +2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql +2023/08/08 06:04:11 OK 0042_create_job_proposals.sql +2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql +2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go +2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/08 06:04:11 OK 0056_multichain.go +2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql +2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/08 06:04:12 OK 0060_combine_keys_tables.sql +2023/08/08 06:04:12 OK 0061_multichain_relations.sql +2023/08/08 06:04:12 OK 0062_upgrade_keepers.sql +2023/08/08 06:04:12 OK 0063_add_job_proposal_timestamp.sql +2023/08/08 06:04:12 OK 0064_cascade_delete_chain_nodes.sql +2023/08/08 06:04:12 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/08 06:04:12 OK 0066_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/08 06:04:12 OK 0068_eth_tx_from_address_idx.sql +2023/08/08 06:04:12 OK 0069_remove_unused_columns.sql +2023/08/08 06:04:12 OK 0070_dynamic_fee_txes.sql +2023/08/08 06:04:12 OK 0071_allow_null_json_serializable.sql +2023/08/08 06:04:12 OK 0072_drop_unused_tables.sql +2023/08/08 06:04:12 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/08 06:04:12 OK 0074_simulation_eth_tx.sql +2023/08/08 06:04:12 OK 0075_unique_job_names.sql +2023/08/08 06:04:12 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/08 06:04:12 OK 0077_add_webauthn_table.sql +2023/08/08 06:04:12 OK 0078_only_one_version.sql +2023/08/08 06:04:12 OK 0079_vrf_v2_fields.sql +2023/08/08 06:04:12 OK 0080_drop_unused_cols.sql +2023/08/08 06:04:12 OK 0081_unconsumed_log_broadcasts.sql +2023/08/08 06:04:12 OK 0082_lease_lock.sql +2023/08/08 06:04:12 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/08 06:04:12 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/08 06:04:12 OK 0085_requested_confs_delay.sql +2023/08/08 06:04:12 OK 0086_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0087_ocr2_tables.sql +2023/08/08 06:04:12 OK 0088_vrfv2_request_timeout.sql +2023/08/08 06:04:12 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/08 06:04:12 OK 0090_ocr_new_timeouts.sql +2023/08/08 06:04:12 OK 0091_ocr2_relay.sql +2023/08/08 06:04:12 OK 0092_bptxm_tx_checkers.sql +2023/08/08 06:04:12 OK 0093_terra_txm.sql +2023/08/08 06:04:12 OK 0094_blockhash_store_job.sql +2023/08/08 06:04:12 OK 0095_terra_fcd.sql +2023/08/08 06:04:12 OK 0096_create_job_proposal_specs.sql +2023/08/08 06:04:12 OK 0097_bootstrap_spec.sql +2023/08/08 06:04:12 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/08 06:04:12 OK 0099_terra_msgs_created_at.sql +2023/08/08 06:04:12 OK 0100_bootstrap_config.sql +2023/08/08 06:04:12 OK 0101_generic_ocr2.sql +2023/08/08 06:04:12 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/08 06:04:12 OK 0103_terra_msgs_type_url.sql +2023/08/08 06:04:12 OK 0104_terra_cascade_delete.sql +2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql +2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql +2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql +2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql +2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql +2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql +2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql +2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/08 06:04:12 OK 0115_log_poller.sql +2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql +2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql +2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql +2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql +2023/08/08 06:04:12 OK 0121_remove_log_configs.sql +2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql +2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql +2023/08/08 06:04:12 OK 0126_remove_observation_source.sql +2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql +2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql +2023/08/08 06:04:12 OK 0131_add_multi_user.sql +2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql +2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql +2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql +2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql +2023/08/08 06:04:12 OK 0137_remove_tx_index.sql +2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql +2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql +2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql +2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/08 06:04:12 OK 0144_optimize_lp.sql +2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql +2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0148_dkg_shares.sql +2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql +2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql +2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql +2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql +2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql +2023/08/08 06:04:12 OK 0155_remove_terra.sql +2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql +2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql +2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql +2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/08 06:04:12 OK 0164_add_cosmos.sql +2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql +2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql +2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql +2023/08/08 06:04:12 OK 0168_drop_node_tables.sql +2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql +2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql +2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql +2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql +2023/08/08 06:04:12 OK 0174_vrf_owner.sql +2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql +2023/08/08 06:04:12 OK 0176_s4_shared_table.sql +2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql +2023/08/08 06:04:12 OK 0178_drop_access_list.sql +2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql +2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql +2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql +2023/08/08 06:04:12 OK 0183_functions_new_fields.sql +2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql +2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql +2023/08/08 06:04:12 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-08T06:04:12.755Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.755Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.755Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.756Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.756Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.851Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID a870d17d480d27c3e57c0316af2958aec2711e691c9852af0fad235abc43f124 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.851Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:18.955Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 27YxZtHx8JDUshKHTsnSZsZ2N7tofJfJzsiXYuJE3rxe","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:20.942Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 172902078082f6a38cb178086ea98b29322740dbd21979f1b9b25cb9470ba1e0","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.056Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-08T06:04:23.249Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-08T06:04:23.249Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-08T06:04:23.250Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 41323. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":41323} +{"level":"debug","ts":"2023-08-08T06:04:23.251Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":41323,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-08T06:04:23.251Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenAddr":"/ip4/0.0.0.0/tcp/41323","id":"PeerV1","v1peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","v1listenPort":41323,"v1listenIP":"0.0.0.0"} +{"level":"debug","ts":"2023-08-08T06:04:23.251Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:04:23.252Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"saveLoop"} +{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:23.254Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"info","ts":"2023-08-08T06:04:23.254Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.19s","version":"2.4.0@d0c54ea","appID":"707e984b-1030-421b-b739-756da958e822"} +{"level":"debug","ts":"2023-08-08T06:04:23.254Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.255Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.00061673} +{"level":"info","ts":"2023-08-08T06:04:23.261Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-08T06:04:23.266Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010904026} +{"level":"debug","ts":"2023-08-08T06:04:23.266Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:28.253Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:28.468Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:04:29.819Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:29","latency":"1.435475ms"} +{"level":"debug","ts":"2023-08-08T06:04:29.820Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:29","latency":"212.999µs"} +{"level":"debug","ts":"2023-08-08T06:04:33.253Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-08T06:04:33.253Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:34","latency":"94.145µs"} +{"level":"debug","ts":"2023-08-08T06:04:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:34","latency":"108.964µs"} +{"level":"debug","ts":"2023-08-08T06:04:38.254Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:39","latency":"90.495µs"} +{"level":"debug","ts":"2023-08-08T06:04:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:39","latency":"98.469µs"} +{"level":"debug","ts":"2023-08-08T06:04:43.254Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:44","latency":"85.275µs"} +{"level":"debug","ts":"2023-08-08T06:04:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:44","latency":"104.937µs"} +{"level":"debug","ts":"2023-08-08T06:04:48.255Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:49","latency":"89.239µs"} +{"level":"debug","ts":"2023-08-08T06:04:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:49","latency":"97.838µs"} +{"level":"debug","ts":"2023-08-08T06:04:53.255Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:54","latency":"92.546µs"} +{"level":"debug","ts":"2023-08-08T06:04:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:54","latency":"69.759µs"} +{"level":"debug","ts":"2023-08-08T06:04:58.256Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:59","latency":"93.973µs"} +{"level":"debug","ts":"2023-08-08T06:04:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:59","latency":"108.774µs"} +{"level":"debug","ts":"2023-08-08T06:05:00.818Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:05:00.820Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-08T06:05:00.938Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-08T06:05:00.940Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:00","latency":"122.02392ms"} +{"level":"debug","ts":"2023-08-08T06:05:03.256Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:04","latency":"96.075µs"} +{"level":"debug","ts":"2023-08-08T06:05:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:04","latency":"95.479µs"} +{"level":"debug","ts":"2023-08-08T06:05:08.220Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:08","latency":"2.55954ms"} +{"level":"debug","ts":"2023-08-08T06:05:08.257Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:09","latency":"91.167µs"} +{"level":"debug","ts":"2023-08-08T06:05:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:09","latency":"90.692µs"} +{"level":"debug","ts":"2023-08-08T06:05:10.344Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:10","latency":"1.93676563s"} +{"level":"debug","ts":"2023-08-08T06:05:12.662Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:12","latency":"2.131744133s"} +{"level":"debug","ts":"2023-08-08T06:05:13.258Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:05:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:14","latency":"128.145µs"} +{"level":"debug","ts":"2023-08-08T06:05:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:14","latency":"132.896µs"} +{"level":"debug","ts":"2023-08-08T06:05:18.258Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:19","latency":"87.521µs"} +{"level":"debug","ts":"2023-08-08T06:05:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:19","latency":"95.122µs"} +{"level":"debug","ts":"2023-08-08T06:05:23.259Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:24","latency":"86.507µs"} +{"level":"debug","ts":"2023-08-08T06:05:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:24","latency":"83.906µs"} +{"level":"debug","ts":"2023-08-08T06:05:27.333Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"64.561µs"} +{"level":"debug","ts":"2023-08-08T06:05:27.520Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"51.081µs"} +{"level":"debug","ts":"2023-08-08T06:05:28.260Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:29","latency":"94.173µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:29","latency":"68.905µs"} +{"level":"debug","ts":"2023-08-08T06:05:33.260Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:34","latency":"97.653µs"} +{"level":"debug","ts":"2023-08-08T06:05:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:34","latency":"104.129µs"} +{"level":"debug","ts":"2023-08-08T06:05:38.261Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:39","latency":"108.071µs"} +{"level":"debug","ts":"2023-08-08T06:05:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:39","latency":"108.07µs"} +{"level":"debug","ts":"2023-08-08T06:05:43.261Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:44","latency":"90.394µs"} +{"level":"debug","ts":"2023-08-08T06:05:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:44","latency":"104.441µs"} +{"level":"debug","ts":"2023-08-08T06:05:48.262Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:05:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:49","latency":"100.973µs"} +{"level":"debug","ts":"2023-08-08T06:05:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:49","latency":"82.511µs"} +{"level":"debug","ts":"2023-08-08T06:05:53.262Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:54","latency":"84.236µs"} +{"level":"debug","ts":"2023-08-08T06:05:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:54","latency":"98.514µs"} +{"level":"debug","ts":"2023-08-08T06:05:58.263Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:59","latency":"89.845µs"} +{"level":"debug","ts":"2023-08-08T06:05:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:59","latency":"101.452µs"} +{"level":"debug","ts":"2023-08-08T06:06:03.264Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:06:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:04","latency":"88.284µs"} +{"level":"debug","ts":"2023-08-08T06:06:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:04","latency":"89.13µs"} +{"level":"debug","ts":"2023-08-08T06:06:08.264Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:06:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:09","latency":"124.083µs"} +{"level":"debug","ts":"2023-08-08T06:06:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:09","latency":"93.697µs"} +{"level":"debug","ts":"2023-08-08T06:06:13.265Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:06:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:14","latency":"89.521µs"} +{"level":"debug","ts":"2023-08-08T06:06:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:14","latency":"92.92µs"} +{"level":"debug","ts":"2023-08-08T06:06:18.265Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:06:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:19","latency":"89.626µs"} +{"level":"debug","ts":"2023-08-08T06:06:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:19","latency":"88.961µs"} +{"level":"debug","ts":"2023-08-08T06:06:23.265Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:06:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:24","latency":"88.48µs"} +{"level":"debug","ts":"2023-08-08T06:06:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:24","latency":"88.766µs"} +{"level":"debug","ts":"2023-08-08T06:06:28.266Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:29.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:29","latency":"94.019µs"} +{"level":"debug","ts":"2023-08-08T06:06:29.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:29","latency":"94.206µs"} +{"level":"debug","ts":"2023-08-08T06:06:33.266Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:34","latency":"97.061µs"} +{"level":"debug","ts":"2023-08-08T06:06:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:34","latency":"78.194µs"} +{"level":"debug","ts":"2023-08-08T06:06:38.267Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:39","latency":"89.442µs"} +{"level":"debug","ts":"2023-08-08T06:06:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:39","latency":"93.643µs"} +{"level":"debug","ts":"2023-08-08T06:06:43.268Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:44","latency":"88.46µs"} +{"level":"debug","ts":"2023-08-08T06:06:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:44","latency":"97.754µs"} +{"level":"debug","ts":"2023-08-08T06:06:48.269Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:06:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:49","latency":"91.051µs"} +{"level":"debug","ts":"2023-08-08T06:06:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:49","latency":"94.077µs"} +{"level":"debug","ts":"2023-08-08T06:06:53.270Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:54","latency":"84.88µs"} +{"level":"debug","ts":"2023-08-08T06:06:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:54","latency":"83.267µs"} +{"level":"debug","ts":"2023-08-08T06:06:58.270Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:59","latency":"93.165µs"} +{"level":"debug","ts":"2023-08-08T06:06:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:59","latency":"101.276µs"} +{"level":"debug","ts":"2023-08-08T06:07:03.271Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:04","latency":"80.267µs"} +{"level":"debug","ts":"2023-08-08T06:07:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:04","latency":"85.441µs"} +{"level":"debug","ts":"2023-08-08T06:07:08.272Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:09","latency":"88.664µs"} +{"level":"debug","ts":"2023-08-08T06:07:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:09","latency":"85.267µs"} +{"level":"debug","ts":"2023-08-08T06:07:13.272Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:14","latency":"99.741µs"} +{"level":"debug","ts":"2023-08-08T06:07:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:14","latency":"81.771µs"} +{"level":"debug","ts":"2023-08-08T06:07:18.273Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:19","latency":"87.97µs"} +{"level":"debug","ts":"2023-08-08T06:07:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:19","latency":"96.403µs"} +{"level":"debug","ts":"2023-08-08T06:07:23.274Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:07:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:24","latency":"93.178µs"} +{"level":"debug","ts":"2023-08-08T06:07:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:24","latency":"80.638µs"} +{"level":"debug","ts":"2023-08-08T06:07:28.274Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:07:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:29","latency":"89.277µs"} +{"level":"debug","ts":"2023-08-08T06:07:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:29","latency":"92.268µs"} +{"level":"debug","ts":"2023-08-08T06:07:33.275Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:34","latency":"92.769µs"} +{"level":"debug","ts":"2023-08-08T06:07:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:34","latency":"89.838µs"} +{"level":"debug","ts":"2023-08-08T06:07:38.276Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:39","latency":"93.919µs"} +{"level":"debug","ts":"2023-08-08T06:07:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:39","latency":"96.005µs"} +{"level":"debug","ts":"2023-08-08T06:07:43.277Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:44","latency":"101.454µs"} +{"level":"debug","ts":"2023-08-08T06:07:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:44","latency":"103.644µs"} +{"level":"debug","ts":"2023-08-08T06:07:48.277Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:49","latency":"84.012µs"} +{"level":"debug","ts":"2023-08-08T06:07:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:49","latency":"76.936µs"} +{"level":"debug","ts":"2023-08-08T06:07:53.278Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:54","latency":"114.448µs"} +{"level":"debug","ts":"2023-08-08T06:07:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:54","latency":"116.225µs"} +{"level":"debug","ts":"2023-08-08T06:07:58.278Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:07:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:59","latency":"105.483µs"} +{"level":"debug","ts":"2023-08-08T06:07:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:59","latency":"110.953µs"} +{"level":"debug","ts":"2023-08-08T06:08:03.279Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:04","latency":"95.64µs"} +{"level":"debug","ts":"2023-08-08T06:08:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:04","latency":"105.629µs"} +{"level":"debug","ts":"2023-08-08T06:08:08.279Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:09","latency":"92.485µs"} +{"level":"debug","ts":"2023-08-08T06:08:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:09","latency":"94.869µs"} +{"level":"debug","ts":"2023-08-08T06:08:13.279Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:14","latency":"111.118µs"} +{"level":"debug","ts":"2023-08-08T06:08:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:14","latency":"85.167µs"} +{"level":"debug","ts":"2023-08-08T06:08:18.280Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:19","latency":"97.599µs"} +{"level":"debug","ts":"2023-08-08T06:08:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:19","latency":"91.585µs"} +{"level":"debug","ts":"2023-08-08T06:08:23.281Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:24","latency":"91.754µs"} +{"level":"debug","ts":"2023-08-08T06:08:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:24","latency":"96.617µs"} +{"level":"debug","ts":"2023-08-08T06:08:28.281Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:08:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:29","latency":"93.637µs"} +{"level":"debug","ts":"2023-08-08T06:08:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:29","latency":"69.206µs"} +{"level":"debug","ts":"2023-08-08T06:08:33.282Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:34","latency":"103.238µs"} +{"level":"debug","ts":"2023-08-08T06:08:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:34","latency":"94.539µs"} +{"level":"debug","ts":"2023-08-08T06:08:38.282Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:39","latency":"94.973µs"} +{"level":"debug","ts":"2023-08-08T06:08:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:39","latency":"94.621µs"} +{"level":"debug","ts":"2023-08-08T06:08:43.283Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:44","latency":"102.918µs"} +{"level":"debug","ts":"2023-08-08T06:08:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:44","latency":"90.396µs"} +{"level":"debug","ts":"2023-08-08T06:08:48.283Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:08:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:49","latency":"100.17µs"} +{"level":"debug","ts":"2023-08-08T06:08:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:49","latency":"104.722µs"} +{"level":"debug","ts":"2023-08-08T06:08:53.283Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:08:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:54","latency":"93.284µs"} +{"level":"debug","ts":"2023-08-08T06:08:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:54","latency":"107.734µs"} +{"level":"debug","ts":"2023-08-08T06:08:58.284Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:59","latency":"89.136µs"} +{"level":"debug","ts":"2023-08-08T06:08:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:59","latency":"94.732µs"} +{"level":"debug","ts":"2023-08-08T06:09:03.284Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:09:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:04","latency":"110.353µs"} +{"level":"debug","ts":"2023-08-08T06:09:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:04","latency":"88.395µs"} +{"level":"debug","ts":"2023-08-08T06:09:08.285Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:09:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:09","latency":"89.396µs"} +{"level":"debug","ts":"2023-08-08T06:09:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:09","latency":"102.348µs"} +{"level":"debug","ts":"2023-08-08T06:09:13.286Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:14","latency":"101.541µs"} +{"level":"debug","ts":"2023-08-08T06:09:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:14","latency":"151.152µs"} +{"level":"debug","ts":"2023-08-08T06:09:18.287Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:19","latency":"93.077µs"} +{"level":"debug","ts":"2023-08-08T06:09:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:19","latency":"89.909µs"} +{"level":"debug","ts":"2023-08-08T06:09:23.287Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:09:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:24","latency":"80.254µs"} +{"level":"debug","ts":"2023-08-08T06:09:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:24","latency":"118.694µs"} +{"level":"debug","ts":"2023-08-08T06:09:28.288Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:29","latency":"117.046µs"} +{"level":"debug","ts":"2023-08-08T06:09:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:29","latency":"106.858µs"} +{"level":"info","ts":"2023-08-08T06:09:33.254Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","peersUndetected":0,"peersDetected":0,"statusByPeer":"map[]","peersToDetect":0} +{"level":"debug","ts":"2023-08-08T06:09:33.289Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:34","latency":"93.563µs"} +{"level":"debug","ts":"2023-08-08T06:09:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:34","latency":"87.987µs"} +{"level":"debug","ts":"2023-08-08T06:09:38.289Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:39","latency":"92.719µs"} +{"level":"debug","ts":"2023-08-08T06:09:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:39","latency":"80.768µs"} +{"level":"debug","ts":"2023-08-08T06:09:43.289Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:44.395Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:44","latency":"51.951µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.583Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:44","latency":"48.98µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:44","latency":"92.133µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:44","latency":"76.432µs"} +{"level":"debug","ts":"2023-08-08T06:09:48.290Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:49","latency":"90.073µs"} +{"level":"debug","ts":"2023-08-08T06:09:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:49","latency":"82.521µs"} +{"level":"debug","ts":"2023-08-08T06:09:53.290Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:54","latency":"85.717µs"} +{"level":"debug","ts":"2023-08-08T06:09:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:54","latency":"92.667µs"} +{"level":"debug","ts":"2023-08-08T06:09:58.291Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:09:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:59","latency":"85.03µs"} +{"level":"debug","ts":"2023-08-08T06:09:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:59","latency":"89.801µs"} +{"level":"debug","ts":"2023-08-08T06:10:00.397Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:00","latency":"3.792024ms"} +{"level":"info","ts":"2023-08-08T06:10:00.593Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-08T06:10:00.593Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} +{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-08T06:10:00.593Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"info","ts":"2023-08-08T06:10:00.821Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:00.821Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","duration":791} +{"level":"info","ts":"2023-08-08T06:10:00.822Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"info","ts":"2023-08-08T06:10:00.822Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:10:00.822Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"85cbe1814f4b0e50dec35be7664e167bc18079028725437823828a666537f79e\\\" \\n\\ntransmitterID = \\\"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:00","latency":"236.96495ms"} +{"level":"debug","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamName":"ragedisco/v1","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648"} +{"level":"info","ts":"2023-08-08T06:10:00.899Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:00.899Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","numLoaded":1,"peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","numQueried":5,"found":["12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"],"loaded":["12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"],"id":"ragep2p","queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numFound":1} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracleID":1,"bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"c13cad07338483c30d51455ea72a9e75eb919a8103efdab06b8ead473b52bdf4","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312"} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":1,"_id":"OCREndpointV2","id":"PeerV2"} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:10:00.903Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:10:00.903Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","previousNe":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"ne":1} +{"level":"info","ts":"2023-08-08T06:10:00.903Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":1,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:00.973Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:01.718Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:01.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:01.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:02.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:02.732Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:02.808Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:03.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:03.155Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:03.292Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:03.772Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:03.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:04.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:04.191Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"info","ts":"2023-08-08T06:10:04.766Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"out","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remoteAddr":"10.14.25.244:6690"} +{"level":"info","ts":"2023-08-08T06:10:04.767Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:04.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:04","latency":"103.034µs"} +{"level":"debug","ts":"2023-08-08T06:10:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:04","latency":"113.265µs"} +{"level":"debug","ts":"2023-08-08T06:10:04.870Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:04.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:05.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:05.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:05.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:05.978Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:06.098Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:06.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:06.939Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:07.015Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:07.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:07.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:07.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:08.055Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:08.275Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:08.293Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:08.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.079Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.333Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.484Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:09","latency":"98.896µs"} +{"level":"debug","ts":"2023-08-08T06:10:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:09","latency":"95.27µs"} +{"level":"debug","ts":"2023-08-08T06:10:10.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:10.231Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:10.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:10.567Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.232Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:12.182Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:12.258Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:12.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:12.668Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:13.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:13.293Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:13.295Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:13.550Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:13.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.273Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.349Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.569Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:14","latency":"105.384µs"} +{"level":"debug","ts":"2023-08-08T06:10:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:14","latency":"113.311µs"} +{"level":"debug","ts":"2023-08-08T06:10:15.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.371Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.808Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.974Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:10:16.319Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"warn","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:17.431Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.872Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.294Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:18.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.492Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.961Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:19.387Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:19.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.495Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:19","latency":"95.306µs"} +{"level":"debug","ts":"2023-08-08T06:10:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:19","latency":"96.098µs"} +{"level":"debug","ts":"2023-08-08T06:10:19.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.972Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.492Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.832Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.904Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:20.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.574Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.650Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.850Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.581Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.657Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:22.851Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","direction":"out","remoteAddr":"10.14.31.164:6690","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamName":"ragedisco/v1","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648"} +{"level":"debug","ts":"2023-08-08T06:10:22.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.295Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:23.662Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.036Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.742Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:24","latency":"87.814µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:24","latency":"69.747µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.672Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.062Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.767Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.844Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.912Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.879Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.923Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.296Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:28.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.917Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.982Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.134Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:29.389Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-08T06:10:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:29","latency":"85.687µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:29","latency":"109.209µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.923Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.201Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.981Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.050Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:10:31.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:31.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:31.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:31.259Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"out","remoteAddr":"10.14.88.105:6690","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc"} +{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","streamName":"ragedisco/v1","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:31.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.952Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.356Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.296Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:33.443Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:34","latency":"71.33µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:34","latency":"107.244µs"} +{"level":"debug","ts":"2023-08-08T06:10:35.035Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":2,"candidateEpochs":[2,2,2]} +{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","l":4,"e":1,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":1} +{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"leader":2} +{"level":"debug","ts":"2023-08-08T06:10:35.258Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:35.258Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:10:35.261Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.00360552} +{"level":"debug","ts":"2023-08-08T06:10:35.261Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.00368441} +{"level":"debug","ts":"2023-08-08T06:10:35.261Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"leader":2,"round":1,"observation":"CNu4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:35.452Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.604Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.194Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.716Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.239Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.297Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:38.623Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.775Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:39.264Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":1},"initialRound":true,"alphaReportInfinite":false,"result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deltaC":0,"unfulfilledRequest":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":2,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":0,"Round":0}} +{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001400073} +{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001489789} +{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:39.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.636Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:39","latency":"96.167µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:39","latency":"95.972µs"} +{"level":"debug","ts":"2023-08-08T06:10:40.318Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.604Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:10:40.604Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:40.652Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.897Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.382Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.843Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:43.269Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"deviation":true,"unfulfilledRequest":true,"deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","result":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":2},"initialRound":true,"alphaReportInfinite":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":2,"round":2,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001450955} +{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001475804} +{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:43.298Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:43.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.491Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.016Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:44.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}"} +{"level":"debug","ts":"2023-08-08T06:10:44.466Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:44","latency":"95.123µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:44","latency":"86.857µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.093Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.559Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.126Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:10:46.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.618Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.028Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:47.275Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"initialRound":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"result":true,"deltaC":0,"unfulfilledRequest":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":3},"deviation":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"leader":2,"roundMax":3,"round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":3,"sender":1,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":3,"candidateEpochs":[3,3,3]} +{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviates":true,"result":true,"reportEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0}} +{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"leader":2,"e":2,"l":2} +{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:47.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.190Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.298Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:48.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.683Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.281Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.758Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:10:49.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"out","remoteAddr":"10.14.107.222:6690","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312"} +{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d","streamName":"ragedisco/v1","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:49.761Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","msg":{"Epoch":1,"Round":1,"Query":null},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3,"sender":4,"oid":1} +{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001432206} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001441842} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"observation":"COm4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:49.771Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:49","latency":"79.259µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:49","latency":"97.617µs"} +{"level":"debug","ts":"2023-08-08T06:10:50.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.306Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.743Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.819Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.229Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.381Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.782Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.868Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.944Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.299Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:53.319Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.470Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"result":true,"reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":1,"sender":1,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":3,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001414945} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001446569} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.009Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:54","latency":"72.821µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:54","latency":"117.09µs"} +{"level":"debug","ts":"2023-08-08T06:10:55.032Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.049Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.147Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.639Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaC":0,"alphaReportInfinite":false,"initialRound":false,"deviation":true,"deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":3,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001422293} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001458715} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4,"round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:58.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.232Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.299Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:58.505Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.551Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:59","latency":"85.106µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:59","latency":"86.058µs"} +{"level":"debug","ts":"2023-08-08T06:11:00.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.766Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.202Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:11:01.299Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.375Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"deltaCTimeout":true,"unfulfilledRequest":false,"deviation":true,"initialRound":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","alphaReportInfinite":false,"deltaC":0,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":4,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"newEpoch":4,"candidateEpochs":[4,4,4],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4,"e":3} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":4,"leader":0} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:01.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.732Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.300Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:03.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.529Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.792Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.533Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:04","latency":"102.32µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:04","latency":"80.207µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.893Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.044Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.637Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.714Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.980Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.132Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.300Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:08.755Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.260Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:09","latency":"93.78µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:09","latency":"99.767µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.855Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.208Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.360Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.859Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.935Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.227Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.936Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.257Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.913Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.989Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.301Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:13.308Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.075Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.329Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.482Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:14","latency":"99.563µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:14","latency":"151.153µs"} +{"level":"debug","ts":"2023-08-08T06:11:15.073Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.149Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.346Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.278Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:11:16.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.201Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.438Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.302Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:18.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.555Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:19","latency":"88.82µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:19","latency":"91.184µs"} +{"level":"debug","ts":"2023-08-08T06:11:20.260Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.336Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.711Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.288Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.364Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.718Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":4,"leader":0,"e":4,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.00140189} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001393167} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":1,"observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:22.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.750Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.303Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:23.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.627Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.779Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:24","latency":"83.519µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:24","latency":"93.129µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.742Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:25.783Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","initialRound":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","result":true,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"unfulfilledRequest":false,"deltaC":0} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false} +{"level":"info","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":3,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001441697} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001450128} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:25.861Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:25.861Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:25.861Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:11:25.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.937Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"31187237-db3c-49d6-8f86-b2dd23f66eea","signature":"S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"} +{"level":"debug","ts":"2023-08-08T06:11:25.937Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U","id":"31187237-db3c-49d6-8f86-b2dd23f66eea"} +{"level":"debug","ts":"2023-08-08T06:11:26.457Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"31187237-db3c-49d6-8f86-b2dd23f66eea","signature":"S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"} +{"level":"debug","ts":"2023-08-08T06:11:26.457Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"],"id":"31187237-db3c-49d6-8f86-b2dd23f66eea"} +{"level":"debug","ts":"2023-08-08T06:11:26.457Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"31187237-db3c-49d6-8f86-b2dd23f66eea","signatures":["S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"]} +{"level":"debug","ts":"2023-08-08T06:11:26.522Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.598Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.834Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.526Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.872Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.304Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:28.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.266Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":2,"Round":1}} +{"level":"info","ts":"2023-08-08T06:11:29.266Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:29.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true,"initialRound":false,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"result":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z"} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":5,"Round":2},"result":true} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":2,"sender":3,"oid":1} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001466595} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001482208} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:29","latency":"88.281µs"} +{"level":"debug","ts":"2023-08-08T06:11:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:29","latency":"85.101µs"} +{"level":"debug","ts":"2023-08-08T06:11:30.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.716Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.028Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.355Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:11:31.685Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.761Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.259Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.305Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-08T06:11:33.792Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaReportInfinite":false,"unfulfilledRequest":false,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","initialRound":false,"alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","messageRound":4,"roundMax":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"round":3,"sender":1,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"result":true,"reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3,"sender":4} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":3,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":6,"candidateEpochs":[6,6,6]} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","e":5,"l":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":6,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:11:33.805Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.870Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:33.870Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":3,"epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:33.881Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.946Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"4cf1236f-7b58-425f-8102-be4685b29874","signature":"3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r"} +{"level":"debug","ts":"2023-08-08T06:11:33.946Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r","id":"4cf1236f-7b58-425f-8102-be4685b29874"} +{"level":"debug","ts":"2023-08-08T06:11:34.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.382Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"4cf1236f-7b58-425f-8102-be4685b29874","signature":"3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r"} +{"level":"debug","ts":"2023-08-08T06:11:34.382Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"4cf1236f-7b58-425f-8102-be4685b29874","signatures":["3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r"]} +{"level":"debug","ts":"2023-08-08T06:11:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:34","latency":"105.233µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:34","latency":"108.59µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.842Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.918Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.884Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.308Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.886Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.962Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.278Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":3}} +{"level":"info","ts":"2023-08-08T06:11:37.278Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:37.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.560Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.952Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.305Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:38.478Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.014Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.577Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:39","latency":"93.846µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:39","latency":"94.901µs"} +{"level":"debug","ts":"2023-08-08T06:11:40.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.119Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.808Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.063Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.139Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.307Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:43.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.904Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.370Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:44","latency":"87.706µs"} +{"level":"debug","ts":"2023-08-08T06:11:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:44","latency":"92.404µs"} +{"level":"debug","ts":"2023-08-08T06:11:44.828Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.431Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:11:46.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.109Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.308Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:48.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.576Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.086Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.529Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:49","latency":"90.439µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:49","latency":"92.55µs"} +{"level":"debug","ts":"2023-08-08T06:11:50.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.559Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.221Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.372Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.596Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.672Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.309Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:53.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.476Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.700Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":6,"leader":0,"e":6,"l":0} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:54.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.506Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:54","latency":"91.143µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:54","latency":"98.758µs"} +{"level":"debug","ts":"2023-08-08T06:11:55.440Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.592Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.835Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.641Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.845Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.646Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.898Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.309Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:58.582Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.652Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:59","latency":"90.128µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:59","latency":"77.203µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.677Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.044Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.510Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:12:01.718Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.041Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.117Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.873Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.076Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.311Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:03.796Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:04","latency":"89.875µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:04","latency":"101.514µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.011Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.248Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.324Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.186Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.228Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.311Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:08.383Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.285Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.335Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.411Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:09","latency":"86.849µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:09","latency":"93.434µs"} +{"level":"debug","ts":"2023-08-08T06:12:10.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.398Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.538Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.312Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:13.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.703Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":7,"leader":0,"e":7,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001419408} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001445463} +{"level":"debug","ts":"2023-08-08T06:12:13.800Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2,"round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:14.406Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.648Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:14","latency":"86.497µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:14","latency":"90.203µs"} +{"level":"debug","ts":"2023-08-08T06:12:15.464Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.586Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:12:16.694Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.797Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.873Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.622Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.773Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaC":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"result":true,"initialRound":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"round":1,"leader":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","contractEpochRound":{"Epoch":5,"Round":3},"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001495487} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001431931} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2,"round":2,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:17.854Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.313Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:18.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.027Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:19","latency":"89.455µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:19","latency":"90.102µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.913Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.055Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.070Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","deltaCTimeout":true,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviation":true,"result":true,"unfulfilledRequest":false,"initialRound":false,"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"leader":2,"round":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":8,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":2},"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":8,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001449479} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001477578} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.959Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.032Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.885Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.037Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.271Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":2}} +{"level":"info","ts":"2023-08-08T06:12:23.271Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:23.314Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:23.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.093Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.168Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:24","latency":"83.361µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:24","latency":"95.152µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.965Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.117Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.168Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.244Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviation":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"result":true,"initialRound":false,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z"} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":4,"messageRound":4,"roundMax":3,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":8,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":8,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":9,"candidateEpochs":[9,9,9]} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}}} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","e":8,"l":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":3},"latestAcceptedEpochRound":{"Epoch":8,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"sender":3,"epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"leader":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001374042} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001438372} +{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"oid":1,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:25.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.139Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.044Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.195Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.382Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.314Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:28.384Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.148Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.300Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.470Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","alphaReportInfinite":false,"initialRound":false,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","unfulfilledRequest":false,"alphaReportPPB":0,"deltaC":0,"result":true,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:29","latency":"97.523µs"} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:29","latency":"84.16µs"} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportEpochRound":{"Epoch":9,"Round":1},"latestAcceptedEpochRound":{"Epoch":8,"Round":3},"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"info","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":1,"sender":4,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001574989} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001733099} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"leader":3,"epoch":9,"round":2,"observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:29.893Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:29.894Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:29.969Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"74e6b976-d149-44a2-a869-e275e4250a68","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"} +{"level":"debug","ts":"2023-08-08T06:12:29.969Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK","id":"74e6b976-d149-44a2-a869-e275e4250a68"} +{"level":"debug","ts":"2023-08-08T06:12:30.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.407Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.476Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"} +{"level":"debug","ts":"2023-08-08T06:12:30.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.089Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"74e6b976-d149-44a2-a869-e275e4250a68","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"} +{"level":"debug","ts":"2023-08-08T06:12:31.089Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"74e6b976-d149-44a2-a869-e275e4250a68","signatures":["5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"]} +{"level":"debug","ts":"2023-08-08T06:12:31.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.496Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.662Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:12:32.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.509Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.585Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.315Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:33.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.554Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.630Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.769Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"info","ts":"2023-08-08T06:12:33.769Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"result":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","deviation":true,"unfulfilledRequest":false,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2},"initialRound":false,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"oid":1,"leader":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"epoch":9,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001474054} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001457975} +{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":3,"round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:34.352Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.590Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:34","latency":"96.735µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:34","latency":"78.986µs"} +{"level":"debug","ts":"2023-08-08T06:12:35.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.688Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.764Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.631Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.830Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.774Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:37.774Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"info","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"result":true,"alphaReportInfinite":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"leader":3,"epoch":9,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"leader":3,"round":4,"messageRound":4,"roundMax":3,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"info","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"e":9,"l":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3} +{"level":"info","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001339356} +{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.00138882} +{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"leader":2,"round":1,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:37.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.316Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:38.576Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.727Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.850Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.654Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:39","latency":"92.944µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:39","latency":"86.475µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.875Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.734Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.886Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.928Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.004Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.779Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":3,"Round":3}} +{"level":"info","ts":"2023-08-08T06:12:41.779Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1},"deviation":true,"deltaC":0,"unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"deltaCTimeout":true,"initialRound":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":1,"sender":3} +{"level":"info","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001431475} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001451935} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"leader":2,"round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:41.907Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.909Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:41.909Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.985Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"} +{"level":"debug","ts":"2023-08-08T06:12:41.985Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e"} +{"level":"debug","ts":"2023-08-08T06:12:42.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.120Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.229Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"} +{"level":"debug","ts":"2023-08-08T06:12:42.810Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.835Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"} +{"level":"debug","ts":"2023-08-08T06:12:42.835Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e","signatures":["4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"]} +{"level":"debug","ts":"2023-08-08T06:12:42.962Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.099Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.317Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:43.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.116Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.192Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:44","latency":"90.999µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:44","latency":"85.078µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.938Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.147Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","initialRound":false,"deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":false,"result":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"contractEpochRound":{"Epoch":10,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":1}} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":1,"epoch":10,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001454371} +{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001425493} +{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"leader":2,"round":3,"observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:45.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.102Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.738Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"debug","ts":"2023-08-08T06:12:46.960Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.222Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.298Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.296Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.318Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:48.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.059Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:49","latency":"75.599µs"} +{"level":"debug","ts":"2023-08-08T06:12:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:49","latency":"89.514µs"} +{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"result":true,"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","deltaC":0,"deviation":true,"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"leader":2,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":3,"epoch":10,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","latestAcceptedEpochRound":{"Epoch":10,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"reportEpochRound":{"Epoch":10,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":10,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":11,"candidateEpochs":[11,11,11]} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2,"e":10,"l":2} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001418014} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001659404} +{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"oid":1} +{"level":"debug","ts":"2023-08-08T06:12:50.103Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.444Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.305Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.444Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.334Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.484Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.214Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.318Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:53.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","initialRound":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"deltaCTimeout":true,"deviation":true,"deltaC":0,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","reportingPlugin":"NumericalMedian","unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":11,"leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":1,"epoch":11,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":11,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":3},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":11,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.00143306} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001494889} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2} +{"level":"debug","ts":"2023-08-08T06:12:54.216Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.613Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:54","latency":"94.085µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:54","latency":"95.186µs"} +{"level":"debug","ts":"2023-08-08T06:12:55.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.616Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.692Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.336Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.697Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.773Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:57.852Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaC":0,"deltaCTimeout":true,"unfulfilledRequest":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"alphaReportInfinite":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","result":true} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":11,"Round":2},"latestAcceptedEpochRound":{"Epoch":11,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":3,"epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001448091} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001415177} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":2,"round":3,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:58.319Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:58.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.782Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.385Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:59","latency":"94.017µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:59","latency":"69.25µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.917Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.444Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.911Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.814Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} +{"level":"info","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"result":true,"deviation":true,"deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","deltaCTimeout":true,"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":3,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":11,"leader":2,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"sender":3,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"latestAcceptedEpochRound":{"Epoch":11,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":12,"candidateEpochs":[12,12,12]} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"sender":1,"epoch":11,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":3} +{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":11,"l":2} +{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":12,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.520Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.671Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.320Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:13:03.588Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.740Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.052Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.128Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:04","latency":"105.921µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:04","latency":"105.799µs"} +{"level":"debug","ts":"2023-08-08T06:13:05.145Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.221Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.257Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.727Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.878Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.296Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.762Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.272Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.321Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:13:08.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.773Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.360Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.788Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:09","latency":"89.954µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:09","latency":"89.952µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.441Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.517Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.472Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log new file mode 100644 index 000000000..4deb47c36 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-08 06:04:07.742 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:07.759 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC +2023-08-08 06:04:07.763 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-08 06:04:08.452 UTC [48] LOG: received fast shutdown request +.2023-08-08 06:04:08.456 UTC [48] LOG: aborting any active transactions +2023-08-08 06:04:08.458 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-08 06:04:08.458 UTC [50] LOG: shutting down +2023-08-08 06:04:08.547 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-08 06:04:08.561 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-08 06:04:08.561 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-08 06:04:08.564 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:08.635 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC +2023-08-08 06:04:08.640 UTC [1] LOG: database system is ready to accept connections +2023-08-08 06:04:09.950 UTC [92] FATAL: role "chainlink" does not exist +2023-08-08 06:04:10.852 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-08 06:04:10.852 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-08 06:04:10.852 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-08 06:04:10.852 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-08 06:04:10.853 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-08 06:04:10.853 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log new file mode 100644 index 000000000..086382e92 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log @@ -0,0 +1,1771 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-08T06:04:10.838Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.838Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.839Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:10.839Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-08T06:04:10.844Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.844Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.844Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"1832bc37-326d-4656-b1ee-80dfbc6c1d72"} +{"level":"debug","ts":"2023-08-08T06:04:10.849Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"1832bc37-326d-4656-b1ee-80dfbc6c1d72"} +{"level":"debug","ts":"2023-08-08T06:04:10.852Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/08 06:04:11 OK 0001_initial.sql +2023/08/08 06:04:11 OK 0002_gormv2.sql +2023/08/08 06:04:11 OK 0003_eth_logs_table.sql +2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql +2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql +2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql +2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/08 06:04:11 OK 0010_bridge_fk.sql +2023/08/08 06:04:11 OK 0011_latest_round_requested.sql +2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql +2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql +2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql +2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql +2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/08 06:04:11 OK 0018_add_node_version_table.sql +2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/08 06:04:11 OK 0020_remove_result_task.sql +2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql +2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql +2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql +2023/08/08 06:04:11 OK 0025_create_log_config_table.sql +2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql +2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/08 06:04:11 OK 0028_vrf_v2.sql +2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql +2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql +2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql +2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql +2023/08/08 06:04:11 OK 0036_external_job_id.go +2023/08/08 06:04:11 OK 0037_cascade_deletes.sql +2023/08/08 06:04:11 OK 0038_create_csa_keys.sql +2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql +2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql +2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql +2023/08/08 06:04:11 OK 0042_create_job_proposals.sql +2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql +2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go +2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/08 06:04:11 OK 0056_multichain.go +2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql +2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/08 06:04:11 OK 0060_combine_keys_tables.sql +2023/08/08 06:04:11 OK 0061_multichain_relations.sql +2023/08/08 06:04:11 OK 0062_upgrade_keepers.sql +2023/08/08 06:04:11 OK 0063_add_job_proposal_timestamp.sql +2023/08/08 06:04:11 OK 0064_cascade_delete_chain_nodes.sql +2023/08/08 06:04:11 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/08 06:04:11 OK 0066_update_job_proposal_status.sql +2023/08/08 06:04:11 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/08 06:04:11 OK 0068_eth_tx_from_address_idx.sql +2023/08/08 06:04:11 OK 0069_remove_unused_columns.sql +2023/08/08 06:04:11 OK 0070_dynamic_fee_txes.sql +2023/08/08 06:04:11 OK 0071_allow_null_json_serializable.sql +2023/08/08 06:04:11 OK 0072_drop_unused_tables.sql +2023/08/08 06:04:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/08 06:04:11 OK 0074_simulation_eth_tx.sql +2023/08/08 06:04:11 OK 0075_unique_job_names.sql +2023/08/08 06:04:11 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/08 06:04:11 OK 0077_add_webauthn_table.sql +2023/08/08 06:04:11 OK 0078_only_one_version.sql +2023/08/08 06:04:11 OK 0079_vrf_v2_fields.sql +2023/08/08 06:04:11 OK 0080_drop_unused_cols.sql +2023/08/08 06:04:11 OK 0081_unconsumed_log_broadcasts.sql +2023/08/08 06:04:11 OK 0082_lease_lock.sql +2023/08/08 06:04:11 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/08 06:04:11 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/08 06:04:11 OK 0085_requested_confs_delay.sql +2023/08/08 06:04:11 OK 0086_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0087_ocr2_tables.sql +2023/08/08 06:04:12 OK 0088_vrfv2_request_timeout.sql +2023/08/08 06:04:12 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/08 06:04:12 OK 0090_ocr_new_timeouts.sql +2023/08/08 06:04:12 OK 0091_ocr2_relay.sql +2023/08/08 06:04:12 OK 0092_bptxm_tx_checkers.sql +2023/08/08 06:04:12 OK 0093_terra_txm.sql +2023/08/08 06:04:12 OK 0094_blockhash_store_job.sql +2023/08/08 06:04:12 OK 0095_terra_fcd.sql +2023/08/08 06:04:12 OK 0096_create_job_proposal_specs.sql +2023/08/08 06:04:12 OK 0097_bootstrap_spec.sql +2023/08/08 06:04:12 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/08 06:04:12 OK 0099_terra_msgs_created_at.sql +2023/08/08 06:04:12 OK 0100_bootstrap_config.sql +2023/08/08 06:04:12 OK 0101_generic_ocr2.sql +2023/08/08 06:04:12 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/08 06:04:12 OK 0103_terra_msgs_type_url.sql +2023/08/08 06:04:12 OK 0104_terra_cascade_delete.sql +2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql +2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql +2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql +2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql +2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql +2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql +2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql +2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/08 06:04:12 OK 0115_log_poller.sql +2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql +2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql +2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql +2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql +2023/08/08 06:04:12 OK 0121_remove_log_configs.sql +2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql +2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql +2023/08/08 06:04:12 OK 0126_remove_observation_source.sql +2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql +2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql +2023/08/08 06:04:12 OK 0131_add_multi_user.sql +2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql +2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql +2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql +2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql +2023/08/08 06:04:12 OK 0137_remove_tx_index.sql +2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql +2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql +2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql +2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/08 06:04:12 OK 0144_optimize_lp.sql +2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql +2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0148_dkg_shares.sql +2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql +2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql +2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql +2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql +2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql +2023/08/08 06:04:12 OK 0155_remove_terra.sql +2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql +2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql +2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql +2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/08 06:04:12 OK 0164_add_cosmos.sql +2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql +2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql +2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql +2023/08/08 06:04:12 OK 0168_drop_node_tables.sql +2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql +2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql +2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql +2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql +2023/08/08 06:04:12 OK 0174_vrf_owner.sql +2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql +2023/08/08 06:04:12 OK 0176_s4_shared_table.sql +2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql +2023/08/08 06:04:12 OK 0178_drop_access_list.sql +2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql +2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql +2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql +2023/08/08 06:04:12 OK 0183_functions_new_fields.sql +2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql +2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql +2023/08/08 06:04:12 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.937Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 66afacf79e315b1637d4903499d545519c490bb30af4069b49a4d33dd34d6e17 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.937Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:19.148Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID CNuNAqyQMGDp2usB6y1EN7JyY2hcsmVuFrBW9MCmX1LP","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:21.164Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID a4305c8f170b361bf0338420acfd5e17ffdc187cad1f96c16aa2a45e467a2ef1","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.444Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.637Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.638Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-08T06:04:23.638Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-08T06:04:23.638Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-08T06:04:23.638Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-08T06:04:23.639Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 40979. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":40979} +{"level":"debug","ts":"2023-08-08T06:04:23.639Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":40979,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-08T06:04:23.640Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenPort":40979,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/40979","id":"PeerV1","v1peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:04:23.640Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}"} +{"level":"info","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:04:23.641Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"recvLoop"} +{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:04:23.643Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-08T06:04:23.643Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.643Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.61s","version":"2.4.0@d0c54ea","appID":"1832bc37-326d-4656-b1ee-80dfbc6c1d72"} +{"level":"debug","ts":"2023-08-08T06:04:23.643Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000634686} +{"level":"info","ts":"2023-08-08T06:04:23.651Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-08T06:04:23.654Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010938048} +{"level":"debug","ts":"2023-08-08T06:04:23.654Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.782Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.832824ms"} +{"level":"debug","ts":"2023-08-08T06:04:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:24","latency":"244.996µs"} +{"level":"debug","ts":"2023-08-08T06:04:28.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:29.102Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:04:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:29","latency":"76.589µs"} +{"level":"debug","ts":"2023-08-08T06:04:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:29","latency":"109.335µs"} +{"level":"info","ts":"2023-08-08T06:04:33.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-08T06:04:33.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:34","latency":"96.983µs"} +{"level":"debug","ts":"2023-08-08T06:04:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:34","latency":"103.204µs"} +{"level":"debug","ts":"2023-08-08T06:04:38.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:39","latency":"102.336µs"} +{"level":"debug","ts":"2023-08-08T06:04:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:39","latency":"108.327µs"} +{"level":"debug","ts":"2023-08-08T06:04:43.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:44","latency":"99.687µs"} +{"level":"debug","ts":"2023-08-08T06:04:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:44","latency":"83.158µs"} +{"level":"debug","ts":"2023-08-08T06:04:48.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:49","latency":"92.671µs"} +{"level":"debug","ts":"2023-08-08T06:04:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:49","latency":"101.228µs"} +{"level":"debug","ts":"2023-08-08T06:04:53.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:04:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:54","latency":"92.566µs"} +{"level":"debug","ts":"2023-08-08T06:04:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:54","latency":"87.896µs"} +{"level":"debug","ts":"2023-08-08T06:04:58.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:59","latency":"96.29µs"} +{"level":"debug","ts":"2023-08-08T06:04:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:59","latency":"97.533µs"} +{"level":"debug","ts":"2023-08-08T06:05:01.529Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:05:01.530Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-08T06:05:01.655Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-08T06:05:01.657Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:01","latency":"128.086719ms"} +{"level":"debug","ts":"2023-08-08T06:05:03.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:05:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:04","latency":"81.035µs"} +{"level":"debug","ts":"2023-08-08T06:05:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:04","latency":"98.793µs"} +{"level":"debug","ts":"2023-08-08T06:05:08.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:09","latency":"90.255µs"} +{"level":"debug","ts":"2023-08-08T06:05:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:09","latency":"91.089µs"} +{"level":"debug","ts":"2023-08-08T06:05:12.857Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:12","latency":"4.390833ms"} +{"level":"debug","ts":"2023-08-08T06:05:13.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:05:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:14","latency":"113.141µs"} +{"level":"debug","ts":"2023-08-08T06:05:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:14","latency":"113.144µs"} +{"level":"debug","ts":"2023-08-08T06:05:15.060Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:15","latency":"2.009696173s"} +{"level":"debug","ts":"2023-08-08T06:05:17.540Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:17","latency":"2.28585583s"} +{"level":"debug","ts":"2023-08-08T06:05:18.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:19","latency":"88.949µs"} +{"level":"debug","ts":"2023-08-08T06:05:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:19","latency":"81.963µs"} +{"level":"debug","ts":"2023-08-08T06:05:23.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:05:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:24","latency":"113.8µs"} +{"level":"debug","ts":"2023-08-08T06:05:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:24","latency":"113.804µs"} +{"level":"debug","ts":"2023-08-08T06:05:27.712Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"86.268µs"} +{"level":"debug","ts":"2023-08-08T06:05:27.905Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"48.84µs"} +{"level":"debug","ts":"2023-08-08T06:05:28.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:29","latency":"96.075µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:29","latency":"76.707µs"} +{"level":"debug","ts":"2023-08-08T06:05:33.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:05:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:34","latency":"96.953µs"} +{"level":"debug","ts":"2023-08-08T06:05:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:34","latency":"91.565µs"} +{"level":"debug","ts":"2023-08-08T06:05:38.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:39","latency":"92.756µs"} +{"level":"debug","ts":"2023-08-08T06:05:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:39","latency":"76.548µs"} +{"level":"debug","ts":"2023-08-08T06:05:43.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:44","latency":"98.35µs"} +{"level":"debug","ts":"2023-08-08T06:05:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:44","latency":"106.571µs"} +{"level":"debug","ts":"2023-08-08T06:05:48.651Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:49","latency":"96.219µs"} +{"level":"debug","ts":"2023-08-08T06:05:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:49","latency":"93.801µs"} +{"level":"debug","ts":"2023-08-08T06:05:53.651Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:54","latency":"102.144µs"} +{"level":"debug","ts":"2023-08-08T06:05:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:54","latency":"137.484µs"} +{"level":"debug","ts":"2023-08-08T06:05:58.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:59","latency":"88.696µs"} +{"level":"debug","ts":"2023-08-08T06:05:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:59","latency":"96.092µs"} +{"level":"debug","ts":"2023-08-08T06:06:03.653Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:04","latency":"110.993µs"} +{"level":"debug","ts":"2023-08-08T06:06:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:04","latency":"111.001µs"} +{"level":"debug","ts":"2023-08-08T06:06:08.653Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:06:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:09","latency":"94.461µs"} +{"level":"debug","ts":"2023-08-08T06:06:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:09","latency":"108.225µs"} +{"level":"debug","ts":"2023-08-08T06:06:13.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:06:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:14","latency":"90.423µs"} +{"level":"debug","ts":"2023-08-08T06:06:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:14","latency":"78.381µs"} +{"level":"debug","ts":"2023-08-08T06:06:18.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:19","latency":"91.783µs"} +{"level":"debug","ts":"2023-08-08T06:06:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:19","latency":"90.34µs"} +{"level":"debug","ts":"2023-08-08T06:06:23.655Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:24","latency":"94.271µs"} +{"level":"debug","ts":"2023-08-08T06:06:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:24","latency":"91.227µs"} +{"level":"debug","ts":"2023-08-08T06:06:28.656Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:29","latency":"91.225µs"} +{"level":"debug","ts":"2023-08-08T06:06:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:29","latency":"90.684µs"} +{"level":"debug","ts":"2023-08-08T06:06:33.657Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:34","latency":"94.42µs"} +{"level":"debug","ts":"2023-08-08T06:06:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:34","latency":"77.297µs"} +{"level":"debug","ts":"2023-08-08T06:06:38.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:39","latency":"94.385µs"} +{"level":"debug","ts":"2023-08-08T06:06:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:39","latency":"84.199µs"} +{"level":"debug","ts":"2023-08-08T06:06:43.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:44","latency":"88.106µs"} +{"level":"debug","ts":"2023-08-08T06:06:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:44","latency":"100.308µs"} +{"level":"debug","ts":"2023-08-08T06:06:48.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:49","latency":"88.542µs"} +{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:49","latency":"94.451µs"} +{"level":"debug","ts":"2023-08-08T06:06:53.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:54","latency":"84.801µs"} +{"level":"debug","ts":"2023-08-08T06:06:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:54","latency":"89.558µs"} +{"level":"debug","ts":"2023-08-08T06:06:58.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:59","latency":"97.96µs"} +{"level":"debug","ts":"2023-08-08T06:06:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:59","latency":"101.789µs"} +{"level":"debug","ts":"2023-08-08T06:07:03.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:04","latency":"89.406µs"} +{"level":"debug","ts":"2023-08-08T06:07:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:04","latency":"92.52µs"} +{"level":"debug","ts":"2023-08-08T06:07:08.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:09","latency":"107.931µs"} +{"level":"debug","ts":"2023-08-08T06:07:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:09","latency":"79.064µs"} +{"level":"debug","ts":"2023-08-08T06:07:13.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:07:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:14","latency":"94.459µs"} +{"level":"debug","ts":"2023-08-08T06:07:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:14","latency":"91.378µs"} +{"level":"debug","ts":"2023-08-08T06:07:18.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:07:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:19","latency":"95.527µs"} +{"level":"debug","ts":"2023-08-08T06:07:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:19","latency":"98.988µs"} +{"level":"debug","ts":"2023-08-08T06:07:23.665Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:24","latency":"94.412µs"} +{"level":"debug","ts":"2023-08-08T06:07:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:24","latency":"94.051µs"} +{"level":"debug","ts":"2023-08-08T06:07:28.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:29","latency":"92.725µs"} +{"level":"debug","ts":"2023-08-08T06:07:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:29","latency":"91.207µs"} +{"level":"debug","ts":"2023-08-08T06:07:33.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:34","latency":"106.899µs"} +{"level":"debug","ts":"2023-08-08T06:07:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:34","latency":"108.526µs"} +{"level":"debug","ts":"2023-08-08T06:07:38.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:39","latency":"93.913µs"} +{"level":"debug","ts":"2023-08-08T06:07:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:39","latency":"97.246µs"} +{"level":"debug","ts":"2023-08-08T06:07:43.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:44","latency":"94.627µs"} +{"level":"debug","ts":"2023-08-08T06:07:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:44","latency":"87.317µs"} +{"level":"debug","ts":"2023-08-08T06:07:48.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:49","latency":"85.922µs"} +{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:49","latency":"113.722µs"} +{"level":"debug","ts":"2023-08-08T06:07:53.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:54","latency":"101.385µs"} +{"level":"debug","ts":"2023-08-08T06:07:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:54","latency":"98.375µs"} +{"level":"debug","ts":"2023-08-08T06:07:58.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:59","latency":"112.742µs"} +{"level":"debug","ts":"2023-08-08T06:07:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:59","latency":"73.923µs"} +{"level":"debug","ts":"2023-08-08T06:08:03.670Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:04","latency":"96.542µs"} +{"level":"debug","ts":"2023-08-08T06:08:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:04","latency":"84.275µs"} +{"level":"debug","ts":"2023-08-08T06:08:08.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:09","latency":"80.196µs"} +{"level":"debug","ts":"2023-08-08T06:08:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:09","latency":"91.744µs"} +{"level":"debug","ts":"2023-08-08T06:08:13.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:14","latency":"107.941µs"} +{"level":"debug","ts":"2023-08-08T06:08:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:14","latency":"104.339µs"} +{"level":"debug","ts":"2023-08-08T06:08:18.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:19","latency":"98.212µs"} +{"level":"debug","ts":"2023-08-08T06:08:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:19","latency":"85.661µs"} +{"level":"debug","ts":"2023-08-08T06:08:23.672Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:24","latency":"106.062µs"} +{"level":"debug","ts":"2023-08-08T06:08:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:24","latency":"93.436µs"} +{"level":"debug","ts":"2023-08-08T06:08:28.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:29","latency":"101.893µs"} +{"level":"debug","ts":"2023-08-08T06:08:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:29","latency":"82.966µs"} +{"level":"debug","ts":"2023-08-08T06:08:33.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:34","latency":"87.507µs"} +{"level":"debug","ts":"2023-08-08T06:08:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:34","latency":"82.845µs"} +{"level":"debug","ts":"2023-08-08T06:08:38.674Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:08:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:39","latency":"75.373µs"} +{"level":"debug","ts":"2023-08-08T06:08:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:39","latency":"111.768µs"} +{"level":"debug","ts":"2023-08-08T06:08:43.674Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:44","latency":"88.444µs"} +{"level":"debug","ts":"2023-08-08T06:08:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:44","latency":"119.728µs"} +{"level":"debug","ts":"2023-08-08T06:08:48.675Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:08:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:49","latency":"101.451µs"} +{"level":"debug","ts":"2023-08-08T06:08:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:49","latency":"95.169µs"} +{"level":"debug","ts":"2023-08-08T06:08:53.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:54","latency":"91.167µs"} +{"level":"debug","ts":"2023-08-08T06:08:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:54","latency":"97.949µs"} +{"level":"debug","ts":"2023-08-08T06:08:58.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:59","latency":"89.269µs"} +{"level":"debug","ts":"2023-08-08T06:08:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:59","latency":"101.14µs"} +{"level":"debug","ts":"2023-08-08T06:09:03.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:04","latency":"113.889µs"} +{"level":"debug","ts":"2023-08-08T06:09:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:04","latency":"88.259µs"} +{"level":"debug","ts":"2023-08-08T06:09:08.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:09","latency":"95.016µs"} +{"level":"debug","ts":"2023-08-08T06:09:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:09","latency":"109.982µs"} +{"level":"debug","ts":"2023-08-08T06:09:13.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:14","latency":"104.97µs"} +{"level":"debug","ts":"2023-08-08T06:09:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:14","latency":"108.976µs"} +{"level":"debug","ts":"2023-08-08T06:09:18.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:19","latency":"97.337µs"} +{"level":"debug","ts":"2023-08-08T06:09:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:19","latency":"81.077µs"} +{"level":"debug","ts":"2023-08-08T06:09:23.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:24","latency":"94.149µs"} +{"level":"debug","ts":"2023-08-08T06:09:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:24","latency":"99.328µs"} +{"level":"debug","ts":"2023-08-08T06:09:28.680Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:29","latency":"93.031µs"} +{"level":"debug","ts":"2023-08-08T06:09:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:29","latency":"79.738µs"} +{"level":"info","ts":"2023-08-08T06:09:33.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0} +{"level":"debug","ts":"2023-08-08T06:09:33.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:09:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:34","latency":"91.203µs"} +{"level":"debug","ts":"2023-08-08T06:09:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:34","latency":"113.921µs"} +{"level":"debug","ts":"2023-08-08T06:09:38.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:39","latency":"93.3µs"} +{"level":"debug","ts":"2023-08-08T06:09:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:39","latency":"94.839µs"} +{"level":"debug","ts":"2023-08-08T06:09:43.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:44","latency":"76.767µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:44","latency":"98.407µs"} +{"level":"debug","ts":"2023-08-08T06:09:45.167Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:45","latency":"52.081µs"} +{"level":"debug","ts":"2023-08-08T06:09:45.358Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:45","latency":"44.021µs"} +{"level":"debug","ts":"2023-08-08T06:09:48.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:49","latency":"96.853µs"} +{"level":"debug","ts":"2023-08-08T06:09:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:49","latency":"72.288µs"} +{"level":"debug","ts":"2023-08-08T06:09:53.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:54","latency":"100.309µs"} +{"level":"debug","ts":"2023-08-08T06:09:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:54","latency":"103.065µs"} +{"level":"debug","ts":"2023-08-08T06:09:58.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:59","latency":"89.787µs"} +{"level":"debug","ts":"2023-08-08T06:09:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:59","latency":"96.195µs"} +{"level":"debug","ts":"2023-08-08T06:10:03.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:04","latency":"103.492µs"} +{"level":"debug","ts":"2023-08-08T06:10:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:04","latency":"102.944µs"} +{"level":"debug","ts":"2023-08-08T06:10:08.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:09","latency":"88.976µs"} +{"level":"debug","ts":"2023-08-08T06:10:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:09","latency":"114.116µs"} +{"level":"debug","ts":"2023-08-08T06:10:13.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:13.715Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:13","latency":"4.206547ms"} +{"level":"info","ts":"2023-08-08T06:10:13.913Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-08T06:10:13.914Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} +{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-08T06:10:13.914Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"info","ts":"2023-08-08T06:10:14.415Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:14.415Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","duration":677} +{"level":"info","ts":"2023-08-08T06:10:14.416Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"info","ts":"2023-08-08T06:10:14.416Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:10:14.416Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"b0da7a9f100312d199eeeed51d52f3271aed88bf0d43389da5054e83430d978d\\\" \\n\\ntransmitterID = \\\"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:14","latency":"509.451254ms"} +{"level":"debug","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","streamName":"ragedisco/v1","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","numLoaded":1,"queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","numQueried":5,"found":["12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"],"numFound":1,"loaded":["12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"]} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracleID":3,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"PeerV2","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"12be81b0114210ff3bb57798f8a7764472ec5c548095a6b86263cd61e3a29f8c"} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":3} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:14.588Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"info","ts":"2023-08-08T06:10:14.588Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"previousNe":0,"ne":1} +{"level":"info","ts":"2023-08-08T06:10:14.588Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":1,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:14.748Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:14","latency":"92.08µs"} +{"level":"debug","ts":"2023-08-08T06:10:14.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:14","latency":"104.72µs"} +{"level":"debug","ts":"2023-08-08T06:10:15.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:15.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.102Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.270Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:16.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.360Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.603Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:17.755Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:17.755Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:17.755Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","direction":"out","remoteAddr":"10.14.25.244:6690","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-08T06:10:17.759Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-08T06:10:17.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.671Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:18.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:19.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.318Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:19","latency":"92.254µs"} +{"level":"debug","ts":"2023-08-08T06:10:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:19","latency":"72.126µs"} +{"level":"debug","ts":"2023-08-08T06:10:20.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.570Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:20.731Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.065Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:21.741Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.645Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:22.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:22.851Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","direction":"in","remoteAddr":"10.14.53.196:39750","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1"} +{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-08T06:10:23.144Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.487Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.654Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:23.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:23.847Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.181Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.712Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:24","latency":"87.843µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:24","latency":"94.008µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.253Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.613Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.780Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:25.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.309Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:26.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"warn","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:27.674Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:28.758Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:29.388Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:29.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.749Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:10:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:29","latency":"87.232µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:29","latency":"98.205µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.782Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.496Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.869Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.533Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.910Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.291Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.624Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.990Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.305Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:34.039Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.205Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.588Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:10:34.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:34","latency":"111.368µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:34","latency":"72.537µs"} +{"level":"debug","ts":"2023-08-08T06:10:35.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"in","remoteAddr":"10.14.88.105:34786","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","streamName":"ragedisco/v1","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":2,"candidateEpochs":[2,2,2]} +{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":1,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":1,"l":4} +{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.002188729} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.002159072} +{"level":"debug","ts":"2023-08-08T06:10:35.260Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"observation":"CNu4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:35.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.329Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:36.329Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:36.472Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.197Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.475Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.228Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.568Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:38.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:39.264Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","unfulfilledRequest":true,"alphaReportPPB":0,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":1},"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","initialRound":true} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":2,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":1,"sender":1,"oid":3} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000955075} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001230386} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:39.314Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.637Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:39","latency":"92.367µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:39","latency":"113.197µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.971Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.490Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.669Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.707Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p"} +{"level":"warn","ts":"2023-08-08T06:10:41.707Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:41.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.085Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:43.269Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportPPB":0,"deviation":true,"result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":2},"unfulfilledRequest":true,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deltaC":0,"initialRound":true,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"oid":3,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":0,"Round":0},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000959876} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.001025816} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"round":3,"observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:43.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:43.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:44.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-08T06:10:44.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:44","latency":"98.874µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:44","latency":"87.456µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.897Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.916Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:10:45.231Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.578Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:47.275Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":3},"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportInfinite":false,"initialRound":true,"deltaCTimeout":true,"unfulfilledRequest":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"alphaReportPPB":0,"deviation":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}},"oid":3} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"contractEpochRound":{"Epoch":0,"Round":0},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":2,"Round":3},"deviates":true,"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":3} +{"level":"info","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":3,"sender":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":1,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","candidateEpochs":[3,3,3],"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":3} +{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"e":2,"l":2} +{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:10:47.363Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.443Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:47.443Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.443Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:10:47.611Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} +{"level":"debug","ts":"2023-08-08T06:10:47.611Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27"} +{"level":"debug","ts":"2023-08-08T06:10:47.631Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.826Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"out","remoteAddr":"10.14.107.222:6690","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:47.830Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a"} +{"level":"info","ts":"2023-08-08T06:10:47.830Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-08T06:10:47.830Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"sender":4,"msg":{"Epoch":1,"Round":1,"Query":null}} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":2,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":4,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:47.945Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.095Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} +{"level":"debug","ts":"2023-08-08T06:10:48.130Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.463Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.668Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:48.778Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} +{"level":"debug","ts":"2023-08-08T06:10:48.835Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.477Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} +{"level":"debug","ts":"2023-08-08T06:10:49.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000891029} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000911709} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"round":1,"observation":"COm4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:49","latency":"91.071µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:49","latency":"97.419µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.187Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} +{"level":"debug","ts":"2023-08-08T06:10:50.251Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.584Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.777Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.791Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","fee":1,"signatures":["61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","2Eik6rv2dzn4mcENfKppQjweJcan6f9kWJ1ApEUvZ42TvTCXup1Xo1V4RMTjPVgyDvuLVy3m1KxNAr6za7P2wc4r"]} +{"level":"debug","ts":"2023-08-08T06:10:50.887Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} +{"level":"debug","ts":"2023-08-08T06:10:50.887Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","2Eik6rv2dzn4mcENfKppQjweJcan6f9kWJ1ApEUvZ42TvTCXup1Xo1V4RMTjPVgyDvuLVy3m1KxNAr6za7P2wc4r"],"id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27"} +{"level":"debug","ts":"2023-08-08T06:10:50.888Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","signatures":["61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","2Eik6rv2dzn4mcENfKppQjweJcan6f9kWJ1ApEUvZ42TvTCXup1Xo1V4RMTjPVgyDvuLVy3m1KxNAr6za7P2wc4r"]} +{"level":"debug","ts":"2023-08-08T06:10:50.944Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.334Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.811Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.980Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.891Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.437Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportPPB":0,"deltaC":0,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","unfulfilledRequest":false,"deviation":true,"alphaReportInfinite":false,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"deltaCTimeout":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":3,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":3,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.00096284} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001091896} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:53.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:54","latency":"93.679µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:54","latency":"98.868µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.844Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.040Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.527Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.077Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.244Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"result":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaC":0,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2},"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":4,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":3,"round":2,"sender":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000943044} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.001058508} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:57.931Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:58.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.217Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:59","latency":"113.293µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:59","latency":"78.061µs"} +{"level":"debug","ts":"2023-08-08T06:11:00.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.083Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:11:00.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.479Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.762Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.095Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"deltaCTimeout":true,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","result":true,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"leader":4,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":4,"messageRound":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"roundMax":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","candidateEpochs":[4,4,4],"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":4} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"e":3,"l":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"result":true,"alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":4} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"sender":1,"epoch":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:03.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.634Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:04","latency":"79.06µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:04","latency":"465.429µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.980Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.313Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.667Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.327Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.019Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.354Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.763Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:11:08.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.193Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.526Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:09","latency":"83.042µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:09","latency":"87.56µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.202Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.710Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.877Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.587Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.768Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.935Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.290Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.623Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.832Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.368Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:13.701Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.844Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:14","latency":"102.896µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:14","latency":"103.007µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.781Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.079Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.251Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:11:15.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.842Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.177Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.514Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.182Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.555Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.107Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.274Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.618Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:18.951Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.132Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.300Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.674Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:19","latency":"85.576µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:19","latency":"127.652µs"} +{"level":"debug","ts":"2023-08-08T06:11:20.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.149Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.723Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":0,"e":4,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":4} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000946726} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.00099914} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:22.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.195Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:23.920Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.252Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.547Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:24","latency":"87.303µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:24","latency":"73.051µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.925Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.259Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.428Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.596Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","initialRound":false,"deviation":true,"result":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":5,"leader":4,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":5,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":5,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000893252} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.0008803} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:25.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.329Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.430Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.509Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.502Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:28.773Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.227Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.562Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:29","latency":"89.311µs"} +{"level":"debug","ts":"2023-08-08T06:11:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:29","latency":"88.871µs"} +{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deltaC":0,"result":true,"initialRound":false,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","alphaReportPPB":0,"deviation":true,"unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":2,"epoch":5,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000911432} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000892761} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:29.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.419Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:11:30.612Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.689Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.825Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.991Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.423Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.447Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:11:33.781Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:33.793Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportInfinite":false,"alphaReportPPB":0,"deltaC":0,"unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z"} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4,"round":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","result":true,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"candidateEpochs":[6,6,6],"newEpoch":6} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4,"l":4,"e":5} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":6} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:11:33.904Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.455Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:34","latency":"90.564µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:34","latency":"109.189µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.514Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.847Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.041Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.208Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.933Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.653Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.324Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:11:38.711Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:39","latency":"97.796µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:39","latency":"93.738µs"} +{"level":"debug","ts":"2023-08-08T06:11:40.097Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.498Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.765Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.588Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.813Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.147Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.616Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.865Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.527Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.693Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.699Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:43.769Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"info","ts":"2023-08-08T06:11:43.770Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:43.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.269Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:44","latency":"89.812µs"} +{"level":"debug","ts":"2023-08-08T06:11:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:44","latency":"75.153µs"} +{"level":"debug","ts":"2023-08-08T06:11:45.016Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.587Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:11:45.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.114Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.165Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.499Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.685Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.852Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:48.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.342Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.677Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:49","latency":"100.927µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:49","latency":"76.936µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.945Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.734Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.437Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.779Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3}} +{"level":"info","ts":"2023-08-08T06:11:51.779Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:51.888Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.055Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":6,"e":6,"l":0} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":7} +{"level":"debug","ts":"2023-08-08T06:11:53.877Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.045Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:54","latency":"86.454µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:54","latency":"70.913µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.057Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.653Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.301Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.992Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.204Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.371Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.093Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.264Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.432Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.702Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:58.818Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.354Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:59","latency":"90.665µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:59","latency":"88.317µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.845Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.178Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.566Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.754Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:12:00.929Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.316Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.032Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.550Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.703Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:03.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.457Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.602Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:04","latency":"85.841µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:04","latency":"73.798µs"} +{"level":"debug","ts":"2023-08-08T06:12:05.175Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.920Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.231Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.798Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.965Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.232Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:08.855Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:09","latency":"89.156µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:09","latency":"90.686µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.885Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.633Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.941Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.107Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.335Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.008Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.103Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.269Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":7,"e":7,"l":0} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000851305} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.00088149} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:13.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:14","latency":"87.095µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:14","latency":"86.803µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.205Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.915Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.921Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:12:16.236Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.998Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.276Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","initialRound":false,"unfulfilledRequest":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":3,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":1,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000861686} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000960055} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:18.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.513Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:18.851Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.546Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:19","latency":"112.782µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:19","latency":"109.762µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.854Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.189Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.410Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.577Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.256Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.626Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:21.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","unfulfilledRequest":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"alphaReportInfinite":false,"deviation":true,"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":8,"leader":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":2,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"round":2,"sender":2,"oid":3} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":8,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":8,"Round":1},"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":2},"result":true} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"epoch":8,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000832584} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000921146} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"round":3,"observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:21.930Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.541Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.709Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.269Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.611Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.706Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:23.778Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.794Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":5,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-08T06:12:23.795Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:23.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.309Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:24","latency":"93.677µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:24","latency":"72.496µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.704Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:25.810Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","unfulfilledRequest":false,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"result":true} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"messageRound":4,"roundMax":3,"round":4} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"reportEpochRound":{"Epoch":8,"Round":3},"latestAcceptedEpochRound":{"Epoch":8,"Round":2},"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"e":8,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":8,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000890904} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000894762} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"round":1,"sender":3,"msgEpoch":9,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":2,"msgEpoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"msgRound":1,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"round":1,"sender":4,"msgEpoch":9,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"msgEpoch":9,"msgRound":1,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:25.871Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.125Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.458Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.733Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.507Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.825Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.606Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:28.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.672Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:29","latency":"75.931µs"} +{"level":"debug","ts":"2023-08-08T06:12:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:29","latency":"111.05µs"} +{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"deltaC":0,"deltaCTimeout":true,"alphaReportInfinite":false,"initialRound":false,"result":true,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","unfulfilledRequest":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportEpochRound":{"Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":8,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000901179} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000984839} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":3,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":4,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"msgEpoch":9,"msgRound":2,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":2,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":2,"msgEpoch":9,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","msgEpoch":9,"msgRound":2,"oid":3,"epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":2,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:29.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"msgEpoch":9,"msgRound":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:29.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:29.929Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.409Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.742Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.090Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:12:31.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.493Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.827Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.066Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.834Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.585Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:12:33.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2},"deviation":true,"result":true,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deltaC":0,"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"round":3,"msgRound":2,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptInfinite":false,"deviates":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000978567} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000977483} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":2,"sender":4,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":3,"sender":3,"msgEpoch":9,"msgRound":3,"epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"round":3,"observationCount":1,"requiredObservationCount":3,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"msgRound":3,"round":3,"sender":2,"msgEpoch":9,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":3,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","msgEpoch":9,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"requiredObservationCount":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":3,"sender":1,"msgEpoch":9,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:33.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.076Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.592Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:34","latency":"102.796µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:34","latency":"75.628µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.164Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.620Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.952Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.351Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.631Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.386Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.655Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:37.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","deltaC":0,"initialRound":false,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","deviation":true,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"latestAcceptedEpochRound":{"Epoch":9,"Round":2}} +{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"newEpoch":10,"candidateEpochs":[10,10,10],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3,"sender":4} +{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"e":9,"l":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} +{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000775226} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.00080726} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:37.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.993Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:37.993Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3,"oid":3} +{"level":"debug","ts":"2023-08-08T06:12:38.161Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:38.161Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe","id":"60935617-94aa-45e5-86e5-b26a758e3b30"} +{"level":"debug","ts":"2023-08-08T06:12:38.251Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.495Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.682Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:38.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:12:38.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.338Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.372Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:39.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.676Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:39","latency":"85.89µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:39","latency":"78µs"} +{"level":"debug","ts":"2023-08-08T06:12:40.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.066Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:40.425Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.592Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.744Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.750Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:41.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.341Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","fee":1,"signatures":["3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe","5TzsMCJdMHXoWy9BGkkkTJaGksNn7LDmUKnUP4YhSypJYnZoG82da91E9EX4CnRbZu1Hn3anUYRXRsdRZiPYq83b"]} +{"level":"debug","ts":"2023-08-08T06:12:41.430Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:41.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.630Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1},"deltaCTimeout":true,"deltaC":0,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"alphaReportPPB":0,"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"oid":3,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"sender":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":10,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000890054} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001115712} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:42.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.098Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","signature":"5TzsMCJdMHXoWy9BGkkkTJaGksNn7LDmUKnUP4YhSypJYnZoG82da91E9EX4CnRbZu1Hn3anUYRXRsdRZiPYq83b"} +{"level":"debug","ts":"2023-08-08T06:12:42.098Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} +{"level":"debug","ts":"2023-08-08T06:12:42.098Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","signatures":["3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe","5TzsMCJdMHXoWy9BGkkkTJaGksNn7LDmUKnUP4YhSypJYnZoG82da91E9EX4CnRbZu1Hn3anUYRXRsdRZiPYq83b"]} +{"level":"debug","ts":"2023-08-08T06:12:42.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.762Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.097Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:43.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:44","latency":"76.836µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:44","latency":"117.682µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.876Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.193Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.764Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","unfulfilledRequest":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"result":true,"deltaC":0} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"epoch":10,"oid":3} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":10,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":1},"deviates":true,"result":true,"reportEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"info","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"round":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":2,"sender":4,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000911437} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001047319} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:45.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.004Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:46.004Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:46.171Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e","signature":"3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"} +{"level":"debug","ts":"2023-08-08T06:12:46.171Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e"} +{"level":"debug","ts":"2023-08-08T06:12:46.203Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.257Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:12:46.527Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e","signature":"3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"} +{"level":"debug","ts":"2023-08-08T06:12:46.527Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"],"id":"f1a45d92-8a42-4e04-a85c-639e29b9532e"} +{"level":"debug","ts":"2023-08-08T06:12:46.528Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e","signatures":["3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"]} +{"level":"debug","ts":"2023-08-08T06:12:46.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.956Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.969Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:48.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:49","latency":"85.29µs"} +{"level":"debug","ts":"2023-08-08T06:12:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:49","latency":"94.451µs"} +{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","deviation":true,"deltaCTimeout":true,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"unfulfilledRequest":false,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"result":true,"deltaC":0} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":3,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":4,"messageRound":4,"roundMax":3,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"epoch":10,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptInfinite":false,"result":true,"reportEpochRound":{"Epoch":10,"Round":3},"latestAcceptedEpochRound":{"Epoch":10,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":11,"candidateEpochs":[11,11,11]} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"e":10,"l":2} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000816481} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000796274} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":11,"leader":2,"oid":3} +{"level":"debug","ts":"2023-08-08T06:12:49.938Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.105Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.973Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.396Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.455Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.126Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.179Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"initialRound":false,"deviation":true,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z"} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":1,"oid":3} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":11,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"sender":3,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":10,"Round":2},"result":true,"reportEpochRound":{"Epoch":11,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000877041} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.001019391} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3} +{"level":"debug","ts":"2023-08-08T06:12:54.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.177Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:54","latency":"106.198µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:54","latency":"99.977µs"} +{"level":"debug","ts":"2023-08-08T06:12:55.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.225Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.138Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.612Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.139Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.340Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:57.852Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"deviation":true,"unfulfilledRequest":false,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":2,"sender":2,"epoch":11,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"latestAcceptedEpochRound":{"Epoch":11,"Round":1},"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000956406} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000983591} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:58.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.358Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.440Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:12:58.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.229Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:59","latency":"99.8µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:59","latency":"117.454µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.822Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.299Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.466Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.918Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.424Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} +{"level":"debug","ts":"2023-08-08T06:13:01.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.649Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","initialRound":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"deltaC":0,"deviation":true} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"latestAcceptedEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":11,"round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":12,"candidateEpochs":[12,12,12]} +{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","e":11,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"l":2} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":11,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"leader":0,"epoch":12,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.741Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.075Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.631Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:13:03.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.522Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:04","latency":"104.336µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:04","latency":"97.559µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.818Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.537Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.704Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.786Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1}} +{"level":"info","ts":"2023-08-08T06:13:05.786Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:13:05.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.877Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.212Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.663Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.803Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":8,"Round":1}} +{"level":"info","ts":"2023-08-08T06:13:07.803Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:13:07.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.937Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.269Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:13:08.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.916Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.266Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":2,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-08T06:13:09.266Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:13:09.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:09","latency":"99.282µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:09","latency":"108.325µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.791Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-08T06:13:09.791Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} +{"level":"debug","ts":"2023-08-08T06:13:09.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.014Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.342Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.871Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.234Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.934Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.102Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.505Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:13:13.947Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log new file mode 100644 index 000000000..70f0e0c78 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok + +WARNING: enabling "trust" authentication for local connections +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-08 06:04:07.559 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:07.572 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC +2023-08-08 06:04:07.576 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-08 06:04:08.163 UTC [48] LOG: received fast shutdown request +.2023-08-08 06:04:08.167 UTC [48] LOG: aborting any active transactions +2023-08-08 06:04:08.169 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-08 06:04:08.169 UTC [50] LOG: shutting down +2023-08-08 06:04:08.185 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-08 06:04:08.274 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-08 06:04:08.274 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-08 06:04:08.276 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:08.289 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC +2023-08-08 06:04:08.293 UTC [1] LOG: database system is ready to accept connections +2023-08-08 06:04:09.851 UTC [92] FATAL: role "chainlink" does not exist +2023-08-08 06:04:10.853 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-08 06:04:10.853 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-08 06:04:10.853 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-08 06:04:10.853 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-08 06:04:10.854 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-08 06:04:10.854 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log new file mode 100644 index 000000000..3136115b3 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log @@ -0,0 +1,1799 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-08T06:04:10.662Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.662Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.662Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"2ba5e09a-44c7-4a07-bd57-4d7c95a4a468"} +{"level":"debug","ts":"2023-08-08T06:04:10.667Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"2ba5e09a-44c7-4a07-bd57-4d7c95a4a468"} +{"level":"debug","ts":"2023-08-08T06:04:10.853Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/08 06:04:11 OK 0001_initial.sql +2023/08/08 06:04:11 OK 0002_gormv2.sql +2023/08/08 06:04:11 OK 0003_eth_logs_table.sql +2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql +2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql +2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql +2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/08 06:04:11 OK 0010_bridge_fk.sql +2023/08/08 06:04:11 OK 0011_latest_round_requested.sql +2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql +2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql +2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql +2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql +2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/08 06:04:11 OK 0018_add_node_version_table.sql +2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/08 06:04:11 OK 0020_remove_result_task.sql +2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql +2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql +2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql +2023/08/08 06:04:11 OK 0025_create_log_config_table.sql +2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql +2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/08 06:04:11 OK 0028_vrf_v2.sql +2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql +2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql +2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql +2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql +2023/08/08 06:04:11 OK 0036_external_job_id.go +2023/08/08 06:04:11 OK 0037_cascade_deletes.sql +2023/08/08 06:04:11 OK 0038_create_csa_keys.sql +2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql +2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql +2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql +2023/08/08 06:04:11 OK 0042_create_job_proposals.sql +2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql +2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go +2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/08 06:04:11 OK 0056_multichain.go +2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql +2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/08 06:04:11 OK 0060_combine_keys_tables.sql +2023/08/08 06:04:11 OK 0061_multichain_relations.sql +2023/08/08 06:04:11 OK 0062_upgrade_keepers.sql +2023/08/08 06:04:11 OK 0063_add_job_proposal_timestamp.sql +2023/08/08 06:04:11 OK 0064_cascade_delete_chain_nodes.sql +2023/08/08 06:04:11 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/08 06:04:11 OK 0066_update_job_proposal_status.sql +2023/08/08 06:04:11 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/08 06:04:11 OK 0068_eth_tx_from_address_idx.sql +2023/08/08 06:04:11 OK 0069_remove_unused_columns.sql +2023/08/08 06:04:11 OK 0070_dynamic_fee_txes.sql +2023/08/08 06:04:11 OK 0071_allow_null_json_serializable.sql +2023/08/08 06:04:11 OK 0072_drop_unused_tables.sql +2023/08/08 06:04:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/08 06:04:11 OK 0074_simulation_eth_tx.sql +2023/08/08 06:04:11 OK 0075_unique_job_names.sql +2023/08/08 06:04:11 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/08 06:04:11 OK 0077_add_webauthn_table.sql +2023/08/08 06:04:11 OK 0078_only_one_version.sql +2023/08/08 06:04:11 OK 0079_vrf_v2_fields.sql +2023/08/08 06:04:11 OK 0080_drop_unused_cols.sql +2023/08/08 06:04:11 OK 0081_unconsumed_log_broadcasts.sql +2023/08/08 06:04:11 OK 0082_lease_lock.sql +2023/08/08 06:04:11 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/08 06:04:11 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/08 06:04:11 OK 0085_requested_confs_delay.sql +2023/08/08 06:04:11 OK 0086_upgrade_keepers_observation_source.sql +2023/08/08 06:04:11 OK 0087_ocr2_tables.sql +2023/08/08 06:04:11 OK 0088_vrfv2_request_timeout.sql +2023/08/08 06:04:11 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/08 06:04:11 OK 0090_ocr_new_timeouts.sql +2023/08/08 06:04:11 OK 0091_ocr2_relay.sql +2023/08/08 06:04:11 OK 0092_bptxm_tx_checkers.sql +2023/08/08 06:04:11 OK 0093_terra_txm.sql +2023/08/08 06:04:11 OK 0094_blockhash_store_job.sql +2023/08/08 06:04:11 OK 0095_terra_fcd.sql +2023/08/08 06:04:11 OK 0096_create_job_proposal_specs.sql +2023/08/08 06:04:11 OK 0097_bootstrap_spec.sql +2023/08/08 06:04:11 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/08 06:04:11 OK 0099_terra_msgs_created_at.sql +2023/08/08 06:04:11 OK 0100_bootstrap_config.sql +2023/08/08 06:04:11 OK 0101_generic_ocr2.sql +2023/08/08 06:04:11 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/08 06:04:11 OK 0103_terra_msgs_type_url.sql +2023/08/08 06:04:11 OK 0104_terra_cascade_delete.sql +2023/08/08 06:04:11 OK 0105_create_forwarder_addresses.sql +2023/08/08 06:04:11 OK 0106_evm_node_uniqueness.sql +2023/08/08 06:04:11 OK 0107_vrf_multiple_from_addresses.sql +2023/08/08 06:04:11 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/08 06:04:11 OK 0109_solana_chains_nodes.sql +2023/08/08 06:04:11 OK 0110_add_vrf_chunk_size.sql +2023/08/08 06:04:11 OK 0111_terra_msgs_state_started.sql +2023/08/08 06:04:11 OK 0112_vrf_batch_coordinator_address.sql +2023/08/08 06:04:11 OK 0113_vrf_v2_backoff_columns.sql +2023/08/08 06:04:11 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/08 06:04:11 OK 0115_log_poller.sql +2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql +2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql +2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql +2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql +2023/08/08 06:04:12 OK 0121_remove_log_configs.sql +2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql +2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql +2023/08/08 06:04:12 OK 0126_remove_observation_source.sql +2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql +2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql +2023/08/08 06:04:12 OK 0131_add_multi_user.sql +2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql +2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql +2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql +2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql +2023/08/08 06:04:12 OK 0137_remove_tx_index.sql +2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql +2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql +2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql +2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/08 06:04:12 OK 0144_optimize_lp.sql +2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql +2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0148_dkg_shares.sql +2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql +2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql +2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql +2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql +2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql +2023/08/08 06:04:12 OK 0155_remove_terra.sql +2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql +2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql +2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql +2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/08 06:04:12 OK 0164_add_cosmos.sql +2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql +2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql +2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql +2023/08/08 06:04:12 OK 0168_drop_node_tables.sql +2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql +2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql +2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql +2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql +2023/08/08 06:04:12 OK 0174_vrf_owner.sql +2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql +2023/08/08 06:04:12 OK 0176_s4_shared_table.sql +2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql +2023/08/08 06:04:12 OK 0178_drop_access_list.sql +2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql +2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql +2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql +2023/08/08 06:04:12 OK 0183_functions_new_fields.sql +2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql +2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql +2023/08/08 06:04:12 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.681Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 12b8533d8165bc857d9c09e73ccbc71f301ac224a80a123197aaf79218787870 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.681Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:18.860Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID FUgTGQfRzXVVqLrDttaNowVjogS9TYRxrAiDjkGp2PDQ","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:20.770Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 055c2999efd81286a1c42ddc45bb30b6444fa2e57d05ab3482cd8a42d2c1d377","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.962Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.086Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.086Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-08T06:04:23.086Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-08T06:04:23.087Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-08T06:04:23.087Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-08T06:04:23.088Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 40749. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":40749} +{"level":"debug","ts":"2023-08-08T06:04:23.088Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":40749,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"debug","ts":"2023-08-08T06:04:23.088Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","v1listenPort":40749,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/40749"} +{"level":"info","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement"} +{"level":"info","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:04:23.089Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"recvLoop"} +{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:04:23.153Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-08T06:04:23.153Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:23.153Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.29s","version":"2.4.0@d0c54ea","appID":"2ba5e09a-44c7-4a07-bd57-4d7c95a4a468"} +{"level":"debug","ts":"2023-08-08T06:04:23.153Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000684222} +{"level":"info","ts":"2023-08-08T06:04:23.160Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-08T06:04:23.164Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010928555} +{"level":"debug","ts":"2023-08-08T06:04:23.164Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.784Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.555427ms"} +{"level":"debug","ts":"2023-08-08T06:04:24.785Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:24","latency":"267.016µs"} +{"level":"debug","ts":"2023-08-08T06:04:28.090Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:28.465Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:04:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:29","latency":"92.154µs"} +{"level":"debug","ts":"2023-08-08T06:04:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:29","latency":"96.113µs"} +{"level":"info","ts":"2023-08-08T06:04:33.090Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","statusByPeer":"map[]"} +{"level":"debug","ts":"2023-08-08T06:04:33.090Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:04:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:34","latency":"86.478µs"} +{"level":"debug","ts":"2023-08-08T06:04:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:34","latency":"86.447µs"} +{"level":"debug","ts":"2023-08-08T06:04:38.091Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:39","latency":"93.002µs"} +{"level":"debug","ts":"2023-08-08T06:04:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:39","latency":"94.495µs"} +{"level":"debug","ts":"2023-08-08T06:04:43.091Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:44","latency":"88.805µs"} +{"level":"debug","ts":"2023-08-08T06:04:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:44","latency":"106.886µs"} +{"level":"debug","ts":"2023-08-08T06:04:48.092Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:49","latency":"107.01µs"} +{"level":"debug","ts":"2023-08-08T06:04:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:49","latency":"159.821µs"} +{"level":"debug","ts":"2023-08-08T06:04:53.092Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:54","latency":"104.777µs"} +{"level":"debug","ts":"2023-08-08T06:04:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:54","latency":"90.446µs"} +{"level":"debug","ts":"2023-08-08T06:04:58.093Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:59","latency":"72.21µs"} +{"level":"debug","ts":"2023-08-08T06:04:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:59","latency":"95.117µs"} +{"level":"debug","ts":"2023-08-08T06:05:02.241Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:05:02.242Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-08T06:05:02.365Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-08T06:05:02.366Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:02","latency":"125.320158ms"} +{"level":"debug","ts":"2023-08-08T06:05:03.095Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:04","latency":"72.417µs"} +{"level":"debug","ts":"2023-08-08T06:05:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:04","latency":"111.137µs"} +{"level":"debug","ts":"2023-08-08T06:05:08.095Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:05:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:09","latency":"84.058µs"} +{"level":"debug","ts":"2023-08-08T06:05:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:09","latency":"88.357µs"} +{"level":"debug","ts":"2023-08-08T06:05:13.096Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:14.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:14","latency":"93.04µs"} +{"level":"debug","ts":"2023-08-08T06:05:14.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:14","latency":"86.646µs"} +{"level":"debug","ts":"2023-08-08T06:05:17.732Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:17","latency":"2.071792ms"} +{"level":"debug","ts":"2023-08-08T06:05:18.151Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:19.776Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:19","latency":"1.850587518s"} +{"level":"debug","ts":"2023-08-08T06:05:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:19","latency":"66.911µs"} +{"level":"debug","ts":"2023-08-08T06:05:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:19","latency":"95.081µs"} +{"level":"debug","ts":"2023-08-08T06:05:22.175Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:22","latency":"2.212514354s"} +{"level":"debug","ts":"2023-08-08T06:05:23.151Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:24","latency":"92.339µs"} +{"level":"debug","ts":"2023-08-08T06:05:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:24","latency":"101.38µs"} +{"level":"debug","ts":"2023-08-08T06:05:28.096Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"75.893µs"} +{"level":"debug","ts":"2023-08-08T06:05:28.151Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:28.283Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"65.126µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:29","latency":"95.057µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:29","latency":"93.841µs"} +{"level":"debug","ts":"2023-08-08T06:05:33.152Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:34","latency":"98.822µs"} +{"level":"debug","ts":"2023-08-08T06:05:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:34","latency":"96.786µs"} +{"level":"debug","ts":"2023-08-08T06:05:38.152Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:05:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:39","latency":"93.127µs"} +{"level":"debug","ts":"2023-08-08T06:05:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:39","latency":"74.494µs"} +{"level":"debug","ts":"2023-08-08T06:05:43.153Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:05:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:44","latency":"85.254µs"} +{"level":"debug","ts":"2023-08-08T06:05:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:44","latency":"71.198µs"} +{"level":"debug","ts":"2023-08-08T06:05:48.154Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:49","latency":"90.118µs"} +{"level":"debug","ts":"2023-08-08T06:05:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:49","latency":"95.706µs"} +{"level":"debug","ts":"2023-08-08T06:05:53.154Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:54","latency":"96.59µs"} +{"level":"debug","ts":"2023-08-08T06:05:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:54","latency":"82.358µs"} +{"level":"debug","ts":"2023-08-08T06:05:58.155Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:59","latency":"84.767µs"} +{"level":"debug","ts":"2023-08-08T06:05:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:59","latency":"74.424µs"} +{"level":"debug","ts":"2023-08-08T06:06:03.155Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:04","latency":"84.789µs"} +{"level":"debug","ts":"2023-08-08T06:06:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:04","latency":"95.372µs"} +{"level":"debug","ts":"2023-08-08T06:06:08.156Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:09","latency":"96.136µs"} +{"level":"debug","ts":"2023-08-08T06:06:09.786Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:09","latency":"79.774µs"} +{"level":"debug","ts":"2023-08-08T06:06:13.156Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:14","latency":"86.652µs"} +{"level":"debug","ts":"2023-08-08T06:06:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:14","latency":"82.889µs"} +{"level":"debug","ts":"2023-08-08T06:06:18.157Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:19","latency":"82.402µs"} +{"level":"debug","ts":"2023-08-08T06:06:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:19","latency":"88.259µs"} +{"level":"debug","ts":"2023-08-08T06:06:23.157Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:24","latency":"89.722µs"} +{"level":"debug","ts":"2023-08-08T06:06:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:24","latency":"88.934µs"} +{"level":"debug","ts":"2023-08-08T06:06:28.158Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:29","latency":"94.042µs"} +{"level":"debug","ts":"2023-08-08T06:06:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:29","latency":"95.927µs"} +{"level":"debug","ts":"2023-08-08T06:06:33.158Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:06:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:34","latency":"90.42µs"} +{"level":"debug","ts":"2023-08-08T06:06:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:34","latency":"69.812µs"} +{"level":"debug","ts":"2023-08-08T06:06:38.159Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:39","latency":"90.006µs"} +{"level":"debug","ts":"2023-08-08T06:06:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:39","latency":"94.113µs"} +{"level":"debug","ts":"2023-08-08T06:06:43.160Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:44","latency":"71.42µs"} +{"level":"debug","ts":"2023-08-08T06:06:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:44","latency":"110.638µs"} +{"level":"debug","ts":"2023-08-08T06:06:48.161Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:49","latency":"108.139µs"} +{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:49","latency":"72.283µs"} +{"level":"debug","ts":"2023-08-08T06:06:53.161Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:54","latency":"91.228µs"} +{"level":"debug","ts":"2023-08-08T06:06:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:54","latency":"90.025µs"} +{"level":"debug","ts":"2023-08-08T06:06:58.162Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:59","latency":"93.685µs"} +{"level":"debug","ts":"2023-08-08T06:06:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:59","latency":"66.798µs"} +{"level":"debug","ts":"2023-08-08T06:07:03.163Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:04","latency":"111.445µs"} +{"level":"debug","ts":"2023-08-08T06:07:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:04","latency":"108.232µs"} +{"level":"debug","ts":"2023-08-08T06:07:08.163Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:09","latency":"90.447µs"} +{"level":"debug","ts":"2023-08-08T06:07:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:09","latency":"90.19µs"} +{"level":"debug","ts":"2023-08-08T06:07:13.164Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:14","latency":"75.44µs"} +{"level":"debug","ts":"2023-08-08T06:07:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:14","latency":"117.539µs"} +{"level":"debug","ts":"2023-08-08T06:07:18.164Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:19","latency":"91.122µs"} +{"level":"debug","ts":"2023-08-08T06:07:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:19","latency":"94.929µs"} +{"level":"debug","ts":"2023-08-08T06:07:23.165Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:24","latency":"95.018µs"} +{"level":"debug","ts":"2023-08-08T06:07:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:24","latency":"70.848µs"} +{"level":"debug","ts":"2023-08-08T06:07:28.165Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:29","latency":"74.661µs"} +{"level":"debug","ts":"2023-08-08T06:07:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:29","latency":"90.79µs"} +{"level":"debug","ts":"2023-08-08T06:07:33.166Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:34","latency":"81.114µs"} +{"level":"debug","ts":"2023-08-08T06:07:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:34","latency":"74.734µs"} +{"level":"debug","ts":"2023-08-08T06:07:38.166Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:39","latency":"82.055µs"} +{"level":"debug","ts":"2023-08-08T06:07:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:39","latency":"122.654µs"} +{"level":"debug","ts":"2023-08-08T06:07:43.167Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:44","latency":"86.101µs"} +{"level":"debug","ts":"2023-08-08T06:07:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:44","latency":"89.414µs"} +{"level":"debug","ts":"2023-08-08T06:07:48.168Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:49","latency":"97.371µs"} +{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:49","latency":"120.836µs"} +{"level":"debug","ts":"2023-08-08T06:07:53.168Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:54","latency":"87.265µs"} +{"level":"debug","ts":"2023-08-08T06:07:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:54","latency":"87.489µs"} +{"level":"debug","ts":"2023-08-08T06:07:58.169Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:59","latency":"105.022µs"} +{"level":"debug","ts":"2023-08-08T06:07:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:59","latency":"99.298µs"} +{"level":"debug","ts":"2023-08-08T06:08:03.169Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:04","latency":"88.548µs"} +{"level":"debug","ts":"2023-08-08T06:08:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:04","latency":"86.653µs"} +{"level":"debug","ts":"2023-08-08T06:08:08.170Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:09","latency":"96.825µs"} +{"level":"debug","ts":"2023-08-08T06:08:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:09","latency":"177.612µs"} +{"level":"debug","ts":"2023-08-08T06:08:13.171Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:14","latency":"75.849µs"} +{"level":"debug","ts":"2023-08-08T06:08:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:14","latency":"112.543µs"} +{"level":"debug","ts":"2023-08-08T06:08:18.171Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:08:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:19","latency":"93.583µs"} +{"level":"debug","ts":"2023-08-08T06:08:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:19","latency":"79.941µs"} +{"level":"debug","ts":"2023-08-08T06:08:23.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:08:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:24","latency":"81.336µs"} +{"level":"debug","ts":"2023-08-08T06:08:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:24","latency":"85.648µs"} +{"level":"debug","ts":"2023-08-08T06:08:28.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:29","latency":"69.177µs"} +{"level":"debug","ts":"2023-08-08T06:08:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:29","latency":"102.771µs"} +{"level":"debug","ts":"2023-08-08T06:08:33.174Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:34","latency":"109.569µs"} +{"level":"debug","ts":"2023-08-08T06:08:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:34","latency":"109.577µs"} +{"level":"debug","ts":"2023-08-08T06:08:38.174Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:39","latency":"97.662µs"} +{"level":"debug","ts":"2023-08-08T06:08:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:39","latency":"75.234µs"} +{"level":"debug","ts":"2023-08-08T06:08:43.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:44","latency":"89.289µs"} +{"level":"debug","ts":"2023-08-08T06:08:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:44","latency":"95.613µs"} +{"level":"debug","ts":"2023-08-08T06:08:48.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:49","latency":"102.178µs"} +{"level":"debug","ts":"2023-08-08T06:08:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:49","latency":"105.201µs"} +{"level":"debug","ts":"2023-08-08T06:08:53.176Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:54","latency":"89.704µs"} +{"level":"debug","ts":"2023-08-08T06:08:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:54","latency":"88.202µs"} +{"level":"debug","ts":"2023-08-08T06:08:58.176Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:59","latency":"95.048µs"} +{"level":"debug","ts":"2023-08-08T06:08:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:59","latency":"92.901µs"} +{"level":"debug","ts":"2023-08-08T06:09:03.177Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:04","latency":"91.705µs"} +{"level":"debug","ts":"2023-08-08T06:09:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:04","latency":"97.108µs"} +{"level":"debug","ts":"2023-08-08T06:09:08.177Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:09","latency":"97.641µs"} +{"level":"debug","ts":"2023-08-08T06:09:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:09","latency":"103.395µs"} +{"level":"debug","ts":"2023-08-08T06:09:13.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:09:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:14","latency":"90.665µs"} +{"level":"debug","ts":"2023-08-08T06:09:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:14","latency":"92.519µs"} +{"level":"debug","ts":"2023-08-08T06:09:18.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:19.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:19","latency":"99.134µs"} +{"level":"debug","ts":"2023-08-08T06:09:19.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:19","latency":"83.419µs"} +{"level":"debug","ts":"2023-08-08T06:09:23.179Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:09:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:24","latency":"95.728µs"} +{"level":"debug","ts":"2023-08-08T06:09:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:24","latency":"82.827µs"} +{"level":"debug","ts":"2023-08-08T06:09:28.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:09:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:29","latency":"85.597µs"} +{"level":"debug","ts":"2023-08-08T06:09:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:29","latency":"106.881µs"} +{"level":"info","ts":"2023-08-08T06:09:33.091Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:33.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:34","latency":"81.15µs"} +{"level":"debug","ts":"2023-08-08T06:09:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:34","latency":"107.552µs"} +{"level":"debug","ts":"2023-08-08T06:09:38.181Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:39","latency":"86.968µs"} +{"level":"debug","ts":"2023-08-08T06:09:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:39","latency":"86.818µs"} +{"level":"debug","ts":"2023-08-08T06:09:43.181Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:44","latency":"93.949µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:44","latency":"78.453µs"} +{"level":"debug","ts":"2023-08-08T06:09:45.931Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:45","latency":"90.042µs"} +{"level":"debug","ts":"2023-08-08T06:09:46.118Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:46","latency":"56.121µs"} +{"level":"debug","ts":"2023-08-08T06:09:48.182Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:49","latency":"87.421µs"} +{"level":"debug","ts":"2023-08-08T06:09:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:49","latency":"88.277µs"} +{"level":"debug","ts":"2023-08-08T06:09:53.183Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:09:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:54","latency":"77.955µs"} +{"level":"debug","ts":"2023-08-08T06:09:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:54","latency":"112.83µs"} +{"level":"debug","ts":"2023-08-08T06:09:58.183Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:59","latency":"90.982µs"} +{"level":"debug","ts":"2023-08-08T06:09:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:59","latency":"93.381µs"} +{"level":"debug","ts":"2023-08-08T06:10:03.184Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:04.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:04","latency":"96.449µs"} +{"level":"debug","ts":"2023-08-08T06:10:04.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:04","latency":"79.278µs"} +{"level":"debug","ts":"2023-08-08T06:10:08.185Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:09.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:09","latency":"77.844µs"} +{"level":"debug","ts":"2023-08-08T06:10:09.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:09","latency":"96.418µs"} +{"level":"debug","ts":"2023-08-08T06:10:13.185Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:14","latency":"82.927µs"} +{"level":"debug","ts":"2023-08-08T06:10:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:14","latency":"86.145µs"} +{"level":"debug","ts":"2023-08-08T06:10:18.186Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:19","latency":"88.21µs"} +{"level":"debug","ts":"2023-08-08T06:10:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:19","latency":"85.261µs"} +{"level":"debug","ts":"2023-08-08T06:10:23.186Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:24","latency":"116.474µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:24","latency":"79.764µs"} +{"level":"debug","ts":"2023-08-08T06:10:26.736Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:26","latency":"3.274144ms"} +{"level":"info","ts":"2023-08-08T06:10:26.933Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-08T06:10:26.933Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} +{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-08T06:10:26.933Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.338Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"info","ts":"2023-08-08T06:10:27.540Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:27.540Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","duration":755} +{"level":"info","ts":"2023-08-08T06:10:27.541Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"info","ts":"2023-08-08T06:10:27.541Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:10:27.541Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"8198b77492748583b790be035dfc5171eaa43a7489e0b2487ad6eabd195cfac7\\\" \\n\\ntransmitterID = \\\"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:27","latency":"615.579289ms"} +{"level":"debug","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","found":["12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"],"loaded":["12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"],"peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numQueried":5,"numFound":1,"numLoaded":1} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"PeerV2","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","oracleID":2,"_id":"OCREndpointV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}]} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"5ad7d3d2b5dcba87e9dbfc18a70c61b292392d74edd8ed8b4543a0db73ec1903","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"PeerV2","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","oracleID":2} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"info","ts":"2023-08-08T06:10:27.748Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"info","ts":"2023-08-08T06:10:27.748Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","ne":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"previousNe":0} +{"level":"info","ts":"2023-08-08T06:10:27.748Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":1,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:27.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.184Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.187Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:28.386Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"warn","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"warn","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","direction":"out","remoteAddr":"10.14.25.244:6690","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}"} +{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:28.563Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:28.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.185Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.564Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:29","latency":"76.987µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:29","latency":"99.803µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:30.662Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","direction":"in","remoteAddr":"10.14.53.196:59720","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:31.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:31.750Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.155Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:32.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:33.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:33.812Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.217Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.461Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.663Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:34","latency":"89.806µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:34","latency":"86.575µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.891Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.254Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:35.254Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:35.254Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remoteAddr":"10.14.31.164:6690","direction":"out","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:35.256Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","newEpoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"candidateEpochs":[2,2,2]} +{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":1,"leader":4,"l":4} +{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2} +{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.001905709} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.001885808} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"round":1,"observation":"CNu4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":2,"msgRound":1,"round":1,"sender":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2} +{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"observationCount":1,"requiredObservationCount":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:35.260Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":3,"msgEpoch":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:35.260Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"round":1,"observationCount":2} +{"level":"debug","ts":"2023-08-08T06:10:35.262Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"msgEpoch":2,"msgRound":1,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:35.262Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:35.262Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:35.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:35.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.303Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.586Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:36.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:37.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.189Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:38.399Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.740Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:38.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:39.263Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","unfulfilledRequest":true,"initialRound":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":1},"alphaReportPPB":0,"alphaReportInfinite":false,"deltaCTimeout":true,"result":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaC":0} +{"level":"debug","ts":"2023-08-08T06:10:39.264Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"deviates":true,"result":true,"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":1}} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000660155} +{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000749005} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2,"observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"msgRound":1,"leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":3,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2,"sender":2,"msgEpoch":2,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"round":2,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"sender":3,"msgEpoch":2,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"requiredObservationCount":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:39.268Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"sender":1,"msgEpoch":2,"msgRound":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:39.268Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"observationCount":3} +{"level":"debug","ts":"2023-08-08T06:10:39.268Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:39.413Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:39.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:39","latency":"99.92µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:39","latency":"92.592µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.750Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"warn","ts":"2023-08-08T06:10:40.750Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:40.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.124Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.528Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.155Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.560Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.946Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:10:43.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.189Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.189Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:43.233Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:43.269Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":2},"initialRound":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":2,"round":2,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000675128} +{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000726009} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"msgRound":2,"leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":2,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":2,"msgRound":3,"round":3,"leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"round":3,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":2,"msgRound":3,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:43.273Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"msgEpoch":2,"msgRound":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:43.273Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":3,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:10:43.273Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:43.593Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.214Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:44.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:44.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:44","latency":"94.259µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:44","latency":"92.046µs"} +{"level":"debug","ts":"2023-08-08T06:10:45.110Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.258Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.663Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.347Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.751Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:47.274Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportInfinite":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"deltaC":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportPPB":0,"deviation":true,"initialRound":true,"unfulfilledRequest":true} +{"level":"debug","ts":"2023-08-08T06:10:47.275Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":2} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"messageRound":4} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgRound":3,"round":4,"oid":2,"leader":2} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":0,"Round":0},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":2,"Round":3},"deviates":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"newEpoch":3,"candidateEpochs":[3,3,3],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"e":2,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":3,"sender":1} +{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:47.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.190Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:48.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.493Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.764Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.335Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.538Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:49","latency":"87.121µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:49","latency":"81.16µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.823Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.318Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:50.320Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.107.222:6690","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"out"} +{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:50.321Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"sender":4,"msg":{"Epoch":1,"Round":1,"Query":null}} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":2,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":4,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000690855} +{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000803788} +{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4,"round":1,"observation":"COq4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:50.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.921Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.611Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.477Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.622Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.191Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:53.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deltaC":0,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"initialRound":false,"deltaCTimeout":true,"alphaReportPPB":0,"deviation":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":3,"leader":4,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":2,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000730344} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000739579} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4,"round":2,"observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:54.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:54","latency":"108.096µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:54","latency":"75.937µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.783Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.828Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.879Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.233Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.763Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.966Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.306Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportPPB":0,"alphaReportInfinite":false,"initialRound":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaC":0} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":3,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"sender":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"result":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000601766} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000649544} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:57.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.998Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.042Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.149Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:10:58.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:58.402Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.892Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.012Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.095Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:59","latency":"87.673µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:59","latency":"87.846µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.019Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.124Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.423Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.017Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.118Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deltaCTimeout":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"deviation":true,"alphaReportPPB":0,"deltaC":0,"result":true,"initialRound":false,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z"} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4,"messageRound":4} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"deviates":true,"contractEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3} +{"level":"info","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":3,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":4,"candidateEpochs":[4,4,4]} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":3,"l":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":4} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:01.981Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:01.981Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:11:01.981Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:11:02.063Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.167Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.183Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"} +{"level":"debug","ts":"2023-08-08T06:11:02.183Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273"} +{"level":"debug","ts":"2023-08-08T06:11:02.265Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.467Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"} +{"level":"debug","ts":"2023-08-08T06:11:02.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.095Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:03.218Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"} +{"level":"debug","ts":"2023-08-08T06:11:03.219Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"],"id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273"} +{"level":"debug","ts":"2023-08-08T06:11:03.219Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273","signatures":["9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"]} +{"level":"debug","ts":"2023-08-08T06:11:03.255Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.127Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.312Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.717Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:04","latency":"85.479µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:04","latency":"78.614µs"} +{"level":"debug","ts":"2023-08-08T06:11:05.129Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.318Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.722Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.406Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.436Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:08.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.458Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.390Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.553Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:09","latency":"73.63µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:09","latency":"91.87µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.445Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.990Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.630Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.838Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.084Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:11:13.351Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:11:13.671Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.769Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.874Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:14","latency":"73.916µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:14","latency":"119.014µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.209Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.762Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.838Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.965Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.996Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.868Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.068Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.194Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:18.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.913Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.958Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.363Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:19","latency":"89.255µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:19","latency":"86.182µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.170Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.187Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.478Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":4,"leader":0,"e":4,"l":0} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000697552} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000727918} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:21.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.577Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.195Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:11:23.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.265Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.612Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:24","latency":"105.499µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:24","latency":"56.553µs"} +{"level":"debug","ts":"2023-08-08T06:11:25.251Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.701Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportPPB":0,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"deviation":true,"alphaReportInfinite":false,"deltaC":0,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"result":true} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":1,"oid":2} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000719306} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000736404} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2} +{"level":"debug","ts":"2023-08-08T06:11:26.267Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.469Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.519Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.836Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:28.362Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.452Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.554Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:11:28.564Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:29","latency":"91.592µs"} +{"level":"debug","ts":"2023-08-08T06:11:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:29","latency":"76.249µs"} +{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","deltaC":0,"alphaReportPPB":0,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":2,"epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"sender":4,"epoch":5,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000713531} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000686139} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":3,"observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:11:29.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.475Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.466Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.669Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.683Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.956Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:33.271Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":2,"Round":2}} +{"level":"info","ts":"2023-08-08T06:11:33.271Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:33.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.605Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:33.792Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deltaC":0,"result":true,"deltaCTimeout":true,"alphaReportInfinite":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"deviation":true} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":5,"round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptInfinite":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":6,"candidateEpochs":[6,6,6]} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":5,"l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":3,"sender":3} +{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":6} +{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:34.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.569Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.622Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.771Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:34","latency":"82.636µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:34","latency":"90.24µs"} +{"level":"debug","ts":"2023-08-08T06:11:35.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.715Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.850Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.760Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.928Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.164Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.845Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.197Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:38.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.890Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.017Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.294Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:39","latency":"88.603µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:39","latency":"67.699µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.882Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.969Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.085Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.375Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.153Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.017Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.187Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:11:43.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.757Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:11:43.986Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.189Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:44","latency":"89.732µs"} +{"level":"debug","ts":"2023-08-08T06:11:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:44","latency":"94.342µs"} +{"level":"debug","ts":"2023-08-08T06:11:45.025Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.190Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.227Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.226Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.630Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.260Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.726Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.774Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":3,"Round":2}} +{"level":"info","ts":"2023-08-08T06:11:47.774Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:11:48.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:11:48.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.323Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.339Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:49","latency":"87.243µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:49","latency":"98.665µs"} +{"level":"debug","ts":"2023-08-08T06:11:50.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.357Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.397Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.444Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.316Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.519Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.539Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.199Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:53.398Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":6,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":6,"leader":0} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":7,"leader":0} +{"level":"debug","ts":"2023-08-08T06:11:54.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:54","latency":"77.628µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:54","latency":"111.202µs"} +{"level":"debug","ts":"2023-08-08T06:11:55.062Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.444Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.672Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.151Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.589Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.792Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.837Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.200Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:11:58.241Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.825Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.960Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:11:59.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:59","latency":"86.623µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:59","latency":"89.036µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.719Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.989Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.785Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.052Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.879Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:12:03.546Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.881Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.084Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.176Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:04","latency":"69.565µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:04","latency":"89.513µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.889Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.091Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.216Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.916Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.696Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.214Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.085Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:08.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.337Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:09","latency":"75.93µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:09","latency":"93.753µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.239Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.442Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.830Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.519Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.202Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:13.342Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.530Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":8,"candidateEpochs":[8,8,8]} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":7,"l":0} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000664314} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000749221} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"msgEpoch":8,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"round":1,"sender":3,"msgEpoch":8,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":4,"msgEpoch":8,"msgRound":1,"oid":2,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:13.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":1,"msgEpoch":8,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:13.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:13.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.162Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:12:14.405Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:14","latency":"89.238µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:14","latency":"77.568µs"} +{"level":"debug","ts":"2023-08-08T06:12:15.017Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.786Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1}} +{"level":"info","ts":"2023-08-08T06:12:15.786Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:16.036Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.687Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","initialRound":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"deviation":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"deltaC":0,"result":true,"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":5,"Round":3},"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":1},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000637152} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000626227} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"msgRound":1,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"msgRound":2,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":4,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"observationCount":1} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"sender":3,"msgEpoch":8,"msgRound":2,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"requiredObservationCount":3,"round":2,"observationCount":2} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"msgRound":2,"round":2,"sender":4,"msgEpoch":8,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"observationCount":3,"requiredObservationCount":3,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:17.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"sender":1,"msgEpoch":8,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:12:17.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:18.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.203Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:18.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.266Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":1}} +{"level":"info","ts":"2023-08-08T06:12:19.266Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:19.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:19","latency":"88.732µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:19","latency":"105.838µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.839Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.928Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.340Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:21.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"initialRound":false,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","latestAcceptedEpochRound":{"Epoch":8,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":5,"Round":3},"result":true,"reportEpochRound":{"Epoch":8,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.00064182} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.00069967} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":3,"observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"sender":2,"epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"sender":2,"msgEpoch":8,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":3,"round":3,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"sender":3,"msgEpoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"observationCount":2,"requiredObservationCount":3,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":3,"sender":4,"msgEpoch":8,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3,"observationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"msgEpoch":8,"msgRound":3,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:21.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.023Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.837Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.040Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:12:23.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.110Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:24","latency":"81.543µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:24","latency":"80.173µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.923Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.115Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:25.810Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deltaC":0,"result":true,"alphaReportInfinite":false,"deltaCTimeout":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"unfulfilledRequest":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":4,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"round":3,"sender":2,"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":3},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"latestAcceptedEpochRound":{"Epoch":8,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":9,"candidateEpochs":[9,9,9]} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","l":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"e":8} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":1,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000577204} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000634807} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9,"round":1,"observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:25.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.140Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.988Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.190Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.587Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.038Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.196Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:28.240Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.124Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.293Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.365Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:12:29.698Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:29","latency":"94.911µs"} +{"level":"debug","ts":"2023-08-08T06:12:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:29","latency":"99.054µs"} +{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"initialRound":false,"deviation":true,"alphaReportPPB":0,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","alphaReportInfinite":false,"result":true} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":3,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":2,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"latestAcceptedEpochRound":{"Epoch":8,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1}} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.0005754} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000674084} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:30.127Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.321Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.523Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.205Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:33.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:33.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","deltaC":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"initialRound":false,"alphaReportPPB":0,"result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":2,"sender":3,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","result":true,"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"contractEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"info","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000657226} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000696394} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":2,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":4,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":2,"sender":1,"oid":2} +{"level":"debug","ts":"2023-08-08T06:12:34.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.024Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:34.024Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:34.227Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"} +{"level":"debug","ts":"2023-08-08T06:12:34.227Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537"} +{"level":"debug","ts":"2023-08-08T06:12:34.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.600Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.677Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"} +{"level":"debug","ts":"2023-08-08T06:12:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:34","latency":"84.932µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:34","latency":"87.397µs"} +{"level":"debug","ts":"2023-08-08T06:12:35.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.420Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"} +{"level":"debug","ts":"2023-08-08T06:12:35.420Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"],"id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537"} +{"level":"debug","ts":"2023-08-08T06:12:35.420Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537","signatures":["3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"]} +{"level":"debug","ts":"2023-08-08T06:12:35.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.703Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.736Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.573Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.776Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.782Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:37.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"result":true,"deltaCTimeout":true,"alphaReportPPB":0,"initialRound":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deltaC":0} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":3,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":3,"epoch":9,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportEpochRound":{"Epoch":9,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":9,"Round":2},"alphaAcceptPPB":0,"result":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":3,"sender":4,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":3,"epoch":9,"e":9,"l":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"info","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000637334} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000696363} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":1,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"leader":2,"round":1,"sender":2,"msgEpoch":10,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observationCount":1,"requiredObservationCount":3,"oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"msgRound":1,"round":1,"sender":3,"msgEpoch":10} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"msgEpoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"msgRound":1,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"leader":2,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:37.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"msgRound":1,"round":1,"sender":1,"msgEpoch":10,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:37.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:38.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.206Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:38.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.826Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.713Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:39","latency":"82.718µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:39","latency":"90.487µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.225Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.956Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:41.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","unfulfilledRequest":false,"result":true,"alphaReportInfinite":false,"deviation":true,"deltaC":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1}} +{"level":"debug","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"reportEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000628349} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000653443} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"msgRound":1,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":4,"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":2,"msgEpoch":10,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observationCount":1,"requiredObservationCount":3,"round":2,"oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":10,"msgRound":2,"round":2,"oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","sender":3} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"msgEpoch":10,"msgRound":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"requiredObservationCount":3,"round":2,"observationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:41.836Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2,"sender":1,"msgEpoch":10,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:12:41.836Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.048Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.943Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.206Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:43.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.939Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.567Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:12:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:44","latency":"85.755µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:44","latency":"90.439µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.024Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.166Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.429Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:45.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","initialRound":false,"deviation":true,"alphaReportPPB":0,"unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"result":true,"deltaC":0,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"contractEpochRound":{"Epoch":10,"Round":1},"reportEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000667127} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000717961} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"msgRound":2,"oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":3,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"sender":2,"msgEpoch":10,"msgRound":3,"oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"observationCount":1,"requiredObservationCount":3,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":3,"msgEpoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","requiredObservationCount":3,"round":3,"observationCount":2} +{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":3,"sender":4,"msgEpoch":10,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:45.841Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgRound":3,"round":3,"sender":1,"msgEpoch":10,"oid":2,"epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:45.841Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:46.035Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.052Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.109Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.276Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.138Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:48.340Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.563Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.648Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:49","latency":"86.406µs"} +{"level":"debug","ts":"2023-08-08T06:12:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:49","latency":"74.705µs"} +{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviation":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"messageRound":4} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":3,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":4} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":10,"Round":3},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":11,"candidateEpochs":[11,11,11]} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"e":10,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":1,"epoch":10,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.00065664} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.00066703} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"msgEpoch":11,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"msgEpoch":11,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"leader":2,"round":1,"sender":4,"msgEpoch":11,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1,"sender":1,"msgEpoch":11} +{"level":"debug","ts":"2023-08-08T06:12:49.847Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:50.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.715Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.319Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.371Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.776Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.385Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.568Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.790Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:53.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.583Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportPPB":0,"unfulfilledRequest":false,"deviation":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","alphaReportInfinite":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"initialRound":false,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":10,"Round":3},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000635658} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000740522} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"leader":2,"round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":2,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"sender":2,"msgEpoch":11,"msgRound":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":2,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":2,"sender":3,"msgEpoch":11,"msgRound":2} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"leader":2,"round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgRound":2,"round":2,"sender":4,"msgEpoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":3,"requiredObservationCount":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"msgEpoch":11,"msgRound":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:54.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.442Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:54","latency":"87.325µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:54","latency":"89.772µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.503Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.705Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.534Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.547Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.813Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:57.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportInfinite":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","unfulfilledRequest":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"reportingPlugin":"NumericalMedian","deltaC":0,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":11,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000665067} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000770107} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"msgRound":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":2,"epoch":11,"oid":2} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":4,"epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":3,"sender":2,"msgEpoch":11,"msgRound":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"observationCount":1,"requiredObservationCount":3,"round":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"msgEpoch":11,"msgRound":3,"round":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"oid":2,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgEpoch":11,"msgRound":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":3,"observationCount":3} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:57.856Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":3,"sender":1,"msgEpoch":11,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:57.856Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:57.952Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:58.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.877Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.747Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.770Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:12:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:59","latency":"75.805µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:59","latency":"100.338µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.660Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.023Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.686Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.827Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:13:01.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deltaC":0,"unfulfilledRequest":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"result":true,"alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false} +{"level":"debug","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":2,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"messageRound":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"latestAcceptedEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":3,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":4,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","candidateEpochs":[12,12,12],"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":12} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} +{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"e":11,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":12,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":1,"epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:02.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.052Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:13:03.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.202Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:04","latency":"88.983µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:04","latency":"164.538µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.909Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.215Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.956Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.247Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.985Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.188Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.905Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.072Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:13:08.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.937Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.341Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:09","latency":"95.329µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:09","latency":"149.754µs"} +{"level":"debug","ts":"2023-08-08T06:13:10.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.075Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.535Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.210Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:13:13.391Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.147Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:14","latency":"102.198µs"} +{"level":"debug","ts":"2023-08-08T06:13:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:14","latency":"100.391µs"} +{"level":"debug","ts":"2023-08-08T06:13:14.973Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} +{"level":"debug","ts":"2023-08-08T06:13:15.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.526Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.729Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.571Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:17.276Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":2,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:13:17.276Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} +{"level":"debug","ts":"2023-08-08T06:13:17.278Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log new file mode 100644 index 000000000..35c28ce08 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + + +WARNING: enabling "trust" authentication for local connections +Success. You can now start the database server using: +You can change this by editing pg_hba.conf or using the option -A, or + +--auth-local and --auth-host, the next time you run initdb. + pg_ctl -D /var/lib/postgresql/data -l logfile start + +waiting for server to start....2023-08-08 06:04:07.558 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:07.641 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC +2023-08-08 06:04:07.645 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +2023-08-08 06:04:08.256 UTC [48] LOG: received fast shutdown request +waiting for server to shut down....2023-08-08 06:04:08.261 UTC [48] LOG: aborting any active transactions +2023-08-08 06:04:08.262 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-08 06:04:08.339 UTC [50] LOG: shutting down +2023-08-08 06:04:08.354 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-08 06:04:08.365 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-08 06:04:08.365 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-08 06:04:08.367 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-08 06:04:08.380 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC +2023-08-08 06:04:08.439 UTC [1] LOG: database system is ready to accept connections +2023-08-08 06:04:09.811 UTC [92] FATAL: role "chainlink" does not exist +2023-08-08 06:04:10.839 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-08 06:04:10.839 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-08 06:04:10.839 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-08 06:04:10.839 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-08 06:04:10.840 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-08 06:04:10.840 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log new file mode 100644 index 000000000..aa1633736 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log @@ -0,0 +1,1686 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-08T06:04:10.644Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.644Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.644Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:10.645Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} +{"level":"debug","ts":"2023-08-08T06:04:10.740Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.740Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:10.740Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"e1ceebd7-9ed8-4cfa-9c16-bd23ed880b78"} +{"level":"debug","ts":"2023-08-08T06:04:10.745Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"e1ceebd7-9ed8-4cfa-9c16-bd23ed880b78"} +{"level":"debug","ts":"2023-08-08T06:04:10.839Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} +2023/08/08 06:04:11 OK 0001_initial.sql +2023/08/08 06:04:11 OK 0002_gormv2.sql +2023/08/08 06:04:11 OK 0003_eth_logs_table.sql +2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql +2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql +2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql +2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/08 06:04:11 OK 0010_bridge_fk.sql +2023/08/08 06:04:11 OK 0011_latest_round_requested.sql +2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql +2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql +2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql +2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql +2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/08 06:04:11 OK 0018_add_node_version_table.sql +2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/08 06:04:11 OK 0020_remove_result_task.sql +2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql +2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql +2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql +2023/08/08 06:04:11 OK 0025_create_log_config_table.sql +2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql +2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/08 06:04:11 OK 0028_vrf_v2.sql +2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql +2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql +2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql +2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql +2023/08/08 06:04:11 OK 0036_external_job_id.go +2023/08/08 06:04:11 OK 0037_cascade_deletes.sql +2023/08/08 06:04:11 OK 0038_create_csa_keys.sql +2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql +2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql +2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql +2023/08/08 06:04:11 OK 0042_create_job_proposals.sql +2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql +2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go +2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/08 06:04:11 OK 0056_multichain.go +2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql +2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/08 06:04:11 OK 0060_combine_keys_tables.sql +2023/08/08 06:04:11 OK 0061_multichain_relations.sql +2023/08/08 06:04:11 OK 0062_upgrade_keepers.sql +2023/08/08 06:04:11 OK 0063_add_job_proposal_timestamp.sql +2023/08/08 06:04:11 OK 0064_cascade_delete_chain_nodes.sql +2023/08/08 06:04:11 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/08 06:04:11 OK 0066_update_job_proposal_status.sql +2023/08/08 06:04:11 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/08 06:04:11 OK 0068_eth_tx_from_address_idx.sql +2023/08/08 06:04:11 OK 0069_remove_unused_columns.sql +2023/08/08 06:04:11 OK 0070_dynamic_fee_txes.sql +2023/08/08 06:04:11 OK 0071_allow_null_json_serializable.sql +2023/08/08 06:04:11 OK 0072_drop_unused_tables.sql +2023/08/08 06:04:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/08 06:04:11 OK 0074_simulation_eth_tx.sql +2023/08/08 06:04:11 OK 0075_unique_job_names.sql +2023/08/08 06:04:11 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/08 06:04:11 OK 0077_add_webauthn_table.sql +2023/08/08 06:04:11 OK 0078_only_one_version.sql +2023/08/08 06:04:11 OK 0079_vrf_v2_fields.sql +2023/08/08 06:04:11 OK 0080_drop_unused_cols.sql +2023/08/08 06:04:11 OK 0081_unconsumed_log_broadcasts.sql +2023/08/08 06:04:11 OK 0082_lease_lock.sql +2023/08/08 06:04:11 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/08 06:04:11 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/08 06:04:11 OK 0085_requested_confs_delay.sql +2023/08/08 06:04:11 OK 0086_upgrade_keepers_observation_source.sql +2023/08/08 06:04:11 OK 0087_ocr2_tables.sql +2023/08/08 06:04:11 OK 0088_vrfv2_request_timeout.sql +2023/08/08 06:04:11 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/08 06:04:11 OK 0090_ocr_new_timeouts.sql +2023/08/08 06:04:11 OK 0091_ocr2_relay.sql +2023/08/08 06:04:11 OK 0092_bptxm_tx_checkers.sql +2023/08/08 06:04:11 OK 0093_terra_txm.sql +2023/08/08 06:04:11 OK 0094_blockhash_store_job.sql +2023/08/08 06:04:11 OK 0095_terra_fcd.sql +2023/08/08 06:04:11 OK 0096_create_job_proposal_specs.sql +2023/08/08 06:04:11 OK 0097_bootstrap_spec.sql +2023/08/08 06:04:11 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/08 06:04:11 OK 0099_terra_msgs_created_at.sql +2023/08/08 06:04:11 OK 0100_bootstrap_config.sql +2023/08/08 06:04:11 OK 0101_generic_ocr2.sql +2023/08/08 06:04:11 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/08 06:04:11 OK 0103_terra_msgs_type_url.sql +2023/08/08 06:04:11 OK 0104_terra_cascade_delete.sql +2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql +2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql +2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql +2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql +2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql +2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql +2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql +2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/08 06:04:12 OK 0115_log_poller.sql +2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql +2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql +2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql +2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql +2023/08/08 06:04:12 OK 0121_remove_log_configs.sql +2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql +2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql +2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql +2023/08/08 06:04:12 OK 0126_remove_observation_source.sql +2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql +2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql +2023/08/08 06:04:12 OK 0131_add_multi_user.sql +2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql +2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql +2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql +2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql +2023/08/08 06:04:12 OK 0137_remove_tx_index.sql +2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql +2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql +2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql +2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/08 06:04:12 OK 0144_optimize_lp.sql +2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql +2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/08 06:04:12 OK 0148_dkg_shares.sql +2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql +2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql +2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql +2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql +2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql +2023/08/08 06:04:12 OK 0155_remove_terra.sql +2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql +2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql +2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql +2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql +2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql +2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/08 06:04:12 OK 0164_add_cosmos.sql +2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql +2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql +2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql +2023/08/08 06:04:12 OK 0168_drop_node_tables.sql +2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql +2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql +2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql +2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql +2023/08/08 06:04:12 OK 0174_vrf_owner.sql +2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql +2023/08/08 06:04:12 OK 0176_s4_shared_table.sql +2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql +2023/08/08 06:04:12 OK 0178_drop_access_list.sql +2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql +2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql +2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql +2023/08/08 06:04:12 OK 0183_functions_new_fields.sql +2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql +2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql +2023/08/08 06:04:12 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.543Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID d99311a11634ccef0f68e7ad6ef2f3f9b7594df7e3b2fce9dffae0fde49daaf2 for chain type solana","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:16.543Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:18.659Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID Higab6yz3Z3nDAQUPtpMqoJXorCD57zfTfoBV6G6iiEc","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:20.648Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID f25583c6960dfd2926f20466c63b8fa79d7b491d63699a67b36c3036d870c029","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.844Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:22.967Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:22.968Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-08T06:04:22.968Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} +{"level":"info","ts":"2023-08-08T06:04:22.968Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} +{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-08T06:04:22.968Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} +{"level":"warn","ts":"2023-08-08T06:04:22.969Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 44321. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":44321} +{"level":"debug","ts":"2023-08-08T06:04:22.969Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":44321,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-08T06:04:22.970Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","v1listenPort":44321,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/44321"} +{"level":"debug","ts":"2023-08-08T06:04:22.970Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","id":"ragep2p","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}"} +{"level":"info","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:04:22.971Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"saveLoop"} +{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"recvLoop"} +{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:23.039Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} +{"level":"info","ts":"2023-08-08T06:04:23.039Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.19s","version":"2.4.0@d0c54ea","appID":"e1ceebd7-9ed8-4cfa-9c16-bd23ed880b78"} +{"level":"debug","ts":"2023-08-08T06:04:23.039Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:23.040Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000859786} +{"level":"info","ts":"2023-08-08T06:04:23.047Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-08T06:04:23.051Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011078409} +{"level":"debug","ts":"2023-08-08T06:04:23.051Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:04:24.793Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.80589ms"} +{"level":"debug","ts":"2023-08-08T06:04:24.794Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:24","latency":"186.409µs"} +{"level":"debug","ts":"2023-08-08T06:04:27.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:28.102Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:04:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:29","latency":"105.273µs"} +{"level":"debug","ts":"2023-08-08T06:04:29.795Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:29","latency":"98.389µs"} +{"level":"info","ts":"2023-08-08T06:04:32.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:32.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:34","latency":"119.233µs"} +{"level":"debug","ts":"2023-08-08T06:04:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:34","latency":"95.271µs"} +{"level":"debug","ts":"2023-08-08T06:04:37.972Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:39","latency":"94.369µs"} +{"level":"debug","ts":"2023-08-08T06:04:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:39","latency":"89.547µs"} +{"level":"debug","ts":"2023-08-08T06:04:42.973Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:44","latency":"84.07µs"} +{"level":"debug","ts":"2023-08-08T06:04:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:44","latency":"71.398µs"} +{"level":"debug","ts":"2023-08-08T06:04:47.974Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:04:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:49","latency":"103.166µs"} +{"level":"debug","ts":"2023-08-08T06:04:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:49","latency":"114.464µs"} +{"level":"debug","ts":"2023-08-08T06:04:52.974Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:04:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:54","latency":"103.442µs"} +{"level":"debug","ts":"2023-08-08T06:04:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:54","latency":"117.402µs"} +{"level":"debug","ts":"2023-08-08T06:04:57.975Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:04:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:59","latency":"85.242µs"} +{"level":"debug","ts":"2023-08-08T06:04:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:59","latency":"88.977µs"} +{"level":"debug","ts":"2023-08-08T06:05:02.952Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:05:02.953Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-08T06:05:02.976Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-08T06:05:03.063Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-08T06:05:03.064Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:03","latency":"112.382362ms"} +{"level":"debug","ts":"2023-08-08T06:05:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:04","latency":"104.82µs"} +{"level":"debug","ts":"2023-08-08T06:05:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:04","latency":"117.911µs"} +{"level":"debug","ts":"2023-08-08T06:05:07.976Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:09","latency":"92.897µs"} +{"level":"debug","ts":"2023-08-08T06:05:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:09","latency":"95.011µs"} +{"level":"debug","ts":"2023-08-08T06:05:12.977Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:14","latency":"93.111µs"} +{"level":"debug","ts":"2023-08-08T06:05:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:14","latency":"96.832µs"} +{"level":"debug","ts":"2023-08-08T06:05:17.978Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:19","latency":"88.595µs"} +{"level":"debug","ts":"2023-08-08T06:05:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:19","latency":"85.843µs"} +{"level":"debug","ts":"2023-08-08T06:05:22.367Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:22","latency":"2.23074ms"} +{"level":"debug","ts":"2023-08-08T06:05:22.978Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:24.467Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:24","latency":"1.908086014s"} +{"level":"debug","ts":"2023-08-08T06:05:24.839Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:24","latency":"124.923µs"} +{"level":"debug","ts":"2023-08-08T06:05:24.839Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:24","latency":"199.249µs"} +{"level":"debug","ts":"2023-08-08T06:05:26.770Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:26","latency":"2.112714842s"} +{"level":"debug","ts":"2023-08-08T06:05:27.979Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:28.472Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"75.247µs"} +{"level":"debug","ts":"2023-08-08T06:05:28.662Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"42.302µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:29","latency":"97.123µs"} +{"level":"debug","ts":"2023-08-08T06:05:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:29","latency":"79.632µs"} +{"level":"debug","ts":"2023-08-08T06:05:32.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:34","latency":"87.636µs"} +{"level":"debug","ts":"2023-08-08T06:05:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:34","latency":"69.395µs"} +{"level":"debug","ts":"2023-08-08T06:05:37.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:39","latency":"89.529µs"} +{"level":"debug","ts":"2023-08-08T06:05:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:39","latency":"85.107µs"} +{"level":"debug","ts":"2023-08-08T06:05:42.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:44","latency":"102.05µs"} +{"level":"debug","ts":"2023-08-08T06:05:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:44","latency":"68.753µs"} +{"level":"debug","ts":"2023-08-08T06:05:47.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:49","latency":"111.072µs"} +{"level":"debug","ts":"2023-08-08T06:05:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:49","latency":"111.072µs"} +{"level":"debug","ts":"2023-08-08T06:05:52.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:05:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:54","latency":"86.446µs"} +{"level":"debug","ts":"2023-08-08T06:05:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:54","latency":"95.407µs"} +{"level":"debug","ts":"2023-08-08T06:05:57.982Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:05:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:59","latency":"95.98µs"} +{"level":"debug","ts":"2023-08-08T06:05:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:59","latency":"78.062µs"} +{"level":"debug","ts":"2023-08-08T06:06:02.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:06:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:04","latency":"88.136µs"} +{"level":"debug","ts":"2023-08-08T06:06:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:04","latency":"87.98µs"} +{"level":"debug","ts":"2023-08-08T06:06:07.984Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:09","latency":"101.585µs"} +{"level":"debug","ts":"2023-08-08T06:06:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:09","latency":"84.134µs"} +{"level":"debug","ts":"2023-08-08T06:06:12.984Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:14","latency":"95.283µs"} +{"level":"debug","ts":"2023-08-08T06:06:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:14","latency":"96.925µs"} +{"level":"debug","ts":"2023-08-08T06:06:17.985Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:19","latency":"91.452µs"} +{"level":"debug","ts":"2023-08-08T06:06:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:19","latency":"89.667µs"} +{"level":"debug","ts":"2023-08-08T06:06:22.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:24","latency":"96.435µs"} +{"level":"debug","ts":"2023-08-08T06:06:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:24","latency":"69.771µs"} +{"level":"debug","ts":"2023-08-08T06:06:27.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:29","latency":"89.101µs"} +{"level":"debug","ts":"2023-08-08T06:06:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:29","latency":"91.214µs"} +{"level":"debug","ts":"2023-08-08T06:06:32.987Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:34","latency":"93.332µs"} +{"level":"debug","ts":"2023-08-08T06:06:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:34","latency":"93.61µs"} +{"level":"debug","ts":"2023-08-08T06:06:37.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:06:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:39","latency":"87.138µs"} +{"level":"debug","ts":"2023-08-08T06:06:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:39","latency":"89.421µs"} +{"level":"debug","ts":"2023-08-08T06:06:42.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:44.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:44","latency":"111.721µs"} +{"level":"debug","ts":"2023-08-08T06:06:44.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:44","latency":"73.743µs"} +{"level":"debug","ts":"2023-08-08T06:06:47.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:49","latency":"67.773µs"} +{"level":"debug","ts":"2023-08-08T06:06:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:49","latency":"100.984µs"} +{"level":"debug","ts":"2023-08-08T06:06:52.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:06:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:54","latency":"87.123µs"} +{"level":"debug","ts":"2023-08-08T06:06:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:54","latency":"70.177µs"} +{"level":"debug","ts":"2023-08-08T06:06:57.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:06:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:59","latency":"104.004µs"} +{"level":"debug","ts":"2023-08-08T06:06:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:59","latency":"115.119µs"} +{"level":"debug","ts":"2023-08-08T06:07:02.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:04","latency":"94.476µs"} +{"level":"debug","ts":"2023-08-08T06:07:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:04","latency":"93.924µs"} +{"level":"debug","ts":"2023-08-08T06:07:07.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:07:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:09","latency":"72.376µs"} +{"level":"debug","ts":"2023-08-08T06:07:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:09","latency":"96.172µs"} +{"level":"debug","ts":"2023-08-08T06:07:12.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:07:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:14","latency":"97.917µs"} +{"level":"debug","ts":"2023-08-08T06:07:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:14","latency":"97.964µs"} +{"level":"debug","ts":"2023-08-08T06:07:17.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:07:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:19","latency":"111.983µs"} +{"level":"debug","ts":"2023-08-08T06:07:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:19","latency":"114.38µs"} +{"level":"debug","ts":"2023-08-08T06:07:22.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:24","latency":"83.201µs"} +{"level":"debug","ts":"2023-08-08T06:07:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:24","latency":"91.839µs"} +{"level":"debug","ts":"2023-08-08T06:07:27.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:29","latency":"103.018µs"} +{"level":"debug","ts":"2023-08-08T06:07:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:29","latency":"72.469µs"} +{"level":"debug","ts":"2023-08-08T06:07:32.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:34","latency":"112.984µs"} +{"level":"debug","ts":"2023-08-08T06:07:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:34","latency":"119.669µs"} +{"level":"debug","ts":"2023-08-08T06:07:37.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:07:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:39","latency":"93.459µs"} +{"level":"debug","ts":"2023-08-08T06:07:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:39","latency":"87.894µs"} +{"level":"debug","ts":"2023-08-08T06:07:42.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:44","latency":"87.879µs"} +{"level":"debug","ts":"2023-08-08T06:07:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:44","latency":"94.407µs"} +{"level":"debug","ts":"2023-08-08T06:07:47.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:07:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:49","latency":"74.676µs"} +{"level":"debug","ts":"2023-08-08T06:07:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:49","latency":"94.635µs"} +{"level":"debug","ts":"2023-08-08T06:07:52.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:07:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:54","latency":"91.155µs"} +{"level":"debug","ts":"2023-08-08T06:07:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:54","latency":"64.977µs"} +{"level":"debug","ts":"2023-08-08T06:07:57.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:07:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:59","latency":"87.619µs"} +{"level":"debug","ts":"2023-08-08T06:07:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:59","latency":"89.738µs"} +{"level":"debug","ts":"2023-08-08T06:08:02.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:08:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:04","latency":"74.913µs"} +{"level":"debug","ts":"2023-08-08T06:08:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:04","latency":"101.706µs"} +{"level":"debug","ts":"2023-08-08T06:08:07.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:09","latency":"106.315µs"} +{"level":"debug","ts":"2023-08-08T06:08:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:09","latency":"71.565µs"} +{"level":"debug","ts":"2023-08-08T06:08:12.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:14","latency":"93.541µs"} +{"level":"debug","ts":"2023-08-08T06:08:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:14","latency":"71.261µs"} +{"level":"debug","ts":"2023-08-08T06:08:17.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:19","latency":"82.909µs"} +{"level":"debug","ts":"2023-08-08T06:08:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:19","latency":"93.245µs"} +{"level":"debug","ts":"2023-08-08T06:08:22.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:24","latency":"99.495µs"} +{"level":"debug","ts":"2023-08-08T06:08:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:24","latency":"101.969µs"} +{"level":"debug","ts":"2023-08-08T06:08:28.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:08:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:29","latency":"96.992µs"} +{"level":"debug","ts":"2023-08-08T06:08:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:29","latency":"69.523µs"} +{"level":"debug","ts":"2023-08-08T06:08:33.001Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:34","latency":"92.191µs"} +{"level":"debug","ts":"2023-08-08T06:08:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:34","latency":"107.99µs"} +{"level":"debug","ts":"2023-08-08T06:08:38.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:39","latency":"97.984µs"} +{"level":"debug","ts":"2023-08-08T06:08:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:39","latency":"97.289µs"} +{"level":"debug","ts":"2023-08-08T06:08:43.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:44","latency":"91.848µs"} +{"level":"debug","ts":"2023-08-08T06:08:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:44","latency":"87.367µs"} +{"level":"debug","ts":"2023-08-08T06:08:48.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:49","latency":"88.095µs"} +{"level":"debug","ts":"2023-08-08T06:08:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:49","latency":"95.451µs"} +{"level":"debug","ts":"2023-08-08T06:08:53.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:08:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:54","latency":"89.656µs"} +{"level":"debug","ts":"2023-08-08T06:08:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:54","latency":"88.713µs"} +{"level":"debug","ts":"2023-08-08T06:08:58.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:08:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:59","latency":"92.392µs"} +{"level":"debug","ts":"2023-08-08T06:08:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:59","latency":"103.264µs"} +{"level":"debug","ts":"2023-08-08T06:09:03.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:04","latency":"103.759µs"} +{"level":"debug","ts":"2023-08-08T06:09:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:04","latency":"80.037µs"} +{"level":"debug","ts":"2023-08-08T06:09:08.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:09:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:09","latency":"84.137µs"} +{"level":"debug","ts":"2023-08-08T06:09:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:09","latency":"88.318µs"} +{"level":"debug","ts":"2023-08-08T06:09:13.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:14","latency":"91.107µs"} +{"level":"debug","ts":"2023-08-08T06:09:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:14","latency":"92.607µs"} +{"level":"debug","ts":"2023-08-08T06:09:18.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:19","latency":"86.485µs"} +{"level":"debug","ts":"2023-08-08T06:09:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:19","latency":"93.271µs"} +{"level":"debug","ts":"2023-08-08T06:09:23.009Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:24","latency":"82.818µs"} +{"level":"debug","ts":"2023-08-08T06:09:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:24","latency":"95.061µs"} +{"level":"debug","ts":"2023-08-08T06:09:28.010Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:29","latency":"92.839µs"} +{"level":"debug","ts":"2023-08-08T06:09:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:29","latency":"108.529µs"} +{"level":"info","ts":"2023-08-08T06:09:32.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:09:33.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:09:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:34","latency":"92.733µs"} +{"level":"debug","ts":"2023-08-08T06:09:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:34","latency":"92.18µs"} +{"level":"debug","ts":"2023-08-08T06:09:38.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:09:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:39","latency":"108.091µs"} +{"level":"debug","ts":"2023-08-08T06:09:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:39","latency":"108.528µs"} +{"level":"debug","ts":"2023-08-08T06:09:43.013Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:44","latency":"94.425µs"} +{"level":"debug","ts":"2023-08-08T06:09:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:44","latency":"94.389µs"} +{"level":"debug","ts":"2023-08-08T06:09:46.701Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:46","latency":"65.203µs"} +{"level":"debug","ts":"2023-08-08T06:09:46.892Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:46","latency":"67.009µs"} +{"level":"debug","ts":"2023-08-08T06:09:48.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:49","latency":"87.425µs"} +{"level":"debug","ts":"2023-08-08T06:09:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:49","latency":"86.246µs"} +{"level":"debug","ts":"2023-08-08T06:09:53.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:09:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:54","latency":"89.598µs"} +{"level":"debug","ts":"2023-08-08T06:09:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:54","latency":"86.027µs"} +{"level":"debug","ts":"2023-08-08T06:09:58.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:09:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:59","latency":"83.224µs"} +{"level":"debug","ts":"2023-08-08T06:09:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:59","latency":"87.875µs"} +{"level":"debug","ts":"2023-08-08T06:10:03.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:04","latency":"86.83µs"} +{"level":"debug","ts":"2023-08-08T06:10:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:04","latency":"86.29µs"} +{"level":"debug","ts":"2023-08-08T06:10:08.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:09","latency":"87.966µs"} +{"level":"debug","ts":"2023-08-08T06:10:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:09","latency":"91.422µs"} +{"level":"debug","ts":"2023-08-08T06:10:13.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:14","latency":"79.247µs"} +{"level":"debug","ts":"2023-08-08T06:10:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:14","latency":"83.583µs"} +{"level":"debug","ts":"2023-08-08T06:10:18.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:19","latency":"91.047µs"} +{"level":"debug","ts":"2023-08-08T06:10:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:19","latency":"73.669µs"} +{"level":"debug","ts":"2023-08-08T06:10:23.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:24","latency":"76.019µs"} +{"level":"debug","ts":"2023-08-08T06:10:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:24","latency":"113.66µs"} +{"level":"debug","ts":"2023-08-08T06:10:28.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:29","latency":"93.573µs"} +{"level":"debug","ts":"2023-08-08T06:10:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:29","latency":"89.609µs"} +{"level":"debug","ts":"2023-08-08T06:10:33.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:34","latency":"91.826µs"} +{"level":"debug","ts":"2023-08-08T06:10:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:34","latency":"98.459µs"} +{"level":"debug","ts":"2023-08-08T06:10:38.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:39","latency":"91.761µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:39","latency":"67.476µs"} +{"level":"debug","ts":"2023-08-08T06:10:39.941Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:39","latency":"61.31345ms"} +{"level":"info","ts":"2023-08-08T06:10:40.139Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-08T06:10:40.140Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} +{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"info","ts":"2023-08-08T06:10:40.140Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.293Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.447Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:40.599Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:40.599Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","duration":644} +{"level":"info","ts":"2023-08-08T06:10:40.600Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"info","ts":"2023-08-08T06:10:40.600Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:10:40.600Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"3282afa009cf61d44fc18dc97241b39bdebfbcbd8a3c6cb644e0f2b9fbd0ba05\\\" \\n\\ntransmitterID = \\\"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:40","latency":"467.920708ms"} +{"level":"debug","ts":"2023-08-08T06:10:40.752Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"info","ts":"2023-08-08T06:10:40.752Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ragedisco/v1","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2"} +{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"found":["12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numFound":1,"numLoaded":1,"_id":"discoveryProtocol","numQueried":5,"loaded":["12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":4,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"PeerV2","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"de89575f7498618480e3ec394019f38bfee1c47b3846ac1ad404d0fc8eafc11d","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":4} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"info","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"info","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"previousNe":0,"ne":1} +{"level":"info","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"leader":4,"epoch":1} +{"level":"debug","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:10:40.761Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.002885797} +{"level":"debug","ts":"2023-08-08T06:10:40.761Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.003070649} +{"level":"debug","ts":"2023-08-08T06:10:40.762Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"observation":"COC4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"epoch":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:40.762Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"leader":4,"sender":4,"msgEpoch":1,"msgRound":1,"round":1,"epoch":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:40.762Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":1,"observationCount":1,"requiredObservationCount":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:40.905Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.354Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:41.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.538Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:42.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:43.076Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} +{"level":"warn","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"warn","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} +{"level":"warn","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} +{"level":"info","ts":"2023-08-08T06:10:43.625Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.25.244:6690","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","direction":"out"} +{"level":"info","ts":"2023-08-08T06:10:43.626Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ragedisco/v1","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}"} +{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:10:43.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.493Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:44","latency":"91.857µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:44","latency":"70.828µs"} +{"level":"debug","ts":"2023-08-08T06:10:44.897Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.202Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.720Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:45.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.208Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.568Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.722Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:46.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.225Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.793Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","direction":"in","remoteAddr":"10.14.31.164:41138","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p"} +{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:47.830Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","result":true,"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":2,"Round":2}} +{"level":"info","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3,"oid":4} +{"level":"debug","ts":"2023-08-08T06:10:47.928Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":0,"Round":0},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":2,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":1,"sender":4,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"epoch":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3,"sender":4,"epoch":2} +{"level":"debug","ts":"2023-08-08T06:10:48.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:48.137Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab","signature":"4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4"} +{"level":"debug","ts":"2023-08-08T06:10:48.137Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab"} +{"level":"debug","ts":"2023-08-08T06:10:48.234Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.707Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.797Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab","signature":"4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4"} +{"level":"debug","ts":"2023-08-08T06:10:48.797Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab","signatures":["4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4"]} +{"level":"debug","ts":"2023-08-08T06:10:48.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:48.952Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.257Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.740Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"in","remoteAddr":"10.14.53.196:51830","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} +{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d"} +{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":1,"epoch":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":2,"candidateEpochs":[2,2,3]} +{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"leader":4,"epoch":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":1,"l":4} +{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":1,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","newEpoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"candidateEpochs":[3,3,3]} +{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":2,"l":2} +{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001162486} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001197189} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"observation":"COm4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"sender":4,"msgEpoch":3,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":1,"sender":3,"msgEpoch":3,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"sender":1,"msgEpoch":3} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:49","latency":"89.427µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:49","latency":"100.022µs"} +{"level":"debug","ts":"2023-08-08T06:10:49.893Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:49.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.289Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.88.105:34774","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"in"} +{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":2,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"msg":{"Epoch":2,"Round":2,"Query":null,"AttributedSignedObservations":[{"SignedObservation":{"Observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"vgoWNgFxLinfR70e3VIYhQHnarYaOuLbqRF/hFX28ywVCGiSQXV97yx9ijeoqP0+i5HotJk6k4KAg1ZSSxzXDA=="},"Observer":1},{"SignedObservation":{"Observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"eDNavXDOZHxZ50XXsqVEsm3JoOUwebBxKR3j8PFJpk0dGR59LEs+pKUUugYZ6URmgPp9ljwunvlW7NXZWF/dBQ=="},"Observer":2},{"SignedObservation":{"Observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"LmHRqpqgcM7Np4KDgn3pAwvP4ZRCq8vdyo1u/VjtKU3kBvt8xp579t0AGEz92/vbFVtxP57cD3wS/8XrtBr2DQ=="},"Observer":3}]},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msg":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"msg":{"Epoch":2,"Round":3,"Query":null},"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"sender":2,"msg":{"Epoch":2,"Round":3,"Query":null,"AttributedSignedObservations":[{"SignedObservation":{"Observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"tobJULuLqtPJtqbEQzEa1p99d7lOsHipsZz8dRLvHpRxtSB1hQjsg0bMEW0OhOyLbJfTcBnr6mnQgKPYfAkhAQ=="},"Observer":1},{"SignedObservation":{"Observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"Ph7iKUFBT7QiKngPCZZRGufCMsZ/Yy08lE4KxTV/Wtxud+Qtv/x0497m2OrmH//Znk8UL/uJEi2s3kBErzTxCw=="},"Observer":2},{"SignedObservation":{"Observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"ZRHZHHbVwBNeSbMJ3QxVKZ3RNx3beSn7k8g6K3o4pBHAPFbGMx3VsIzl0PN4gopyncfXSFJmeqBFd7J80sWbCg=="},"Observer":3}]}} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"sender":2,"msg":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"sender":2,"msg":{"Epoch":2,"Round":4,"Query":null},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":3,"msgRound":1,"oid":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:50.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:50.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:51.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.006Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:52.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.015Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.021Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:53.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:53.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","reportingPlugin":"NumericalMedian","deltaC":0,"result":true,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"deviation":true} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":1,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true,"reportEpochRound":{"Epoch":3,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001272336} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001329942} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"msgRound":1} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":4,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"msgEpoch":3,"msgRound":2,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":2,"sender":2,"msgEpoch":3,"msgRound":2,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":2,"observationCount":2} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"sender":1,"msgEpoch":3,"msgRound":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":2,"sender":3,"msgEpoch":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:53.771Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:53.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.105Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:54","latency":"121.228µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:54","latency":"122.68µs"} +{"level":"debug","ts":"2023-08-08T06:10:54.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:55.906Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:10:56.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:56.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.245Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:57.551Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportPPB":0,"deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2},"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaCTimeout":true,"reportingPlugin":"NumericalMedian","deviation":true,"result":true,"unfulfilledRequest":false,"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deviates":true,"result":true,"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00113097} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001172211} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":2,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"sender":1,"epoch":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":3,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":3,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":3,"round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"msgEpoch":3} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"observationCount":2,"requiredObservationCount":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":3,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.776Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"round":3,"sender":3,"msgEpoch":3,"msgRound":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:10:57.776Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:10:58.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:10:58.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.266Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.353Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:58.572Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.276Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.304Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.610Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:10:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:59","latency":"88.973µs"} +{"level":"debug","ts":"2023-08-08T06:10:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:59","latency":"94.3µs"} +{"level":"debug","ts":"2023-08-08T06:11:00.303Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.373Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:00.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.347Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.501Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:01.740Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaC":0,"deltaCTimeout":true,"alphaReportPPB":0,"deviation":true,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","result":true} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","roundMax":3,"oid":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":4} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"reportEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":4,"candidateEpochs":[4,4,4],"oid":4} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3,"sender":2} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"e":3,"l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} +{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":4,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:11:02.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.556Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:02.790Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:11:03.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.653Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:03.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.702Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:04","latency":"108.198µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:04","latency":"107.534µs"} +{"level":"debug","ts":"2023-08-08T06:11:04.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.583Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.626Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:05.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.798Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:06.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.658Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.734Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.887Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:07.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:08.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.809Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:08.970Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.704Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:09","latency":"84.724µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:09","latency":"91.897µs"} +{"level":"debug","ts":"2023-08-08T06:11:09.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:10.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.054Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.060Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:11:11.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:11.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.176Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:12.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:13.048Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.201Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:13.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.019Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.279Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:14","latency":"87.219µs"} +{"level":"debug","ts":"2023-08-08T06:11:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:14","latency":"88.764µs"} +{"level":"debug","ts":"2023-08-08T06:11:15.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.151Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:15.405Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:16.479Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:17.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:18.215Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.362Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:18.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.230Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.538Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.562Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:19","latency":"89.57µs"} +{"level":"debug","ts":"2023-08-08T06:11:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:19","latency":"110.687µs"} +{"level":"debug","ts":"2023-08-08T06:11:20.295Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.470Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:20.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.564Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.654Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":5} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","e":4,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":4,"leader":0} +{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001168477} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001139235} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":5,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"leader":4,"round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"msgEpoch":5,"msgRound":1,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observationCount":2,"requiredObservationCount":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":1,"sender":3,"msgEpoch":5,"msgRound":1,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observationCount":3} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"msgRound":1,"round":1,"sender":1,"msgEpoch":5,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:22.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:22.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.025Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:23.465Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.659Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:23.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.786Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:24","latency":"73.061µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:24","latency":"105.087µs"} +{"level":"debug","ts":"2023-08-08T06:11:24.888Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.550Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.763Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:25.783Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001239042} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.00141053} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"msgRound":1,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":1,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"epoch":5,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":2,"sender":4,"msgEpoch":5,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"sender":3,"msgEpoch":5} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"msgEpoch":5,"msgRound":2,"round":2,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":2,"sender":1,"msgEpoch":5,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:25.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:25.916Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.213Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:11:26.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:26.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:27.886Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.009Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:11:28.614Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:28.935Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.089Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"deltaCTimeout":true,"result":true,"initialRound":false,"alphaReportInfinite":false,"deviation":true,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z"} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"round":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001172904} +{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001217674} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"msgRound":2,"oid":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","sender":1,"epoch":5,"round":2,"oid":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"sender":2,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":2,"sender":3,"oid":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":4,"msgEpoch":5,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"round":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observationCount":1} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":3,"sender":3,"msgEpoch":5,"msgRound":3,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observationCount":2,"requiredObservationCount":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":3,"round":3,"sender":2,"msgEpoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observationCount":3} +{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:29","latency":"96.796µs"} +{"level":"debug","ts":"2023-08-08T06:11:29.792Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"msgEpoch":5,"msgRound":3,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:29","latency":"113.795µs"} +{"level":"debug","ts":"2023-08-08T06:11:29.792Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:29.939Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:29.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:30.944Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.097Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:31.837Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.005Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:32.844Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:33.060Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:33.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:11:33.792Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"deviation":true,"alphaReportPPB":0,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:33.793Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":4,"epoch":5,"leader":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":4,"msgRound":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":4,"msgRound":3,"epoch":5} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}}} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":6,"candidateEpochs":[6,6,6]} +{"level":"info","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"leader":4,"e":5,"l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":6} +{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3} +{"level":"debug","ts":"2023-08-08T06:11:33.912Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.159Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.218Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.312Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:34","latency":"91.773µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:34","latency":"85.236µs"} +{"level":"debug","ts":"2023-08-08T06:11:34.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.172Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.290Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:35.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.013Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.319Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:36.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.037Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.343Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:37.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:38.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.345Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:38.362Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.274Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.360Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.427Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:39","latency":"90.815µs"} +{"level":"debug","ts":"2023-08-08T06:11:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:39","latency":"93.464µs"} +{"level":"debug","ts":"2023-08-08T06:11:40.144Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.449Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:40.496Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.367Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:11:41.410Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.468Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:41.563Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:42.616Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:11:43.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.498Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.617Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:43.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.324Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.630Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:44","latency":"82.557µs"} +{"level":"debug","ts":"2023-08-08T06:11:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:44","latency":"83.242µs"} +{"level":"debug","ts":"2023-08-08T06:11:45.365Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:45.758Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.739Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:46.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.462Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.682Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:47.835Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:11:48.496Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:48.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:49","latency":"79.639µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:49","latency":"67.927µs"} +{"level":"debug","ts":"2023-08-08T06:11:49.808Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:49.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.674Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:50.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.060Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.694Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:51.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:52.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:53.032Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.060Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.185Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":7,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","e":6,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":6,"leader":0} +{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:11:53.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:54","latency":"110.926µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:54","latency":"109.511µs"} +{"level":"debug","ts":"2023-08-08T06:11:54.869Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.139Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.175Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:55.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.225Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.241Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.378Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:56.520Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:11:57.021Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.259Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.327Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:57.412Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:11:58.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:58.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.151Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.532Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:11:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:59","latency":"83.04µs"} +{"level":"debug","ts":"2023-08-08T06:11:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:59","latency":"110.529µs"} +{"level":"debug","ts":"2023-08-08T06:12:00.161Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:00.589Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.209Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.515Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:01.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.593Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:02.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.031Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:03.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.586Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.627Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:03.739Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.587Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.661Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.741Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:04","latency":"84.87µs"} +{"level":"debug","ts":"2023-08-08T06:12:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:04","latency":"98.623µs"} +{"level":"debug","ts":"2023-08-08T06:12:05.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.686Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.737Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:05.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.773Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:06.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.471Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.777Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:07.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.010Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.032Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:08.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.876Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:08.942Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.095Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:09","latency":"105.121µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:09","latency":"73.748µs"} +{"level":"debug","ts":"2023-08-08T06:12:09.947Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:10.722Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:11.673Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:12:11.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.030Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.120Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.273Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:12.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.033Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:13.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","newEpoch":8,"candidateEpochs":[8,8,8],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":7,"l":0} +{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001073884} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00106072} +{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:13.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.125Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:14.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:14","latency":"89.958µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:14","latency":"84.631µs"} +{"level":"debug","ts":"2023-08-08T06:12:14.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.206Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:15.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.169Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:16.893Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:17.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"alphaReportPPB":0,"deltaCTimeout":true,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":1}} +{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001084209} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00115201} +{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":2,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:17.992Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.034Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:18.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.311Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.464Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:18.996Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.301Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.487Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:19.789Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":2},"contractEpochRound":{"Epoch":5,"Round":3}} +{"level":"info","ts":"2023-08-08T06:12:19.790Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:12:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:19","latency":"87.361µs"} +{"level":"debug","ts":"2023-08-08T06:12:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:19","latency":"93.407µs"} +{"level":"debug","ts":"2023-08-08T06:12:20.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:20.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.376Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:21.579Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaCTimeout":true,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","result":true,"alphaReportPPB":0,"deltaC":0,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":2},"latestAcceptedEpochRound":{"Epoch":8,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8} +{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001109963} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001136529} +{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":8,"leader":2,"round":3,"observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:12:22.110Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:22.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:23.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.547Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:23.700Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.252Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.638Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.791Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:24","latency":"112.562µs"} +{"level":"debug","ts":"2023-08-08T06:12:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:24","latency":"90.057µs"} +{"level":"debug","ts":"2023-08-08T06:12:25.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:25.799Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:25.810Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","result":true,"alphaReportInfinite":false,"initialRound":false,"deviation":true,"deltaC":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"leader":2,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","messageRound":4,"roundMax":3,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":4} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":3},"latestAcceptedEpochRound":{"Epoch":8,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","e":8,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"leader":2} +{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"oid":4} +{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001075059} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001086966} +{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3} +{"level":"debug","ts":"2023-08-08T06:12:26.380Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.686Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:26.827Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:12:26.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.419Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:27.985Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:12:27.985Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:28.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:12:28.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.842Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:28.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.549Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:29","latency":"83.697µs"} +{"level":"debug","ts":"2023-08-08T06:12:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:29","latency":"87.155µs"} +{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":3,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":1,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1},"latestAcceptedEpochRound":{"Epoch":8,"Round":3},"result":true,"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001130057} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001421898} +{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:29.855Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:29.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.010Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:30.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.687Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:31.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:32.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.036Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:33.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:33.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","reportingPlugin":"NumericalMedian","deltaC":0,"deltaCTimeout":true,"result":true,"initialRound":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2},"alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":9,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001093943} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001133413} +{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:34.025Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.080Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:34","latency":"107.516µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:34","latency":"112.246µs"} +{"level":"debug","ts":"2023-08-08T06:12:34.816Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.121Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:35.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.150Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.219Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:36.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:37.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:37.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"initialRound":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"epoch":9,"leader":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":3,"round":4,"messageRound":4,"roundMax":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":3,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":10,"candidateEpochs":[10,10,10]} +{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"e":9,"l":3,"oid":4} +{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":9,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001071693} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001079185} +{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"leader":2,"oid":4} +{"level":"debug","ts":"2023-08-08T06:12:38.035Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.037Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:12:38.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.341Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:38.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.047Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.352Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.460Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:39","latency":"90.905µs"} +{"level":"debug","ts":"2023-08-08T06:12:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:39","latency":"103.974µs"} +{"level":"debug","ts":"2023-08-08T06:12:40.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:40.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.198Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.503Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:41.601Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","deltaC":0,"unfulfilledRequest":false,"initialRound":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1},"result":true} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":10,"leader":2,"round":1,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":4,"epoch":10,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":10,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"result":true} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"sender":3,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001088465} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00107357} +{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":10,"leader":2,"round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:41.980Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:12:42.240Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:42.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} +{"level":"debug","ts":"2023-08-08T06:12:43.251Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.557Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.566Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:43.719Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.335Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.632Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.785Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:44","latency":"85.428µs"} +{"level":"debug","ts":"2023-08-08T06:12:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:44","latency":"79.649µs"} +{"level":"debug","ts":"2023-08-08T06:12:45.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.716Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:45.832Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"leader":2,"oid":4,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":10,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"result":true,"reportEpochRound":{"Epoch":10,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001079093} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.00115825} +{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"leader":2,"observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} +{"level":"debug","ts":"2023-08-08T06:12:46.508Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:46.878Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.762Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:47.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.039Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:48.575Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:48.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.002Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:49","latency":"117.18µs"} +{"level":"debug","ts":"2023-08-08T06:12:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:49","latency":"117.195µs"} +{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"deltaCTimeout":true,"deviation":true,"alphaReportPPB":0,"result":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":10,"leader":2,"round":4,"messageRound":4,"roundMax":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":4,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":11,"candidateEpochs":[11,11,11]} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":10,"Round":3},"latestAcceptedEpochRound":{"Epoch":10,"Round":2},"deviates":true,"contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"e":10,"l":2} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":3,"epoch":10} +{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":1,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":3} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001091753} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001175688} +{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2} +{"level":"debug","ts":"2023-08-08T06:12:49.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:49.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.065Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:50.914Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.012Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.067Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.715Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:51.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.021Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.099Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:52.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:12:53.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:53.116Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportInfinite":false,"deviation":true,"deltaC":0,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"deltaCTimeout":true,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":1} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":3}} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001218492} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001283325} +{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-08T06:12:53.868Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.018Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.171Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:54","latency":"114.991µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:54","latency":"137.609µs"} +{"level":"debug","ts":"2023-08-08T06:12:54.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.104Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.257Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:55.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.263Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:56.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.133Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:12:57.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.270Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:57.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:12:57.852Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"deviation":true,"initialRound":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","result":true} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"epoch":11,"round":2} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":2,"sender":4} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","latestAcceptedEpochRound":{"Epoch":11,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":2},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":11,"Round":2}} +{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001218972} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001398776} +{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"round":3,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:12:58.020Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:12:58.214Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:58.367Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.084Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:12:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:59","latency":"89.055µs"} +{"level":"debug","ts":"2023-08-08T06:12:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:59","latency":"94.791µs"} +{"level":"debug","ts":"2023-08-08T06:13:00.094Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.253Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:00.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.305Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:01.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","initialRound":false,"alphaReportPPB":0,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","deviation":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"deltaC":0,"deltaCTimeout":true,"result":true} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"messageRound":4,"roundMax":3,"round":4} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3,"sender":4,"epoch":11} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":12,"candidateEpochs":[12,12,12]} +{"level":"info","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":11,"l":2} +{"level":"info","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":0,"epoch":12,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":1,"epoch":11,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} +{"level":"debug","ts":"2023-08-08T06:13:02.011Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} +{"level":"info","ts":"2023-08-08T06:13:02.011Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:13:02.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.164Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"} +{"level":"debug","ts":"2023-08-08T06:13:02.164Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9"} +{"level":"debug","ts":"2023-08-08T06:13:02.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:02.530Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"} +{"level":"debug","ts":"2023-08-08T06:13:03.042Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-08T06:13:03.211Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"} +{"level":"debug","ts":"2023-08-08T06:13:03.211Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"],"id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9"} +{"level":"debug","ts":"2023-08-08T06:13:03.211Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9","signatures":["2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"]} +{"level":"debug","ts":"2023-08-08T06:13:03.230Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.361Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:03.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.232Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.432Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.537Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.585Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:04","latency":"93.113µs"} +{"level":"debug","ts":"2023-08-08T06:13:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:04","latency":"68.92µs"} +{"level":"debug","ts":"2023-08-08T06:13:05.289Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.595Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:05.661Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:06.720Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.364Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.615Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:07.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.043Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:13:08.369Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.674Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:08.792Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.681Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.695Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:09","latency":"160.817µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:09","latency":"172.521µs"} +{"level":"debug","ts":"2023-08-08T06:13:09.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.688Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.737Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:10.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.766Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:11.807Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":8,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"info","ts":"2023-08-08T06:13:11.807Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:13:11.880Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.287Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} +{"level":"debug","ts":"2023-08-08T06:13:12.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:12.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.043Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-08T06:13:13.572Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.794Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportEpochRound":{"Epoch":5,"Round":3},"contractEpochRound":{"Epoch":11,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-08T06:13:13.794Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} +{"level":"debug","ts":"2023-08-08T06:13:13.863Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:13.877Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.639Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:14","latency":"101.817µs"} +{"level":"debug","ts":"2023-08-08T06:13:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:14","latency":"101.902µs"} +{"level":"debug","ts":"2023-08-08T06:13:14.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:14.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.104Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:15.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.119Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.645Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:16.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:17.151Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:17.649Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:17.955Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:18.044Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-08T06:13:18.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:18.206Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:18.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:19.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:19.132Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:19.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:19.765Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:19","latency":"98.579µs"} +{"level":"debug","ts":"2023-08-08T06:13:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:19","latency":"101.532µs"} +{"level":"debug","ts":"2023-08-08T06:13:19.818Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1}} +{"level":"info","ts":"2023-08-08T06:13:19.818Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} +{"level":"debug","ts":"2023-08-08T06:13:20.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:20.230Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} +{"level":"debug","ts":"2023-08-08T06:13:20.383Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log new file mode 100644 index 000000000..8676cefe2 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log @@ -0,0 +1,288 @@ +6:04AM INF Starting external adapter Port=:6060 +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:04AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:05AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:06AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:07AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:08AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:09AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Index Endpoint=/ +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Index Endpoint=/ +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Index Endpoint=/ +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Index Endpoint=/ +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Index Endpoint=/ +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Index Endpoint=/ +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:10AM INF Five Endpoint=/five Result=5 +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Index Endpoint=/ +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Index Endpoint=/ +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Five Endpoint=/five Result=5 +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:11AM INF Index Endpoint=/ +6:12AM INF Index Endpoint=/ +6:12AM INF Index Endpoint=/ +6:12AM INF Index Endpoint=/ +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Index Endpoint=/ +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:12AM INF Five Endpoint=/five Result=5 +6:13AM INF Index Endpoint=/ +6:13AM INF Index Endpoint=/ +6:13AM INF Index Endpoint=/ +6:13AM INF Index Endpoint=/ +6:13AM INF Index Endpoint=/ diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log new file mode 100644 index 000000000..f35a3c74c --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log @@ -0,0 +1,2239 @@ +Ledger location: test-ledger +Log: test-ledger/validator.log +Initializing... +Waiting for fees to stabilize 1... +Waiting for fees to stabilize 2... +Connecting... +Identity: CCMYbQzvbF82yYPbkFLsXpmqNWrupsJ19XSYfC5R6GGW +Genesis Hash: GgzVkuVH25sarknrv17QECNMuUp9QZb7ffMmao6pbncZ +Version: 1.13.3 +Shred Version: 59689 +Gossip Address: 127.0.0.1:1024 +TPU Address: 127.0.0.1:1027 +JSON RPC URL: http://127.0.0.1:8899 +00:00:01 | Processed Slot: 1 | Confirmed Slot: 1 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 0 | ◎500.000000000 +00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 +00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 +00:00:02 | Processed Slot: 3 | Confirmed Slot: 3 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 2 | ◎499.999990000 +00:00:02 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 +00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 +00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 +00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 +00:00:03 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 +00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 +00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 +00:00:04 | Processed Slot: 8 | Confirmed Slot: 8 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 7 | ◎499.999965000 +00:00:04 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 +00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 +00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 +00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 +00:00:05 | Processed Slot: 11 | Confirmed Slot: 11 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999950000 +00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 +00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 +00:00:06 | Processed Slot: 13 | Confirmed Slot: 13 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 12 | ◎499.999940000 +00:00:06 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 +00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 +00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 +00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 +00:00:07 | Processed Slot: 16 | Confirmed Slot: 16 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 15 | ◎499.999925000 +00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 +00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 +00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 +00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 +00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 +00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 +00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 +00:00:09 | Processed Slot: 21 | Confirmed Slot: 21 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 20 | ◎499.999900000 +00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 +00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 +00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 +00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 +00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 +00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 +00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 +00:00:11 | Processed Slot: 26 | Confirmed Slot: 26 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 25 | ◎499.999875000 +00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 +00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 +00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 +00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 +00:00:13 | Processed Slot: 29 | Confirmed Slot: 29 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 28 | ◎499.999860000 +00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 +00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 +00:00:13 | Processed Slot: 31 | Confirmed Slot: 31 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 30 | ◎499.999850000 +00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 +00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 +00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 +00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 +00:00:15 | Processed Slot: 34 | Confirmed Slot: 34 | Finalized Slot: 2 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 33 | ◎499.999835000 +00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 +00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 +00:00:15 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 +00:00:16 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 +00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 +00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 +00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 +00:00:17 | Processed Slot: 39 | Confirmed Slot: 39 | Finalized Slot: 7 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 38 | ◎499.999810000 +00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 +00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 +00:00:17 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 +00:00:18 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 +00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 +00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 +00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 +00:00:19 | Processed Slot: 44 | Confirmed Slot: 44 | Finalized Slot: 12 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 43 | ◎499.999785000 +00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 +00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 +00:00:19 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 +00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 +00:00:20 | Processed Slot: 47 | Confirmed Slot: 47 | Finalized Slot: 15 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 46 | ◎499.999770000 +00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 +00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 +00:00:21 | Processed Slot: 49 | Confirmed Slot: 49 | Finalized Slot: 17 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 48 | ◎499.999760000 +00:00:21 | Processed Slot: 50 | Confirmed Slot: 49 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999760000 +00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 +00:00:21 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 +00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 +00:00:22 | Processed Slot: 52 | Confirmed Slot: 52 | Finalized Slot: 20 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 51 | ◎499.999745000 +00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 +00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 +00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 +00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 +00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 +00:00:23 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 +00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 +00:00:24 | Processed Slot: 57 | Confirmed Slot: 57 | Finalized Slot: 25 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 56 | ◎499.999720000 +00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 +00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 +00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 +00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 +00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 +00:00:25 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 +00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 +00:00:26 | Processed Slot: 62 | Confirmed Slot: 62 | Finalized Slot: 30 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 61 | ◎499.999695000 +00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 +00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 +00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 +00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 +00:00:27 | Processed Slot: 65 | Confirmed Slot: 65 | Finalized Slot: 33 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 64 | ◎499.999680000 +00:00:27 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 +00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 +00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 +00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 +00:00:28 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 +00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 +00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 +00:00:29 | Processed Slot: 70 | Confirmed Slot: 70 | Finalized Slot: 38 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 69 | ◎499.999655000 +00:00:29 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 +00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 +00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 +00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 +00:00:31 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 +00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 +00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 +00:00:31 | Processed Slot: 75 | Confirmed Slot: 75 | Finalized Slot: 43 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 74 | ◎499.999630000 +00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 +00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 +00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 +00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 +00:00:33 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 +00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 +00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 +00:00:33 | Processed Slot: 80 | Confirmed Slot: 80 | Finalized Slot: 48 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 79 | ◎499.999605000 +00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 +00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 +00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 +00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 +00:00:35 | Processed Slot: 83 | Confirmed Slot: 83 | Finalized Slot: 51 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 82 | ◎499.999590000 +00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 +00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 +00:00:35 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 +00:00:36 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 +00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 +00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 +00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 +00:00:37 | Processed Slot: 88 | Confirmed Slot: 88 | Finalized Slot: 56 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 87 | ◎499.999565000 +00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 +00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 +00:00:37 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 +00:00:38 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 +00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 +00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 +00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 +00:00:39 | Processed Slot: 93 | Confirmed Slot: 93 | Finalized Slot: 61 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 92 | ◎499.999540000 +00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 +00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 +00:00:39 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 +00:00:40 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 +00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 +00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 +00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 +00:00:41 | Processed Slot: 98 | Confirmed Slot: 98 | Finalized Slot: 66 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 97 | ◎499.999515000 +00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 +00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 +00:00:41 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 +00:00:42 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 +00:00:42 | Processed Slot: 101 | Confirmed Slot: 101 | Finalized Slot: 69 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 100 | ◎499.999500000 +00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 +00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 +00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 +00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 +00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 +00:00:43 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 +00:00:44 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 +00:00:44 | Processed Slot: 106 | Confirmed Slot: 106 | Finalized Slot: 74 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 105 | ◎499.999475000 +00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 +00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 +00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 +00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 +00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 +00:00:45 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 +00:00:46 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 +00:00:46 | Processed Slot: 111 | Confirmed Slot: 111 | Finalized Slot: 79 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 110 | ◎499.999450000 +00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 +00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 +00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 +00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 +00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 +00:00:47 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 +00:00:48 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 +00:00:48 | Processed Slot: 116 | Confirmed Slot: 116 | Finalized Slot: 84 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 115 | ◎499.999425000 +00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 +00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 +00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 +00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 +00:00:49 | Processed Slot: 119 | Confirmed Slot: 119 | Finalized Slot: 87 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 118 | ◎499.999410000 +00:00:49 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 +00:00:50 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 +00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 +00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 +00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 +00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 +00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 +00:00:51 | Processed Slot: 124 | Confirmed Slot: 124 | Finalized Slot: 92 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 123 | ◎499.999385000 +00:00:51 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 +00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 +00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 +00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 +00:00:52 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 +00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 +00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 +00:00:53 | Processed Slot: 129 | Confirmed Slot: 129 | Finalized Slot: 97 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 128 | ◎499.999360000 +00:00:53 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 +00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 +00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 +00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 +00:00:54 | Processed Slot: 132 | Confirmed Slot: 132 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999345000 +00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 +00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 +00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 133 | ◎499.999335000 +00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999335000 +00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 +00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 +00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 +00:00:56 | Processed Slot: 137 | Confirmed Slot: 137 | Finalized Slot: 105 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 136 | ◎499.999320000 +00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999320000 +00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999320000 +00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999320000 +00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999320000 +00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999315000 +00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999310000 +00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999310000 +00:00:58 | Processed Slot: 142 | Confirmed Slot: 142 | Finalized Slot: 110 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999305000 +00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 +00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 +00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999295000 +00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999295000 +00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999290000 +00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 +00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 +00:01:00 | Processed Slot: 147 | Confirmed Slot: 147 | Finalized Slot: 115 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999280000 +00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 +00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 +00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999270000 +00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999270000 +00:01:02 | Processed Slot: 150 | Confirmed Slot: 150 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 153 | ◎499.999265000 +00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 +00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 +00:01:02 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999255000 +00:01:03 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999255000 +00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 156 | ◎499.999250000 +00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 +00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 +00:01:04 | Processed Slot: 155 | Confirmed Slot: 155 | Finalized Slot: 123 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 158 | ◎499.999240000 +00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 +00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 +00:01:04 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 +00:01:05 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 +00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 +00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 +00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 +00:01:06 | Processed Slot: 160 | Confirmed Slot: 160 | Finalized Slot: 128 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 163 | ◎499.999215000 +00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 +00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 +00:01:06 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 +00:01:07 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 +00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 +00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 +00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 +00:01:08 | Processed Slot: 165 | Confirmed Slot: 165 | Finalized Slot: 133 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 168 | ◎499.999190000 +00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 +00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 +00:01:08 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 +00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 +00:01:09 | Processed Slot: 168 | Confirmed Slot: 168 | Finalized Slot: 136 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 171 | ◎499.999175000 +00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 +00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 +00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 +00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 +00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 +00:01:10 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 +00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 +00:01:11 | Processed Slot: 173 | Confirmed Slot: 173 | Finalized Slot: 141 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 176 | ◎499.999150000 +00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 +00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 +00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 +00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 +00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 +00:01:12 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 +00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 +00:01:13 | Processed Slot: 178 | Confirmed Slot: 178 | Finalized Slot: 146 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 181 | ◎499.999125000 +00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 +00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 +00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 +00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 +00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 +00:01:14 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 +00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 +00:01:15 | Processed Slot: 183 | Confirmed Slot: 183 | Finalized Slot: 151 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 186 | ◎499.999100000 +00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 +00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 +00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 +00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 +00:01:16 | Processed Slot: 186 | Confirmed Slot: 186 | Finalized Slot: 154 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 189 | ◎499.999085000 +00:01:16 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 +00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 +00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 +00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 +00:01:17 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 +00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 +00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 +00:01:18 | Processed Slot: 191 | Confirmed Slot: 191 | Finalized Slot: 159 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 194 | ◎499.999060000 +00:01:18 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 +00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 +00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 +00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 +00:01:19 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 +00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 +00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 +00:01:20 | Processed Slot: 196 | Confirmed Slot: 196 | Finalized Slot: 164 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 199 | ◎499.999035000 +00:01:20 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 +00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 +00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 +00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 +00:01:21 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 +00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 +00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 +00:01:22 | Processed Slot: 201 | Confirmed Slot: 201 | Finalized Slot: 169 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 204 | ◎499.999010000 +00:01:22 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 +00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 +00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 +00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 +00:01:23 | Processed Slot: 204 | Confirmed Slot: 204 | Finalized Slot: 172 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 207 | ◎499.998995000 +00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 +00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 +00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 +00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 +00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 +00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 +00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 +00:01:25 | Processed Slot: 209 | Confirmed Slot: 209 | Finalized Slot: 177 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 212 | ◎499.998970000 +00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 +00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 +00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 +00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 +00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 +00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 +00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 +00:01:27 | Processed Slot: 214 | Confirmed Slot: 214 | Finalized Slot: 182 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 217 | ◎499.998945000 +00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 +00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 +00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 +00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 +00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 +00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 +00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 +00:01:29 | Processed Slot: 219 | Confirmed Slot: 219 | Finalized Slot: 187 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 222 | ◎499.998920000 +00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 +00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 +00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 +00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 +00:01:31 | Processed Slot: 222 | Confirmed Slot: 222 | Finalized Slot: 190 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 225 | ◎499.998905000 +00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 +00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 +00:01:31 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 +00:01:32 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 +00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 +00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 +00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 +00:01:33 | Processed Slot: 227 | Confirmed Slot: 227 | Finalized Slot: 195 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 230 | ◎499.998880000 +00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 +00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 +00:01:33 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 +00:01:34 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 +00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 +00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 +00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 +00:01:35 | Processed Slot: 232 | Confirmed Slot: 232 | Finalized Slot: 200 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 235 | ◎499.998855000 +00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 +00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 +00:01:35 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 +00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 +00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 +00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 +00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 +00:01:37 | Processed Slot: 237 | Confirmed Slot: 237 | Finalized Slot: 205 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 240 | ◎499.998830000 +00:01:37 | Processed Slot: 238 | Confirmed Slot: 237 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998830000 +00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998825000 +00:01:37 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 +00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 +00:01:38 | Processed Slot: 240 | Confirmed Slot: 240 | Finalized Slot: 208 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 243 | ◎499.998815000 +00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 +00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 +00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998805000 +00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998805000 +00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998800000 +00:01:39 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 +00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 +00:01:40 | Processed Slot: 245 | Confirmed Slot: 245 | Finalized Slot: 213 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 248 | ◎499.998790000 +00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 +00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 +00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998780000 +00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998780000 +00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998775000 +00:01:41 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 +00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 +00:01:42 | Processed Slot: 250 | Confirmed Slot: 250 | Finalized Slot: 218 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 253 | ◎499.998765000 +00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 +00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 +00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998755000 +00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998755000 +00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998750000 +00:01:43 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 +00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 +00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998740000 +00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998740000 +00:01:44 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998735000 +00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 +00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 +00:01:45 | Processed Slot: 258 | Confirmed Slot: 258 | Finalized Slot: 226 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 261 | ◎499.998725000 +00:01:45 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 +00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 +00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998715000 +00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998715000 +00:01:46 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998710000 +00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 +00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 +00:01:47 | Processed Slot: 263 | Confirmed Slot: 263 | Finalized Slot: 231 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 266 | ◎499.998700000 +00:01:47 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 +00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 +00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998690000 +00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998690000 +00:01:49 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998685000 +00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 +00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 +00:01:49 | Processed Slot: 268 | Confirmed Slot: 268 | Finalized Slot: 236 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 271 | ◎499.998675000 +00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 +00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 +00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998665000 +00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998665000 +00:01:51 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998660000 +00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 +00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 +00:01:51 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 276 | ◎499.998650000 +00:01:52 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 276 | ◎499.998650000 +00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 277 | ◎499.998645000 +00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 +00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 +00:01:53 | Processed Slot: 276 | Confirmed Slot: 276 | Finalized Slot: 244 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 279 | ◎499.998635000 +00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 +00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 +00:01:53 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 281 | ◎499.998625000 +00:01:54 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 281 | ◎499.998625000 +00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 282 | ◎499.998620000 +00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 +00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 +00:01:55 | Processed Slot: 281 | Confirmed Slot: 281 | Finalized Slot: 249 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 284 | ◎499.998610000 +00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 +00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 +00:01:55 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 286 | ◎499.998600000 +00:01:56 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 286 | ◎499.998600000 +00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 287 | ◎499.998595000 +00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 +00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 +00:01:57 | Processed Slot: 286 | Confirmed Slot: 286 | Finalized Slot: 254 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 289 | ◎499.998585000 +00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 +00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 +00:01:57 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 291 | ◎499.998575000 +00:01:58 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 291 | ◎499.998575000 +00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 292 | ◎499.998570000 +00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 +00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 +00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 294 | ◎499.998560000 +00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 294 | ◎499.998560000 +00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 295 | ◎499.998555000 +00:01:59 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 +00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 +00:02:00 | Processed Slot: 294 | Confirmed Slot: 294 | Finalized Slot: 262 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 297 | ◎499.998545000 +00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 +00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 +00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 299 | ◎499.998535000 +00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 299 | ◎499.998535000 +00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 300 | ◎499.998530000 +00:02:01 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 +00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 +00:02:02 | Processed Slot: 299 | Confirmed Slot: 299 | Finalized Slot: 267 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 302 | ◎499.998520000 +00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 +00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 +00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 304 | ◎499.998510000 +00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 304 | ◎499.998510000 +00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 305 | ◎499.998505000 +00:02:03 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 +00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 +00:02:04 | Processed Slot: 304 | Confirmed Slot: 304 | Finalized Slot: 272 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 307 | ◎499.998495000 +00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 +00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 +00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998485000 +00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998485000 +00:02:05 | Processed Slot: 307 | Confirmed Slot: 307 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 310 | ◎499.998480000 +00:02:05 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 +00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 +00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 312 | ◎499.998470000 +00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 312 | ◎499.998470000 +00:02:06 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 313 | ◎499.998465000 +00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 +00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 +00:02:07 | Processed Slot: 312 | Confirmed Slot: 312 | Finalized Slot: 280 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 315 | ◎499.998455000 +00:02:07 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 +00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 +00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 317 | ◎499.998445000 +00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 317 | ◎499.998445000 +00:02:08 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 318 | ◎499.998440000 +00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 +00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 +00:02:09 | Processed Slot: 317 | Confirmed Slot: 317 | Finalized Slot: 285 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 320 | ◎499.998430000 +00:02:09 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 +00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 +00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 322 | ◎499.998420000 +00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 322 | ◎499.998420000 +00:02:10 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 323 | ◎499.998415000 +00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 +00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 +00:02:11 | Processed Slot: 322 | Confirmed Slot: 322 | Finalized Slot: 290 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 325 | ◎499.998405000 +00:02:11 | Processed Slot: 323 | Confirmed Slot: 322 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998405000 +00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998400000 +00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 327 | ◎499.998395000 +00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 327 | ◎499.998395000 +00:02:12 | Processed Slot: 325 | Confirmed Slot: 325 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 328 | ◎499.998390000 +00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 +00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 +00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 330 | ◎499.998380000 +00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 330 | ◎499.998380000 +00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 331 | ◎499.998375000 +00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 +00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 +00:02:14 | Processed Slot: 330 | Confirmed Slot: 330 | Finalized Slot: 298 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 333 | ◎499.998365000 +00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 +00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 +00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 335 | ◎499.998355000 +00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 335 | ◎499.998355000 +00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 336 | ◎499.998350000 +00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 +00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 +00:02:16 | Processed Slot: 335 | Confirmed Slot: 335 | Finalized Slot: 303 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 338 | ◎499.998340000 +00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 +00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 +00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 340 | ◎499.998330000 +00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 340 | ◎499.998330000 +00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 341 | ◎499.998325000 +00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 +00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 +00:02:18 | Processed Slot: 340 | Confirmed Slot: 340 | Finalized Slot: 308 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 343 | ◎499.998315000 +00:02:19 | Processed Slot: 341 | Confirmed Slot: 340 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998315000 +00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998310000 +00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 345 | ◎499.998305000 +00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 345 | ◎499.998305000 +00:02:20 | Processed Slot: 343 | Confirmed Slot: 343 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 346 | ◎499.998300000 +00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 +00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 +00:02:20 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 348 | ◎499.998290000 +00:02:21 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 348 | ◎499.998290000 +00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 349 | ◎499.998285000 +00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 +00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 +00:02:22 | Processed Slot: 348 | Confirmed Slot: 348 | Finalized Slot: 316 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 351 | ◎499.998275000 +00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 +00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 +00:02:22 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 353 | ◎499.998265000 +00:02:23 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 353 | ◎499.998265000 +00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 354 | ◎499.998260000 +00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 +00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 +00:02:24 | Processed Slot: 353 | Confirmed Slot: 353 | Finalized Slot: 321 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 356 | ◎499.998250000 +00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 +00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 +00:02:24 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 358 | ◎499.998240000 +00:02:25 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 358 | ◎499.998240000 +00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 359 | ◎499.998235000 +00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 +00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 +00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 361 | ◎499.998225000 +00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 361 | ◎499.998225000 +00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 362 | ◎499.998220000 +00:02:26 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 363 | ◎499.998215000 +00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 363 | ◎499.998215000 +00:02:27 | Processed Slot: 361 | Confirmed Slot: 361 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 364 | ◎499.998210000 +00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 +00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 +00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 366 | ◎499.998200000 +00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 366 | ◎499.998200000 +00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 367 | ◎499.998195000 +00:02:28 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 +00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 +00:02:29 | Processed Slot: 366 | Confirmed Slot: 366 | Finalized Slot: 334 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 369 | ◎499.998185000 +00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 +00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 +00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 371 | ◎499.998175000 +00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 371 | ◎499.998175000 +00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 372 | ◎499.998170000 +00:02:30 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 +00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 +00:02:31 | Processed Slot: 371 | Confirmed Slot: 371 | Finalized Slot: 339 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 374 | ◎499.998160000 +00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 +00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 +00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 376 | ◎499.998150000 +00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 376 | ◎499.998150000 +00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 377 | ◎499.998145000 +00:02:32 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 +00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 +00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 379 | ◎499.998135000 +00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 379 | ◎499.998135000 +00:02:33 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 380 | ◎499.998130000 +00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 381 | ◎499.998125000 +00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 381 | ◎499.998125000 +00:02:34 | Processed Slot: 379 | Confirmed Slot: 379 | Finalized Slot: 347 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 382 | ◎499.998120000 +00:02:34 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 +00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 +00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 384 | ◎499.998110000 +00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 384 | ◎499.998110000 +00:02:35 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 385 | ◎499.998105000 +00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 +00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 +00:02:36 | Processed Slot: 384 | Confirmed Slot: 384 | Finalized Slot: 352 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 387 | ◎499.998095000 +00:02:36 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 +00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 +00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.998085000 +00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.998085000 +00:02:37 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 390 | ◎499.998080000 +00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 +00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 +00:02:38 | Processed Slot: 389 | Confirmed Slot: 389 | Finalized Slot: 357 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 392 | ◎499.998070000 +00:02:38 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 +00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 +00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 394 | ◎499.998060000 +00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 394 | ◎499.998060000 +00:02:39 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 395 | ◎499.998055000 +00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 +00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 +00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 397 | ◎499.998045000 +00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 397 | ◎499.998045000 +00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 398 | ◎499.998040000 +00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 +00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 +00:02:41 | Processed Slot: 397 | Confirmed Slot: 397 | Finalized Slot: 365 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 400 | ◎499.998030000 +00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 +00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 +00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 402 | ◎499.998020000 +00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 402 | ◎499.998020000 +00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 403 | ◎499.998015000 +00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 +00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 +00:02:43 | Processed Slot: 402 | Confirmed Slot: 402 | Finalized Slot: 370 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 405 | ◎499.998005000 +00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 +00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 +00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 407 | ◎499.997995000 +00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 407 | ◎499.997995000 +00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 408 | ◎499.997990000 +00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 +00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 +00:02:45 | Processed Slot: 407 | Confirmed Slot: 407 | Finalized Slot: 375 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 410 | ◎499.997980000 +00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 +00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 +00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 412 | ◎499.997970000 +00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 412 | ◎499.997970000 +00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 413 | ◎499.997965000 +00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 +00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 +00:02:47 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 415 | ◎499.997955000 +00:02:48 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 415 | ◎499.997955000 +00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 416 | ◎499.997950000 +00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 +00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 +00:02:49 | Processed Slot: 415 | Confirmed Slot: 415 | Finalized Slot: 383 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 418 | ◎499.997940000 +00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 +00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 +00:02:49 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 420 | ◎499.997930000 +00:02:50 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 420 | ◎499.997930000 +00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 421 | ◎499.997925000 +00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 +00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 +00:02:51 | Processed Slot: 420 | Confirmed Slot: 420 | Finalized Slot: 388 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 423 | ◎499.997915000 +00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 +00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 +00:02:51 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 425 | ◎499.997905000 +00:02:52 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 425 | ◎499.997905000 +00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 426 | ◎499.997900000 +00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 +00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 +00:02:53 | Processed Slot: 425 | Confirmed Slot: 425 | Finalized Slot: 393 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 428 | ◎499.997890000 +00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 +00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 +00:02:53 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 430 | ◎499.997880000 +00:02:54 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 430 | ◎499.997880000 +00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 431 | ◎499.997875000 +00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 +00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 +00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.997865000 +00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.997865000 +00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 434 | ◎499.997860000 +00:02:55 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 +00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 +00:02:56 | Processed Slot: 433 | Confirmed Slot: 433 | Finalized Slot: 401 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 436 | ◎499.997850000 +00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 +00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 +00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 438 | ◎499.997840000 +00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 438 | ◎499.997840000 +00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 439 | ◎499.997835000 +00:02:57 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 +00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 +00:02:58 | Processed Slot: 438 | Confirmed Slot: 438 | Finalized Slot: 406 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 441 | ◎499.997825000 +00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 +00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 +00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 443 | ◎499.997815000 +00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 443 | ◎499.997815000 +00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 444 | ◎499.997810000 +00:02:59 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 +00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 +00:03:00 | Processed Slot: 443 | Confirmed Slot: 443 | Finalized Slot: 411 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 446 | ◎499.997800000 +00:03:00 | Processed Slot: 444 | Confirmed Slot: 443 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997800000 +00:03:00 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997795000 +00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 448 | ◎499.997790000 +00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 448 | ◎499.997790000 +00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 449 | ◎499.997785000 +00:03:01 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 +00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 +00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 451 | ◎499.997775000 +00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 451 | ◎499.997775000 +00:03:02 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 452 | ◎499.997770000 +00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 +00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 +00:03:03 | Processed Slot: 451 | Confirmed Slot: 451 | Finalized Slot: 419 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 454 | ◎499.997760000 +00:03:03 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 +00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 +00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 456 | ◎499.997750000 +00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 456 | ◎499.997750000 +00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 457 | ◎499.997745000 +00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 +00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 +00:03:05 | Processed Slot: 456 | Confirmed Slot: 456 | Finalized Slot: 424 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 459 | ◎499.997735000 +00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 +00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 +00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 461 | ◎499.997725000 +00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 461 | ◎499.997725000 +00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 462 | ◎499.997720000 +00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 +00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 +00:03:07 | Processed Slot: 461 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 464 | ◎499.997710000 +00:03:08 | Processed Slot: 462 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997710000 +00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997705000 +00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 466 | ◎499.997700000 +00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 466 | ◎499.997700000 +00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 467 | ◎499.997695000 +00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 +00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 +00:03:09 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 469 | ◎499.997685000 +00:03:10 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 469 | ◎499.997685000 +00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 470 | ◎499.997680000 +00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 +00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 +00:03:11 | Processed Slot: 469 | Confirmed Slot: 469 | Finalized Slot: 437 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 472 | ◎499.997670000 +00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 +00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 +00:03:11 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 474 | ◎499.997660000 +00:03:12 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 474 | ◎499.997660000 +00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 475 | ◎499.997655000 +00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 +00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 +00:03:13 | Processed Slot: 474 | Confirmed Slot: 474 | Finalized Slot: 442 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 477 | ◎499.997645000 +00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 +00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 +00:03:13 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 479 | ◎499.997635000 +00:03:14 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 479 | ◎499.997635000 +00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 480 | ◎499.997630000 +00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 +00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 +00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 482 | ◎499.997620000 +00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 482 | ◎499.997620000 +00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 483 | ◎499.997615000 +00:03:15 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 484 | ◎499.997610000 +00:03:16 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 484 | ◎499.997610000 +00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 485 | ◎499.997605000 +00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 +00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 +00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 487 | ◎499.997595000 +00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 487 | ◎499.997595000 +00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 488 | ◎499.997590000 +00:03:17 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 +00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 +00:03:18 | Processed Slot: 487 | Confirmed Slot: 487 | Finalized Slot: 455 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 490 | ◎499.997580000 +00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 +00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 +00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 492 | ◎499.997570000 +00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 492 | ◎499.997570000 +00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 493 | ◎499.997565000 +00:03:19 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 +00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 +00:03:20 | Processed Slot: 492 | Confirmed Slot: 492 | Finalized Slot: 460 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 495 | ◎499.997555000 +00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 +00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 +00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 497 | ◎499.997545000 +00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 497 | ◎499.997545000 +00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 498 | ◎499.997540000 +00:03:21 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 +00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 +00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 500 | ◎499.997530000 +00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 500 | ◎499.997530000 +00:03:22 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 501 | ◎499.997525000 +00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 502 | ◎499.997520000 +00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 502 | ◎499.997520000 +00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 503 | ◎499.997515000 +00:03:23 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 +00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 +00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 505 | ◎499.997505000 +00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 505 | ◎499.997505000 +00:03:24 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 506 | ◎499.997500000 +00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 +00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 +00:03:25 | Processed Slot: 505 | Confirmed Slot: 505 | Finalized Slot: 473 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.997490000 +00:03:25 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 +00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 +00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 510 | ◎499.997480000 +00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 510 | ◎499.997480000 +00:03:26 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 511 | ◎499.997475000 +00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 +00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 +00:03:27 | Processed Slot: 510 | Confirmed Slot: 510 | Finalized Slot: 478 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 513 | ◎499.997465000 +00:03:27 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 +00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 +00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 515 | ◎499.997455000 +00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 515 | ◎499.997455000 +00:03:28 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 516 | ◎499.997450000 +00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 +00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 +00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 518 | ◎499.997440000 +00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 518 | ◎499.997440000 +00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 519 | ◎499.997435000 +00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 520 | ◎499.997430000 +00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 520 | ◎499.997430000 +00:03:30 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 521 | ◎499.997425000 +00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 +00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 +00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 523 | ◎499.997415000 +00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 523 | ◎499.997415000 +00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 524 | ◎499.997410000 +00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 +00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 +00:03:32 | Processed Slot: 523 | Confirmed Slot: 523 | Finalized Slot: 491 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 526 | ◎499.997400000 +00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 +00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 +00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 528 | ◎499.997390000 +00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 528 | ◎499.997390000 +00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 529 | ◎499.997385000 +00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 +00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 +00:03:34 | Processed Slot: 528 | Confirmed Slot: 528 | Finalized Slot: 496 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 531 | ◎499.997375000 +00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 +00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 +00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 533 | ◎499.997365000 +00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 533 | ◎499.997365000 +00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 534 | ◎499.997360000 +00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 +00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 +00:03:36 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 536 | ◎499.997350000 +00:03:37 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 536 | ◎499.997350000 +00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 537 | ◎499.997345000 +00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 538 | ◎499.997340000 +00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 538 | ◎499.997340000 +00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 539 | ◎499.997335000 +00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 +00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 +00:03:38 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 541 | ◎499.997325000 +00:03:39 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 541 | ◎499.997325000 +00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 542 | ◎499.997320000 +00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 +00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 +00:03:40 | Processed Slot: 541 | Confirmed Slot: 541 | Finalized Slot: 509 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 544 | ◎499.997310000 +00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 +00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 +00:03:40 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 546 | ◎499.997300000 +00:03:41 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 546 | ◎499.997300000 +00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 547 | ◎499.997295000 +00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 +00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 +00:03:42 | Processed Slot: 546 | Confirmed Slot: 546 | Finalized Slot: 514 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 549 | ◎499.997285000 +00:03:42 | Processed Slot: 547 | Confirmed Slot: 546 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997285000 +00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997280000 +00:03:42 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 551 | ◎499.997275000 +00:03:43 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 551 | ◎499.997275000 +00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 552 | ◎499.997270000 +00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 +00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 +00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 554 | ◎499.997260000 +00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 554 | ◎499.997260000 +00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 555 | ◎499.997255000 +00:03:44 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 556 | ◎499.997250000 +00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 556 | ◎499.997250000 +00:03:45 | Processed Slot: 554 | Confirmed Slot: 554 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 557 | ◎499.997245000 +00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 +00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 +00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 559 | ◎499.997235000 +00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 559 | ◎499.997235000 +00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 560 | ◎499.997230000 +00:03:46 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 +00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 +00:03:47 | Processed Slot: 559 | Confirmed Slot: 559 | Finalized Slot: 527 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 562 | ◎499.997220000 +00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 +00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 +00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 564 | ◎499.997210000 +00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 564 | ◎499.997210000 +00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 565 | ◎499.997205000 +00:03:48 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 +00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 +00:03:49 | Processed Slot: 564 | Confirmed Slot: 564 | Finalized Slot: 532 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 567 | ◎499.997195000 +00:03:49 | Processed Slot: 565 | Confirmed Slot: 564 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997195000 +00:03:49 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997190000 +00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 569 | ◎499.997185000 +00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 569 | ◎499.997185000 +00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 570 | ◎499.997180000 +00:03:50 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 +00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 +00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 572 | ◎499.997170000 +00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 572 | ◎499.997170000 +00:03:51 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 573 | ◎499.997165000 +00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 574 | ◎499.997160000 +00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 574 | ◎499.997160000 +00:03:52 | Processed Slot: 572 | Confirmed Slot: 572 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 575 | ◎499.997155000 +00:03:52 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 +00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 +00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 577 | ◎499.997145000 +00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 577 | ◎499.997145000 +00:03:53 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 578 | ◎499.997140000 +00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 +00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 +00:03:54 | Processed Slot: 577 | Confirmed Slot: 577 | Finalized Slot: 545 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 580 | ◎499.997130000 +00:03:54 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 +00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 +00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 582 | ◎499.997120000 +00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 582 | ◎499.997120000 +00:03:55 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 583 | ◎499.997115000 +00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 +00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 +00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 585 | ◎499.997105000 +00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 585 | ◎499.997105000 +00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 586 | ◎499.997100000 +00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 587 | ◎499.997095000 +00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 587 | ◎499.997095000 +00:03:57 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 588 | ◎499.997090000 +00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 +00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 +00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 590 | ◎499.997080000 +00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 590 | ◎499.997080000 +00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 591 | ◎499.997075000 +00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 592 | ◎499.997070000 +00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 592 | ◎499.997070000 +00:03:59 | Processed Slot: 590 | Confirmed Slot: 590 | Finalized Slot: 558 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 593 | ◎499.997065000 +00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 +00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 +00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 595 | ◎499.997055000 +00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 595 | ◎499.997055000 +00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 596 | ◎499.997050000 +00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 +00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 +00:04:01 | Processed Slot: 595 | Confirmed Slot: 595 | Finalized Slot: 563 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 598 | ◎499.997040000 +00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 +00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 +00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 600 | ◎499.997030000 +00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 600 | ◎499.997030000 +00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 601 | ◎499.997025000 +00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 +00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 +00:04:03 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 603 | ◎499.997015000 +00:04:04 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 603 | ◎499.997015000 +00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 604 | ◎499.997010000 +00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 605 | ◎499.997005000 +00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 605 | ◎499.997005000 +00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 606 | ◎499.997000000 +00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 +00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 +00:04:05 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 608 | ◎499.996990000 +00:04:06 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 608 | ◎499.996990000 +00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 609 | ◎499.996985000 +00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 +00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 +00:04:07 | Processed Slot: 608 | Confirmed Slot: 608 | Finalized Slot: 576 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 611 | ◎499.996975000 +00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 +00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 +00:04:07 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 613 | ◎499.996965000 +00:04:08 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 613 | ◎499.996965000 +00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 614 | ◎499.996960000 +00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 +00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 +00:04:09 | Processed Slot: 613 | Confirmed Slot: 613 | Finalized Slot: 581 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 616 | ◎499.996950000 +00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 +00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 +00:04:09 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 618 | ◎499.996940000 +00:04:10 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 618 | ◎499.996940000 +00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 619 | ◎499.996935000 +00:04:10 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 +00:04:10 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 +00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 621 | ◎499.996925000 +00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 621 | ◎499.996925000 +00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 622 | ◎499.996920000 +00:04:11 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 623 | ◎499.996915000 +00:04:12 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 623 | ◎499.996915000 +00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 624 | ◎499.996910000 +00:04:12 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 +00:04:12 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 +00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 626 | ◎499.996900000 +00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 626 | ◎499.996900000 +00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 627 | ◎499.996895000 +00:04:13 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 +00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 +00:04:14 | Processed Slot: 626 | Confirmed Slot: 626 | Finalized Slot: 594 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 629 | ◎499.996885000 +00:04:14 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 +00:04:14 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 +00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 631 | ◎499.996875000 +00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 631 | ◎499.996875000 +00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 632 | ◎499.996870000 +00:04:15 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 +00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 +00:04:16 | Processed Slot: 631 | Confirmed Slot: 631 | Finalized Slot: 599 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 634 | ◎499.996860000 +00:04:16 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 +00:04:16 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 +00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 636 | ◎499.996850000 +00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 636 | ◎499.996850000 +00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 637 | ◎499.996845000 +00:04:17 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 +00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 +00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 639 | ◎499.996835000 +00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 639 | ◎499.996835000 +00:04:18 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 640 | ◎499.996830000 +00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 641 | ◎499.996825000 +00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 641 | ◎499.996825000 +00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 642 | ◎499.996820000 +00:04:19 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 +00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 +00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 644 | ◎499.996810000 +00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 644 | ◎499.996810000 +00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 645 | ◎499.996805000 +00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 +00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 +00:04:21 | Processed Slot: 644 | Confirmed Slot: 644 | Finalized Slot: 612 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 647 | ◎499.996795000 +00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 +00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 +00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 649 | ◎499.996785000 +00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 649 | ◎499.996785000 +00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 650 | ◎499.996780000 +00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 +00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 +00:04:23 | Processed Slot: 649 | Confirmed Slot: 649 | Finalized Slot: 617 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 652 | ◎499.996770000 +00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 +00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 +00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 654 | ◎499.996760000 +00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 654 | ◎499.996760000 +00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 655 | ◎499.996755000 +00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 +00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 +00:04:25 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 657 | ◎499.996745000 +00:04:26 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 657 | ◎499.996745000 +00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 658 | ◎499.996740000 +00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 659 | ◎499.996735000 +00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 659 | ◎499.996735000 +00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 660 | ◎499.996730000 +00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 +00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 +00:04:27 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 662 | ◎499.996720000 +00:04:28 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 662 | ◎499.996720000 +00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 663 | ◎499.996715000 +00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 +00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 +00:04:29 | Processed Slot: 662 | Confirmed Slot: 662 | Finalized Slot: 630 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 665 | ◎499.996705000 +00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 +00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 +00:04:29 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 667 | ◎499.996695000 +00:04:30 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 667 | ◎499.996695000 +00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 668 | ◎499.996690000 +00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 +00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 +00:04:31 | Processed Slot: 667 | Confirmed Slot: 667 | Finalized Slot: 635 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 670 | ◎499.996680000 +00:04:31 | Processed Slot: 668 | Confirmed Slot: 667 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996680000 +00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996675000 +00:04:31 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 672 | ◎499.996670000 +00:04:32 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 672 | ◎499.996670000 +00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 673 | ◎499.996665000 +00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 +00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 +00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 675 | ◎499.996655000 +00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 675 | ◎499.996655000 +00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 676 | ◎499.996650000 +00:04:33 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 677 | ◎499.996645000 +00:04:34 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 677 | ◎499.996645000 +00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 678 | ◎499.996640000 +00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 +00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 +00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 680 | ◎499.996630000 +00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 680 | ◎499.996630000 +00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 681 | ◎499.996625000 +00:04:35 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 +00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 +00:04:36 | Processed Slot: 680 | Confirmed Slot: 680 | Finalized Slot: 648 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 683 | ◎499.996615000 +00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 +00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 +00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 685 | ◎499.996605000 +00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 685 | ◎499.996605000 +00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 686 | ◎499.996600000 +00:04:37 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 +00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 +00:04:38 | Processed Slot: 685 | Confirmed Slot: 685 | Finalized Slot: 653 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 688 | ◎499.996590000 +00:04:38 | Processed Slot: 686 | Confirmed Slot: 685 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996590000 +00:04:38 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996585000 +00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 690 | ◎499.996580000 +00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 690 | ◎499.996580000 +00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 691 | ◎499.996575000 +00:04:39 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 +00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 +00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 693 | ◎499.996565000 +00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 693 | ◎499.996565000 +00:04:40 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 694 | ◎499.996560000 +00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 695 | ◎499.996555000 +00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 695 | ◎499.996555000 +00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 696 | ◎499.996550000 +00:04:41 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 +00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 +00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 698 | ◎499.996540000 +00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 698 | ◎499.996540000 +00:04:42 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 699 | ◎499.996535000 +00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 +00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 +00:04:43 | Processed Slot: 698 | Confirmed Slot: 698 | Finalized Slot: 666 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 701 | ◎499.996525000 +00:04:43 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 +00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 +00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 703 | ◎499.996515000 +00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 703 | ◎499.996515000 +00:04:44 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 704 | ◎499.996510000 +00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 +00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 +00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 706 | ◎499.996500000 +00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 706 | ◎499.996500000 +00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 707 | ◎499.996495000 +00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 708 | ◎499.996490000 +00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 708 | ◎499.996490000 +00:04:46 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 709 | ◎499.996485000 +00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 +00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 +00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 711 | ◎499.996475000 +00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 711 | ◎499.996475000 +00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 712 | ◎499.996470000 +00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 713 | ◎499.996465000 +00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 713 | ◎499.996465000 +00:04:48 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 714 | ◎499.996460000 +00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 +00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 +00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 716 | ◎499.996450000 +00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 716 | ◎499.996450000 +00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 717 | ◎499.996445000 +00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 +00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 +00:04:50 | Processed Slot: 716 | Confirmed Slot: 716 | Finalized Slot: 684 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 719 | ◎499.996435000 +00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 +00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 +00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 721 | ◎499.996425000 +00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 721 | ◎499.996425000 +00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 722 | ◎499.996420000 +00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 +00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 +00:04:52 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 724 | ◎499.996410000 +00:04:53 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 724 | ◎499.996410000 +00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 725 | ◎499.996405000 +00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 726 | ◎499.996400000 +00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 726 | ◎499.996400000 +00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 727 | ◎499.996395000 +00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 +00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 +00:04:54 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 729 | ◎499.996385000 +00:04:55 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 729 | ◎499.996385000 +00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 730 | ◎499.996380000 +00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 731 | ◎499.996375000 +00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 731 | ◎499.996375000 +00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 732 | ◎499.996370000 +00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 +00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 +00:04:56 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 734 | ◎499.996360000 +00:04:57 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 734 | ◎499.996360000 +00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 735 | ◎499.996355000 +00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 +00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 +00:04:58 | Processed Slot: 734 | Confirmed Slot: 734 | Finalized Slot: 702 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 737 | ◎499.996345000 +00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 +00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 +00:04:58 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 739 | ◎499.996335000 +00:04:59 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 739 | ◎499.996335000 +00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 740 | ◎499.996330000 +00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 +00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 +00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 742 | ◎499.996320000 +00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 742 | ◎499.996320000 +00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 743 | ◎499.996315000 +00:05:00 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 744 | ◎499.996310000 +00:05:01 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 744 | ◎499.996310000 +00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 745 | ◎499.996305000 +00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 +00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 +00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 747 | ◎499.996295000 +00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 747 | ◎499.996295000 +00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 748 | ◎499.996290000 +00:05:02 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 749 | ◎499.996285000 +00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 749 | ◎499.996285000 +00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 750 | ◎499.996280000 +00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 +00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 +00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 752 | ◎499.996270000 +00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 752 | ◎499.996270000 +00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 753 | ◎499.996265000 +00:05:04 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 +00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 +00:05:05 | Processed Slot: 752 | Confirmed Slot: 752 | Finalized Slot: 720 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 755 | ◎499.996255000 +00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 +00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 +00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 757 | ◎499.996245000 +00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 757 | ◎499.996245000 +00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 758 | ◎499.996240000 +00:05:06 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 +00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 +00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 760 | ◎499.996230000 +00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 760 | ◎499.996230000 +00:05:07 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 761 | ◎499.996225000 +00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 762 | ◎499.996220000 +00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 762 | ◎499.996220000 +00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 763 | ◎499.996215000 +00:05:08 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 +00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 +00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 765 | ◎499.996205000 +00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 765 | ◎499.996205000 +00:05:09 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 766 | ◎499.996200000 +00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 767 | ◎499.996195000 +00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 767 | ◎499.996195000 +00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 768 | ◎499.996190000 +00:05:10 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 +00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 +00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 770 | ◎499.996180000 +00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 770 | ◎499.996180000 +00:05:11 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 771 | ◎499.996175000 +00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 +00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 +00:05:12 | Processed Slot: 770 | Confirmed Slot: 770 | Finalized Slot: 738 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 773 | ◎499.996165000 +00:05:12 | Processed Slot: 771 | Confirmed Slot: 770 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996165000 +00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996160000 +00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 775 | ◎499.996155000 +00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 775 | ◎499.996155000 +00:05:13 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 776 | ◎499.996150000 +00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 +00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 +00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 778 | ◎499.996140000 +00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 778 | ◎499.996140000 +00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 779 | ◎499.996135000 +00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 780 | ◎499.996130000 +00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 780 | ◎499.996130000 +00:05:15 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 781 | ◎499.996125000 +00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 +00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 +00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 783 | ◎499.996115000 +00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 783 | ◎499.996115000 +00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 784 | ◎499.996110000 +00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 785 | ◎499.996105000 +00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 785 | ◎499.996105000 +00:05:17 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 786 | ◎499.996100000 +00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 +00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 +00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 788 | ◎499.996090000 +00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 788 | ◎499.996090000 +00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 789 | ◎499.996085000 +00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 +00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 +00:05:19 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 791 | ◎499.996075000 +00:05:20 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 791 | ◎499.996075000 +00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 792 | ◎499.996070000 +00:05:20 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 793 | ◎499.996065000 +00:05:20 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 793 | ◎499.996065000 +00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 794 | ◎499.996060000 +00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 +00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 +00:05:21 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 796 | ◎499.996050000 +00:05:22 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 796 | ◎499.996050000 +00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 797 | ◎499.996045000 +00:05:22 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 798 | ◎499.996040000 +00:05:22 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 798 | ◎499.996040000 +00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 799 | ◎499.996035000 +00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 +00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 +00:05:23 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 801 | ◎499.996025000 +00:05:24 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 801 | ◎499.996025000 +00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 802 | ◎499.996020000 +00:05:24 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 803 | ◎499.996015000 +00:05:24 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 803 | ◎499.996015000 +00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 804 | ◎499.996010000 +00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 +00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 +00:05:25 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 806 | ◎499.996000000 +00:05:26 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 806 | ◎499.996000000 +00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 807 | ◎499.995995000 +00:05:26 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 +00:05:26 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 +00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 809 | ◎499.995985000 +00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 809 | ◎499.995985000 +00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 810 | ◎499.995980000 +00:05:27 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 811 | ◎499.995975000 +00:05:28 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 811 | ◎499.995975000 +00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 812 | ◎499.995970000 +00:05:28 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 +00:05:28 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 +00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 814 | ◎499.995960000 +00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 814 | ◎499.995960000 +00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 815 | ◎499.995955000 +00:05:29 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 816 | ◎499.995950000 +00:05:30 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 816 | ◎499.995950000 +00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 817 | ◎499.995945000 +00:05:30 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 +00:05:30 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 +00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 819 | ◎499.995935000 +00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 819 | ◎499.995935000 +00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 820 | ◎499.995930000 +00:05:31 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 821 | ◎499.995925000 +00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 821 | ◎499.995925000 +00:05:32 | Processed Slot: 819 | Confirmed Slot: 819 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 822 | ◎499.995920000 +00:05:32 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 +00:05:32 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 +00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 824 | ◎499.995910000 +00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 824 | ◎499.995910000 +00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 825 | ◎499.995905000 +00:05:33 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 +00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 +00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 827 | ◎499.995895000 +00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 827 | ◎499.995895000 +00:05:34 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 828 | ◎499.995890000 +00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 829 | ◎499.995885000 +00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 829 | ◎499.995885000 +00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 830 | ◎499.995880000 +00:05:35 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 +00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 +00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 832 | ◎499.995870000 +00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 832 | ◎499.995870000 +00:05:36 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 833 | ◎499.995865000 +00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 834 | ◎499.995860000 +00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 834 | ◎499.995860000 +00:05:37 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 835 | ◎499.995855000 +00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 +00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 +00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 837 | ◎499.995845000 +00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 837 | ◎499.995845000 +00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 838 | ◎499.995840000 +00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 839 | ◎499.995835000 +00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 839 | ◎499.995835000 +00:05:39 | Processed Slot: 837 | Confirmed Slot: 837 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 840 | ◎499.995830000 +00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 +00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 +00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 842 | ◎499.995820000 +00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 842 | ◎499.995820000 +00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 843 | ◎499.995815000 +00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 +00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 +00:05:41 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 845 | ◎499.995805000 +00:05:42 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 845 | ◎499.995805000 +00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 846 | ◎499.995800000 +00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 847 | ◎499.995795000 +00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 847 | ◎499.995795000 +00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 848 | ◎499.995790000 +00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 +00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 +00:05:43 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 850 | ◎499.995780000 +00:05:44 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 850 | ◎499.995780000 +00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 851 | ◎499.995775000 +00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 852 | ◎499.995770000 +00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 852 | ◎499.995770000 +00:05:45 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 853 | ◎499.995765000 +00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 +00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 +00:05:45 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 855 | ◎499.995755000 +00:05:46 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 855 | ◎499.995755000 +00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 856 | ◎499.995750000 +00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 857 | ◎499.995745000 +00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 857 | ◎499.995745000 +00:05:47 | Processed Slot: 855 | Confirmed Slot: 855 | Finalized Slot: 823 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 858 | ◎499.995740000 +00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 +00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 +00:05:47 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 860 | ◎499.995730000 +00:05:48 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 860 | ◎499.995730000 +00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 861 | ◎499.995725000 +00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 +00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 +00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 863 | ◎499.995715000 +00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 863 | ◎499.995715000 +00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 864 | ◎499.995710000 +00:05:49 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 865 | ◎499.995705000 +00:05:50 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 865 | ◎499.995705000 +00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 866 | ◎499.995700000 +00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 +00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 +00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 868 | ◎499.995690000 +00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 868 | ◎499.995690000 +00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 869 | ◎499.995685000 +00:05:51 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 870 | ◎499.995680000 +00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 870 | ◎499.995680000 +00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 871 | ◎499.995675000 +00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 +00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 +00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 873 | ◎499.995665000 +00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 873 | ◎499.995665000 +00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 874 | ◎499.995660000 +00:05:53 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 +00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 +00:05:54 | Processed Slot: 873 | Confirmed Slot: 873 | Finalized Slot: 841 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 876 | ◎499.995650000 +00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 +00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 +00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 878 | ◎499.995640000 +00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 878 | ◎499.995640000 +00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 879 | ◎499.995635000 +00:05:55 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 +00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 +00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 881 | ◎499.995625000 +00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 881 | ◎499.995625000 +00:05:56 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 882 | ◎499.995620000 +00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 883 | ◎499.995615000 +00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 883 | ◎499.995615000 +00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 884 | ◎499.995610000 +00:05:57 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 +00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 +00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 886 | ◎499.995600000 +00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 886 | ◎499.995600000 +00:05:58 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 887 | ◎499.995595000 +00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 888 | ◎499.995590000 +00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 888 | ◎499.995590000 +00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 889 | ◎499.995585000 +00:05:59 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 +00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 +00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 891 | ◎499.995575000 +00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 891 | ◎499.995575000 +00:06:00 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 892 | ◎499.995570000 +00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 +00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 +00:06:01 | Processed Slot: 891 | Confirmed Slot: 891 | Finalized Slot: 859 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 894 | ◎499.995560000 +00:06:01 | Processed Slot: 892 | Confirmed Slot: 891 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995560000 +00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995555000 +00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 896 | ◎499.995550000 +00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 896 | ◎499.995550000 +00:06:02 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 897 | ◎499.995545000 +00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 +00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 +00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 899 | ◎499.995535000 +00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 899 | ◎499.995535000 +00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 900 | ◎499.995530000 +00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 901 | ◎499.995525000 +00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 901 | ◎499.995525000 +00:06:04 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 902 | ◎499.995520000 +00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 +00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 +00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 904 | ◎499.995510000 +00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 904 | ◎499.995510000 +00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 905 | ◎499.995505000 +00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 906 | ◎499.995500000 +00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 906 | ◎499.995500000 +00:06:06 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 907 | ◎499.995495000 +00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 +00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 +00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 909 | ◎499.995485000 +00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 909 | ◎499.995485000 +00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 910 | ◎499.995480000 +00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 +00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 +00:06:08 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 912 | ◎499.995470000 +00:06:09 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 912 | ◎499.995470000 +00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 913 | ◎499.995465000 +00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 914 | ◎499.995460000 +00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 914 | ◎499.995460000 +00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 915 | ◎499.995455000 +00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 +00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 +00:06:10 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 917 | ◎499.995445000 +00:06:11 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 917 | ◎499.995445000 +00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 918 | ◎499.995440000 +00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 919 | ◎499.995435000 +00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 919 | ◎499.995435000 +00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 920 | ◎499.995430000 +00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 +00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 +00:06:12 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 922 | ◎499.995420000 +00:06:13 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 922 | ◎499.995420000 +00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 923 | ◎499.995415000 +00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 924 | ◎499.995410000 +00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 924 | ◎499.995410000 +00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 925 | ◎499.995405000 +00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 +00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 +00:06:14 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 927 | ◎499.995395000 +00:06:15 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 927 | ◎499.995395000 +00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 928 | ◎499.995390000 +00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 +00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 +00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 930 | ◎499.995380000 +00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 930 | ◎499.995380000 +00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 931 | ◎499.995375000 +00:06:16 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 932 | ◎499.995370000 +00:06:17 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 932 | ◎499.995370000 +00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 933 | ◎499.995365000 +00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 +00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 +00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 935 | ◎499.995355000 +00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 935 | ◎499.995355000 +00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 936 | ◎499.995350000 +00:06:18 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 937 | ◎499.995345000 +00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 937 | ◎499.995345000 +00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 938 | ◎499.995340000 +00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 +00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 +00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 940 | ◎499.995330000 +00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 940 | ◎499.995330000 +00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 941 | ◎499.995325000 +00:06:20 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 942 | ◎499.995320000 +00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 942 | ◎499.995320000 +00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 943 | ◎499.995315000 +00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 +00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 +00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 945 | ◎499.995305000 +00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 945 | ◎499.995305000 +00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 946 | ◎499.995300000 +00:06:22 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 +00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 +00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 948 | ◎499.995290000 +00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 948 | ◎499.995290000 +00:06:23 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 949 | ◎499.995285000 +00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 950 | ◎499.995280000 +00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 950 | ◎499.995280000 +00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 951 | ◎499.995275000 +00:06:24 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 +00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 +00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 953 | ◎499.995265000 +00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 953 | ◎499.995265000 +00:06:25 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 954 | ◎499.995260000 +00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 955 | ◎499.995255000 +00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 955 | ◎499.995255000 +00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 956 | ◎499.995250000 +00:06:26 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 +00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 +00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 958 | ◎499.995240000 +00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 958 | ◎499.995240000 +00:06:27 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 959 | ◎499.995235000 +00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 960 | ◎499.995230000 +00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 960 | ◎499.995230000 +00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 961 | ◎499.995225000 +00:06:28 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 +00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 +00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 963 | ◎499.995215000 +00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 963 | ◎499.995215000 +00:06:29 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 964 | ◎499.995210000 +00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 +00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 +00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 966 | ◎499.995200000 +00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 966 | ◎499.995200000 +00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 967 | ◎499.995195000 +00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 968 | ◎499.995190000 +00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 968 | ◎499.995190000 +00:06:31 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 969 | ◎499.995185000 +00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 +00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 +00:06:32 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 971 | ◎499.995175000 +00:06:32 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 971 | ◎499.995175000 +00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 972 | ◎499.995170000 +00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 973 | ◎499.995165000 +00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 973 | ◎499.995165000 +00:06:33 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 974 | ◎499.995160000 +00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 +00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 +00:06:34 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 976 | ◎499.995150000 +00:06:34 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 976 | ◎499.995150000 +00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 977 | ◎499.995145000 +00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 978 | ◎499.995140000 +00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 978 | ◎499.995140000 +00:06:35 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 979 | ◎499.995135000 +00:06:36 | Processed Slot: 977 | Confirmed Slot: 976 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 +00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 +00:06:36 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 981 | ◎499.995125000 +00:06:36 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 981 | ◎499.995125000 +00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 982 | ◎499.995120000 +00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 +00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 +00:06:37 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 984 | ◎499.995110000 +00:06:38 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 984 | ◎499.995110000 +00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 985 | ◎499.995105000 +00:06:38 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 986 | ◎499.995100000 +00:06:38 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 986 | ◎499.995100000 +00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 987 | ◎499.995095000 +00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 +00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 +00:06:39 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 989 | ◎499.995085000 +00:06:40 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 989 | ◎499.995085000 +00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 990 | ◎499.995080000 +00:06:40 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 991 | ◎499.995075000 +00:06:40 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 991 | ◎499.995075000 +00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 992 | ◎499.995070000 +00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 +00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 +00:06:41 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 994 | ◎499.995060000 +00:06:42 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 994 | ◎499.995060000 +00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 995 | ◎499.995055000 +00:06:42 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 996 | ◎499.995050000 +00:06:42 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 996 | ◎499.995050000 +00:06:43 | Processed Slot: 994 | Confirmed Slot: 994 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 997 | ◎499.995045000 +00:06:43 | Processed Slot: 995 | Confirmed Slot: 994 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995045000 +00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995040000 +00:06:43 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 999 | ◎499.995035000 +00:06:44 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 999 | ◎499.995035000 +00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1000 | ◎499.995030000 +00:06:44 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 +00:06:44 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 +00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1002 | ◎499.995020000 +00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1002 | ◎499.995020000 +00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎499.995015000 +00:06:45 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1004 | ◎499.995010000 +00:06:46 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1004 | ◎499.995010000 +00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1005 | ◎499.995005000 +00:06:46 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 +00:06:46 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 +00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1007 | ◎499.994995000 +00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1007 | ◎499.994995000 +00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1008 | ◎499.994990000 +00:06:47 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1009 | ◎499.994985000 +00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1009 | ◎499.994985000 +00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1010 | ◎499.994980000 +00:06:48 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 +00:06:48 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 +00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1012 | ◎499.994970000 +00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1012 | ◎499.994970000 +00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1013 | ◎499.994965000 +00:06:49 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 +00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 +00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎499.994955000 +00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎499.994955000 +00:06:50 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1016 | ◎499.994950000 +00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1017 | ◎499.994945000 +00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1017 | ◎499.994945000 +00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1018 | ◎499.994940000 +00:06:51 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 +00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 +00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1020 | ◎499.994930000 +00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1020 | ◎499.994930000 +00:06:52 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1021 | ◎499.994925000 +00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1022 | ◎499.994920000 +00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1022 | ◎499.994920000 +00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1023 | ◎499.994915000 +00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 +00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 +00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1025 | ◎499.994905000 +00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1025 | ◎499.994905000 +00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1026 | ◎499.994900000 +00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1027 | ◎499.994895000 +00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1027 | ◎499.994895000 +00:06:55 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1028 | ◎499.994890000 +00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 +00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 +00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1030 | ◎499.994880000 +00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1030 | ◎499.994880000 +00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1031 | ◎499.994875000 +00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 +00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 +00:06:57 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1033 | ◎499.994865000 +00:06:58 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1033 | ◎499.994865000 +00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1034 | ◎499.994860000 +00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1035 | ◎499.994855000 +00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1035 | ◎499.994855000 +00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1036 | ◎499.994850000 +00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 +00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 +00:06:59 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1038 | ◎499.994840000 +00:07:00 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1038 | ◎499.994840000 +00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1039 | ◎499.994835000 +00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1040 | ◎499.994830000 +00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1040 | ◎499.994830000 +00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1041 | ◎499.994825000 +00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 +00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 +00:07:01 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1043 | ◎499.994815000 +00:07:02 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1043 | ◎499.994815000 +00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1044 | ◎499.994810000 +00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1045 | ◎499.994805000 +00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1045 | ◎499.994805000 +00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1046 | ◎499.994800000 +00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 +00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 +00:07:03 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1048 | ◎499.994790000 +00:07:04 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1048 | ◎499.994790000 +00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1049 | ◎499.994785000 +00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 +00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 +00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1051 | ◎499.994775000 +00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1051 | ◎499.994775000 +00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1052 | ◎499.994770000 +00:07:05 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1053 | ◎499.994765000 +00:07:06 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1053 | ◎499.994765000 +00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1054 | ◎499.994760000 +00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 +00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 +00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎499.994750000 +00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎499.994750000 +00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎499.994745000 +00:07:07 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎499.994740000 +00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎499.994740000 +00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎499.994735000 +00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 +00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 +00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎499.994725000 +00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎499.994725000 +00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎499.994720000 +00:07:09 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎499.994715000 +00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎499.994715000 +00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎499.994710000 +00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 +00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 +00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1066 | ◎499.994700000 +00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1066 | ◎499.994700000 +00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1067 | ◎499.994695000 +00:07:11 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 +00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 +00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎499.994685000 +00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎499.994685000 +00:07:12 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1070 | ◎499.994680000 +00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1071 | ◎499.994675000 +00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1071 | ◎499.994675000 +00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1072 | ◎499.994670000 +00:07:13 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 +00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 +00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎499.994660000 +00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎499.994660000 +00:07:14 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1075 | ◎499.994655000 +00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1076 | ◎499.994650000 +00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1076 | ◎499.994650000 +00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1077 | ◎499.994645000 +00:07:15 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 +00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 +00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎499.994635000 +00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎499.994635000 +00:07:16 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1080 | ◎499.994630000 +00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎499.994625000 +00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎499.994625000 +00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎499.994620000 +00:07:17 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 +00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 +00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎499.994610000 +00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎499.994610000 +00:07:18 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎499.994605000 +00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 +00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 +00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎499.994595000 +00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎499.994595000 +00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎499.994590000 +00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎499.994585000 +00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎499.994585000 +00:07:20 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎499.994580000 +00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 +00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 +00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1092 | ◎499.994570000 +00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1092 | ◎499.994570000 +00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1093 | ◎499.994565000 +00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1094 | ◎499.994560000 +00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1094 | ◎499.994560000 +00:07:22 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1095 | ◎499.994555000 +00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 +00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 +00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1097 | ◎499.994545000 +00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1097 | ◎499.994545000 +00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1098 | ◎499.994540000 +00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎499.994535000 +00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎499.994535000 +00:07:24 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1100 | ◎499.994530000 +00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1097 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994530000 +00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994525000 +00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1102 | ◎499.994520000 +00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1102 | ◎499.994520000 +00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1103 | ◎499.994515000 +00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 +00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 +00:07:26 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1105 | ◎499.994505000 +00:07:27 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1105 | ◎499.994505000 +00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1106 | ◎499.994500000 +00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1107 | ◎499.994495000 +00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1107 | ◎499.994495000 +00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎499.994490000 +00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 +00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 +00:07:28 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1110 | ◎499.994480000 +00:07:29 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1110 | ◎499.994480000 +00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1111 | ◎499.994475000 +00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1112 | ◎499.994470000 +00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1112 | ◎499.994470000 +00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1113 | ◎499.994465000 +00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 +00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 +00:07:30 | Processed Slot: 1112 | Confirmed Slot: 1112 | Finalized Slot: 1080 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎499.994455000 +00:07:31 | Processed Slot: 1112 | Confirmed Slot: 1112 | Finalized Slot: 1080 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎499.994455000 +00:07:31 | Processed Slot: 1113 | Confirmed Slot: 1113 | Finalized Slot: 1081 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎499.994450000 +00:07:31 | Processed Slot: 1114 | Confirmed Slot: 1114 | Finalized Slot: 1082 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎499.994445000 +00:07:31 | Processed Slot: 1114 | Confirmed Slot: 1114 | Finalized Slot: 1082 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎499.994445000 +00:07:32 | Processed Slot: 1115 | Confirmed Slot: 1115 | Finalized Slot: 1083 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎499.994440000 +00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1115 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994440000 +00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1116 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994435000 +00:07:32 | Processed Slot: 1117 | Confirmed Slot: 1117 | Finalized Slot: 1085 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎499.994430000 +00:07:33 | Processed Slot: 1117 | Confirmed Slot: 1117 | Finalized Slot: 1085 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎499.994430000 +00:07:33 | Processed Slot: 1118 | Confirmed Slot: 1118 | Finalized Slot: 1086 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎499.994425000 +00:07:33 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 +00:07:33 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 +00:07:34 | Processed Slot: 1120 | Confirmed Slot: 1120 | Finalized Slot: 1088 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1123 | ◎499.994415000 +00:07:34 | Processed Slot: 1120 | Confirmed Slot: 1120 | Finalized Slot: 1088 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1123 | ◎499.994415000 +00:07:34 | Processed Slot: 1121 | Confirmed Slot: 1121 | Finalized Slot: 1089 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1124 | ◎499.994410000 +00:07:34 | Processed Slot: 1122 | Confirmed Slot: 1122 | Finalized Slot: 1090 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎499.994405000 +00:07:35 | Processed Slot: 1122 | Confirmed Slot: 1122 | Finalized Slot: 1090 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎499.994405000 +00:07:35 | Processed Slot: 1123 | Confirmed Slot: 1123 | Finalized Slot: 1091 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1126 | ◎499.994400000 +00:07:35 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 +00:07:35 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 +00:07:36 | Processed Slot: 1125 | Confirmed Slot: 1125 | Finalized Slot: 1093 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1128 | ◎499.994390000 +00:07:36 | Processed Slot: 1125 | Confirmed Slot: 1125 | Finalized Slot: 1093 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1128 | ◎499.994390000 +00:07:36 | Processed Slot: 1126 | Confirmed Slot: 1126 | Finalized Slot: 1094 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎499.994385000 +00:07:36 | Processed Slot: 1127 | Confirmed Slot: 1127 | Finalized Slot: 1095 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1130 | ◎499.994380000 +00:07:37 | Processed Slot: 1127 | Confirmed Slot: 1127 | Finalized Slot: 1095 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1130 | ◎499.994380000 +00:07:37 | Processed Slot: 1128 | Confirmed Slot: 1128 | Finalized Slot: 1096 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1131 | ◎499.994375000 +00:07:37 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 +00:07:37 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 +00:07:38 | Processed Slot: 1130 | Confirmed Slot: 1130 | Finalized Slot: 1098 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1133 | ◎499.994365000 +00:07:38 | Processed Slot: 1130 | Confirmed Slot: 1130 | Finalized Slot: 1098 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1133 | ◎499.994365000 +00:07:38 | Processed Slot: 1131 | Confirmed Slot: 1131 | Finalized Slot: 1099 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎499.994360000 +00:07:38 | Processed Slot: 1132 | Confirmed Slot: 1132 | Finalized Slot: 1100 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1135 | ◎499.994355000 +00:07:39 | Processed Slot: 1132 | Confirmed Slot: 1132 | Finalized Slot: 1100 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1135 | ◎499.994355000 +00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 +00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 +00:07:39 | Processed Slot: 1134 | Confirmed Slot: 1134 | Finalized Slot: 1102 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎499.994345000 +00:07:40 | Processed Slot: 1135 | Confirmed Slot: 1135 | Finalized Slot: 1103 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎499.994340000 +00:07:40 | Processed Slot: 1135 | Confirmed Slot: 1135 | Finalized Slot: 1103 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎499.994340000 +00:07:40 | Processed Slot: 1136 | Confirmed Slot: 1136 | Finalized Slot: 1104 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎499.994335000 +00:07:40 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 +00:07:41 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 +00:07:41 | Processed Slot: 1138 | Confirmed Slot: 1138 | Finalized Slot: 1106 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎499.994325000 +00:07:41 | Processed Slot: 1138 | Confirmed Slot: 1138 | Finalized Slot: 1106 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎499.994325000 +00:07:41 | Processed Slot: 1139 | Confirmed Slot: 1139 | Finalized Slot: 1107 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎499.994320000 +00:07:42 | Processed Slot: 1140 | Confirmed Slot: 1140 | Finalized Slot: 1108 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎499.994315000 +00:07:42 | Processed Slot: 1140 | Confirmed Slot: 1140 | Finalized Slot: 1108 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎499.994315000 +00:07:42 | Processed Slot: 1141 | Confirmed Slot: 1141 | Finalized Slot: 1109 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎499.994310000 +00:07:42 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 +00:07:43 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 +00:07:43 | Processed Slot: 1143 | Confirmed Slot: 1143 | Finalized Slot: 1111 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎499.994300000 +00:07:43 | Processed Slot: 1143 | Confirmed Slot: 1143 | Finalized Slot: 1111 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎499.994300000 +00:07:43 | Processed Slot: 1144 | Confirmed Slot: 1144 | Finalized Slot: 1112 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1147 | ◎499.994295000 +00:07:44 | Processed Slot: 1145 | Confirmed Slot: 1145 | Finalized Slot: 1113 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1148 | ◎499.994290000 +00:07:44 | Processed Slot: 1145 | Confirmed Slot: 1145 | Finalized Slot: 1113 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1148 | ◎499.994290000 +00:07:44 | Processed Slot: 1146 | Confirmed Slot: 1146 | Finalized Slot: 1114 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1149 | ◎499.994285000 +00:07:44 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 +00:07:45 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 +00:07:45 | Processed Slot: 1148 | Confirmed Slot: 1148 | Finalized Slot: 1116 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎499.994275000 +00:07:45 | Processed Slot: 1148 | Confirmed Slot: 1148 | Finalized Slot: 1116 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎499.994275000 +00:07:45 | Processed Slot: 1149 | Confirmed Slot: 1149 | Finalized Slot: 1117 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1152 | ◎499.994270000 +00:07:46 | Processed Slot: 1150 | Confirmed Slot: 1150 | Finalized Slot: 1118 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1153 | ◎499.994265000 +00:07:46 | Processed Slot: 1150 | Confirmed Slot: 1150 | Finalized Slot: 1118 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1153 | ◎499.994265000 +00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 +00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 +00:07:47 | Processed Slot: 1152 | Confirmed Slot: 1152 | Finalized Slot: 1120 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎499.994255000 +00:07:47 | Processed Slot: 1153 | Confirmed Slot: 1153 | Finalized Slot: 1121 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎499.994250000 +00:07:47 | Processed Slot: 1153 | Confirmed Slot: 1153 | Finalized Slot: 1121 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎499.994250000 +00:07:47 | Processed Slot: 1154 | Confirmed Slot: 1154 | Finalized Slot: 1122 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎499.994245000 +00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 +00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 +00:07:48 | Processed Slot: 1156 | Confirmed Slot: 1156 | Finalized Slot: 1124 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎499.994235000 +00:07:48 | Processed Slot: 1156 | Confirmed Slot: 1156 | Finalized Slot: 1124 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎499.994235000 +00:07:49 | Processed Slot: 1157 | Confirmed Slot: 1157 | Finalized Slot: 1125 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎499.994230000 +00:07:49 | Processed Slot: 1158 | Confirmed Slot: 1158 | Finalized Slot: 1126 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎499.994225000 +00:07:49 | Processed Slot: 1158 | Confirmed Slot: 1158 | Finalized Slot: 1126 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎499.994225000 +00:07:49 | Processed Slot: 1159 | Confirmed Slot: 1159 | Finalized Slot: 1127 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎499.994220000 +00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 +00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 +00:07:50 | Processed Slot: 1161 | Confirmed Slot: 1161 | Finalized Slot: 1129 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎499.994210000 +00:07:50 | Processed Slot: 1161 | Confirmed Slot: 1161 | Finalized Slot: 1129 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎499.994210000 +00:07:51 | Processed Slot: 1162 | Confirmed Slot: 1162 | Finalized Slot: 1130 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1165 | ◎499.994205000 +00:07:51 | Processed Slot: 1163 | Confirmed Slot: 1163 | Finalized Slot: 1131 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1166 | ◎499.994200000 +00:07:51 | Processed Slot: 1163 | Confirmed Slot: 1163 | Finalized Slot: 1131 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1166 | ◎499.994200000 +00:07:51 | Processed Slot: 1164 | Confirmed Slot: 1164 | Finalized Slot: 1132 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1167 | ◎499.994195000 +00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 +00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 +00:07:52 | Processed Slot: 1166 | Confirmed Slot: 1166 | Finalized Slot: 1134 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1169 | ◎499.994185000 +00:07:52 | Processed Slot: 1166 | Confirmed Slot: 1166 | Finalized Slot: 1134 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1169 | ◎499.994185000 +00:07:53 | Processed Slot: 1167 | Confirmed Slot: 1167 | Finalized Slot: 1135 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1170 | ◎499.994180000 +00:07:53 | Processed Slot: 1168 | Confirmed Slot: 1168 | Finalized Slot: 1136 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1171 | ◎499.994175000 +00:07:53 | Processed Slot: 1168 | Confirmed Slot: 1168 | Finalized Slot: 1136 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1171 | ◎499.994175000 +00:07:53 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 +00:07:54 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 +00:07:54 | Processed Slot: 1170 | Confirmed Slot: 1170 | Finalized Slot: 1138 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1173 | ◎499.994165000 +00:07:54 | Processed Slot: 1171 | Confirmed Slot: 1171 | Finalized Slot: 1139 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1174 | ◎499.994160000 +00:07:54 | Processed Slot: 1171 | Confirmed Slot: 1171 | Finalized Slot: 1139 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1174 | ◎499.994160000 +00:07:55 | Processed Slot: 1172 | Confirmed Slot: 1172 | Finalized Slot: 1140 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎499.994155000 +00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 +00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 +00:07:55 | Processed Slot: 1174 | Confirmed Slot: 1174 | Finalized Slot: 1142 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎499.994145000 +00:07:56 | Processed Slot: 1174 | Confirmed Slot: 1174 | Finalized Slot: 1142 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎499.994145000 +00:07:56 | Processed Slot: 1175 | Confirmed Slot: 1175 | Finalized Slot: 1143 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎499.994140000 +00:07:56 | Processed Slot: 1176 | Confirmed Slot: 1176 | Finalized Slot: 1144 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎499.994135000 +00:07:56 | Processed Slot: 1176 | Confirmed Slot: 1176 | Finalized Slot: 1144 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎499.994135000 +00:07:57 | Processed Slot: 1177 | Confirmed Slot: 1177 | Finalized Slot: 1145 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎499.994130000 +00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 +00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 +00:07:57 | Processed Slot: 1179 | Confirmed Slot: 1179 | Finalized Slot: 1147 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎499.994120000 +00:07:58 | Processed Slot: 1179 | Confirmed Slot: 1179 | Finalized Slot: 1147 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎499.994120000 +00:07:58 | Processed Slot: 1180 | Confirmed Slot: 1180 | Finalized Slot: 1148 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎499.994115000 +00:07:58 | Processed Slot: 1181 | Confirmed Slot: 1181 | Finalized Slot: 1149 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎499.994110000 +00:07:58 | Processed Slot: 1181 | Confirmed Slot: 1181 | Finalized Slot: 1149 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎499.994110000 +00:07:59 | Processed Slot: 1182 | Confirmed Slot: 1182 | Finalized Slot: 1150 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1185 | ◎499.994105000 +00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 +00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 +00:07:59 | Processed Slot: 1184 | Confirmed Slot: 1184 | Finalized Slot: 1152 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎499.994095000 +00:08:00 | Processed Slot: 1184 | Confirmed Slot: 1184 | Finalized Slot: 1152 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎499.994095000 +00:08:00 | Processed Slot: 1185 | Confirmed Slot: 1185 | Finalized Slot: 1153 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎499.994090000 +00:08:00 | Processed Slot: 1186 | Confirmed Slot: 1186 | Finalized Slot: 1154 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎499.994085000 +00:08:00 | Processed Slot: 1186 | Confirmed Slot: 1186 | Finalized Slot: 1154 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎499.994085000 +00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 +00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 +00:08:01 | Processed Slot: 1188 | Confirmed Slot: 1188 | Finalized Slot: 1156 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎499.994075000 +00:08:01 | Processed Slot: 1189 | Confirmed Slot: 1189 | Finalized Slot: 1157 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎499.994070000 +00:08:02 | Processed Slot: 1189 | Confirmed Slot: 1189 | Finalized Slot: 1157 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎499.994070000 +00:08:02 | Processed Slot: 1190 | Confirmed Slot: 1190 | Finalized Slot: 1158 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎499.994065000 +00:08:02 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 +00:08:02 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 +00:08:03 | Processed Slot: 1192 | Confirmed Slot: 1192 | Finalized Slot: 1160 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎499.994055000 +00:08:03 | Processed Slot: 1192 | Confirmed Slot: 1192 | Finalized Slot: 1160 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎499.994055000 +00:08:03 | Processed Slot: 1193 | Confirmed Slot: 1193 | Finalized Slot: 1161 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎499.994050000 +00:08:03 | Processed Slot: 1194 | Confirmed Slot: 1194 | Finalized Slot: 1162 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎499.994045000 +00:08:04 | Processed Slot: 1194 | Confirmed Slot: 1194 | Finalized Slot: 1162 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎499.994045000 +00:08:04 | Processed Slot: 1195 | Confirmed Slot: 1195 | Finalized Slot: 1163 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎499.994040000 +00:08:04 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 +00:08:04 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 +00:08:05 | Processed Slot: 1197 | Confirmed Slot: 1197 | Finalized Slot: 1165 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎499.994030000 +00:08:05 | Processed Slot: 1197 | Confirmed Slot: 1197 | Finalized Slot: 1165 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎499.994030000 +00:08:05 | Processed Slot: 1198 | Confirmed Slot: 1198 | Finalized Slot: 1166 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎499.994025000 +00:08:05 | Processed Slot: 1199 | Confirmed Slot: 1199 | Finalized Slot: 1167 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎499.994020000 +00:08:06 | Processed Slot: 1199 | Confirmed Slot: 1199 | Finalized Slot: 1167 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎499.994020000 +00:08:06 | Processed Slot: 1200 | Confirmed Slot: 1200 | Finalized Slot: 1168 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎499.994015000 +00:08:06 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 +00:08:06 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 +00:08:07 | Processed Slot: 1202 | Confirmed Slot: 1202 | Finalized Slot: 1170 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎499.994005000 +00:08:07 | Processed Slot: 1202 | Confirmed Slot: 1202 | Finalized Slot: 1170 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎499.994005000 +00:08:07 | Processed Slot: 1203 | Confirmed Slot: 1203 | Finalized Slot: 1171 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎499.994000000 +00:08:07 | Processed Slot: 1204 | Confirmed Slot: 1204 | Finalized Slot: 1172 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎499.993995000 +00:08:08 | Processed Slot: 1204 | Confirmed Slot: 1204 | Finalized Slot: 1172 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎499.993995000 +00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1205 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993990000 +00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1205 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993990000 +00:08:09 | Processed Slot: 1206 | Confirmed Slot: 1206 | Finalized Slot: 1174 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎499.993985000 +00:08:09 | Processed Slot: 1207 | Confirmed Slot: 1207 | Finalized Slot: 1175 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎499.993980000 +00:08:09 | Processed Slot: 1207 | Confirmed Slot: 1207 | Finalized Slot: 1175 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎499.993980000 +00:08:09 | Processed Slot: 1208 | Confirmed Slot: 1208 | Finalized Slot: 1176 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎499.993975000 +00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 +00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 +00:08:10 | Processed Slot: 1210 | Confirmed Slot: 1210 | Finalized Slot: 1178 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎499.993965000 +00:08:10 | Processed Slot: 1210 | Confirmed Slot: 1210 | Finalized Slot: 1178 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎499.993965000 +00:08:11 | Processed Slot: 1211 | Confirmed Slot: 1211 | Finalized Slot: 1179 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎499.993960000 +00:08:11 | Processed Slot: 1212 | Confirmed Slot: 1212 | Finalized Slot: 1180 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎499.993955000 +00:08:11 | Processed Slot: 1212 | Confirmed Slot: 1212 | Finalized Slot: 1180 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎499.993955000 +00:08:11 | Processed Slot: 1213 | Confirmed Slot: 1213 | Finalized Slot: 1181 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎499.993950000 +00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 +00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 +00:08:12 | Processed Slot: 1215 | Confirmed Slot: 1215 | Finalized Slot: 1183 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎499.993940000 +00:08:12 | Processed Slot: 1215 | Confirmed Slot: 1215 | Finalized Slot: 1183 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎499.993940000 +00:08:13 | Processed Slot: 1216 | Confirmed Slot: 1216 | Finalized Slot: 1184 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎499.993935000 +00:08:13 | Processed Slot: 1217 | Confirmed Slot: 1217 | Finalized Slot: 1185 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎499.993930000 +00:08:13 | Processed Slot: 1217 | Confirmed Slot: 1217 | Finalized Slot: 1185 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎499.993930000 +00:08:13 | Processed Slot: 1218 | Confirmed Slot: 1218 | Finalized Slot: 1186 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎499.993925000 +00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 +00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 +00:08:14 | Processed Slot: 1220 | Confirmed Slot: 1220 | Finalized Slot: 1188 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎499.993915000 +00:08:14 | Processed Slot: 1220 | Confirmed Slot: 1220 | Finalized Slot: 1188 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎499.993915000 +00:08:15 | Processed Slot: 1221 | Confirmed Slot: 1221 | Finalized Slot: 1189 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎499.993910000 +00:08:15 | Processed Slot: 1222 | Confirmed Slot: 1222 | Finalized Slot: 1190 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎499.993905000 +00:08:15 | Processed Slot: 1222 | Confirmed Slot: 1222 | Finalized Slot: 1190 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎499.993905000 +00:08:15 | Processed Slot: 1223 | Confirmed Slot: 1223 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993900000 +00:08:16 | Processed Slot: 1223 | Confirmed Slot: 1223 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993900000 +00:08:16 | Processed Slot: 1224 | Confirmed Slot: 1224 | Finalized Slot: 1192 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎499.993895000 +00:08:16 | Processed Slot: 1225 | Confirmed Slot: 1225 | Finalized Slot: 1193 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎499.993890000 +00:08:16 | Processed Slot: 1225 | Confirmed Slot: 1225 | Finalized Slot: 1193 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎499.993890000 +00:08:17 | Processed Slot: 1226 | Confirmed Slot: 1226 | Finalized Slot: 1194 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎499.993885000 +00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 +00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 +00:08:17 | Processed Slot: 1228 | Confirmed Slot: 1228 | Finalized Slot: 1196 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎499.993875000 +00:08:18 | Processed Slot: 1228 | Confirmed Slot: 1228 | Finalized Slot: 1196 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎499.993875000 +00:08:18 | Processed Slot: 1229 | Confirmed Slot: 1229 | Finalized Slot: 1197 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎499.993870000 +00:08:18 | Processed Slot: 1230 | Confirmed Slot: 1230 | Finalized Slot: 1198 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎499.993865000 +00:08:18 | Processed Slot: 1230 | Confirmed Slot: 1230 | Finalized Slot: 1198 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎499.993865000 +00:08:19 | Processed Slot: 1231 | Confirmed Slot: 1231 | Finalized Slot: 1199 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎499.993860000 +00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 +00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 +00:08:19 | Processed Slot: 1233 | Confirmed Slot: 1233 | Finalized Slot: 1201 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎499.993850000 +00:08:20 | Processed Slot: 1233 | Confirmed Slot: 1233 | Finalized Slot: 1201 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎499.993850000 +00:08:20 | Processed Slot: 1234 | Confirmed Slot: 1234 | Finalized Slot: 1202 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎499.993845000 +00:08:20 | Processed Slot: 1235 | Confirmed Slot: 1235 | Finalized Slot: 1203 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎499.993840000 +00:08:20 | Processed Slot: 1235 | Confirmed Slot: 1235 | Finalized Slot: 1203 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎499.993840000 +00:08:21 | Processed Slot: 1236 | Confirmed Slot: 1236 | Finalized Slot: 1204 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎499.993835000 +00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1236 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993835000 +00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1237 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993830000 +00:08:21 | Processed Slot: 1238 | Confirmed Slot: 1238 | Finalized Slot: 1206 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎499.993825000 +00:08:22 | Processed Slot: 1238 | Confirmed Slot: 1238 | Finalized Slot: 1206 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎499.993825000 +00:08:22 | Processed Slot: 1239 | Confirmed Slot: 1239 | Finalized Slot: 1207 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎499.993820000 +00:08:22 | Processed Slot: 1240 | Confirmed Slot: 1240 | Finalized Slot: 1208 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎499.993815000 +00:08:22 | Processed Slot: 1240 | Confirmed Slot: 1240 | Finalized Slot: 1208 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎499.993815000 +00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1241 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993810000 +00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1241 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993810000 +00:08:23 | Processed Slot: 1242 | Confirmed Slot: 1242 | Finalized Slot: 1210 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎499.993805000 +00:08:23 | Processed Slot: 1243 | Confirmed Slot: 1243 | Finalized Slot: 1211 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎499.993800000 +00:08:24 | Processed Slot: 1243 | Confirmed Slot: 1243 | Finalized Slot: 1211 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎499.993800000 +00:08:24 | Processed Slot: 1244 | Confirmed Slot: 1244 | Finalized Slot: 1212 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎499.993795000 +00:08:24 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 +00:08:24 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 +00:08:25 | Processed Slot: 1246 | Confirmed Slot: 1246 | Finalized Slot: 1214 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎499.993785000 +00:08:25 | Processed Slot: 1246 | Confirmed Slot: 1246 | Finalized Slot: 1214 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎499.993785000 +00:08:25 | Processed Slot: 1247 | Confirmed Slot: 1247 | Finalized Slot: 1215 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎499.993780000 +00:08:25 | Processed Slot: 1248 | Confirmed Slot: 1248 | Finalized Slot: 1216 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎499.993775000 +00:08:26 | Processed Slot: 1248 | Confirmed Slot: 1248 | Finalized Slot: 1216 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎499.993775000 +00:08:26 | Processed Slot: 1249 | Confirmed Slot: 1249 | Finalized Slot: 1217 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎499.993770000 +00:08:26 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 +00:08:26 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 +00:08:27 | Processed Slot: 1251 | Confirmed Slot: 1251 | Finalized Slot: 1219 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎499.993760000 +00:08:27 | Processed Slot: 1251 | Confirmed Slot: 1251 | Finalized Slot: 1219 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎499.993760000 +00:08:27 | Processed Slot: 1252 | Confirmed Slot: 1252 | Finalized Slot: 1220 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎499.993755000 +00:08:27 | Processed Slot: 1253 | Confirmed Slot: 1253 | Finalized Slot: 1221 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎499.993750000 +00:08:28 | Processed Slot: 1253 | Confirmed Slot: 1253 | Finalized Slot: 1221 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎499.993750000 +00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 +00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 +00:08:28 | Processed Slot: 1255 | Confirmed Slot: 1255 | Finalized Slot: 1223 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎499.993740000 +00:08:29 | Processed Slot: 1256 | Confirmed Slot: 1256 | Finalized Slot: 1224 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎499.993735000 +00:08:29 | Processed Slot: 1256 | Confirmed Slot: 1256 | Finalized Slot: 1224 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎499.993735000 +00:08:29 | Processed Slot: 1257 | Confirmed Slot: 1257 | Finalized Slot: 1225 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎499.993730000 +00:08:29 | Processed Slot: 1258 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎499.993725000 +00:08:30 | Processed Slot: 1258 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎499.993725000 +00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1259 | Finalized Slot: 1227 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993720000 +00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1259 | Finalized Slot: 1227 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993720000 +00:08:30 | Processed Slot: 1260 | Confirmed Slot: 1260 | Finalized Slot: 1228 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎499.993715000 +00:08:31 | Processed Slot: 1261 | Confirmed Slot: 1261 | Finalized Slot: 1229 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎499.993710000 +00:08:31 | Processed Slot: 1261 | Confirmed Slot: 1261 | Finalized Slot: 1229 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎499.993710000 +00:08:31 | Processed Slot: 1262 | Confirmed Slot: 1262 | Finalized Slot: 1230 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎499.993705000 +00:08:31 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 +00:08:32 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 +00:08:32 | Processed Slot: 1264 | Confirmed Slot: 1264 | Finalized Slot: 1232 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎499.993695000 +00:08:32 | Processed Slot: 1264 | Confirmed Slot: 1264 | Finalized Slot: 1232 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎499.993695000 +00:08:32 | Processed Slot: 1265 | Confirmed Slot: 1265 | Finalized Slot: 1233 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎499.993690000 +00:08:33 | Processed Slot: 1266 | Confirmed Slot: 1266 | Finalized Slot: 1234 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎499.993685000 +00:08:33 | Processed Slot: 1266 | Confirmed Slot: 1266 | Finalized Slot: 1234 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎499.993685000 +00:08:33 | Processed Slot: 1267 | Confirmed Slot: 1267 | Finalized Slot: 1235 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎499.993680000 +00:08:33 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 +00:08:34 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 +00:08:34 | Processed Slot: 1269 | Confirmed Slot: 1269 | Finalized Slot: 1237 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎499.993670000 +00:08:34 | Processed Slot: 1269 | Confirmed Slot: 1269 | Finalized Slot: 1237 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎499.993670000 +00:08:34 | Processed Slot: 1270 | Confirmed Slot: 1270 | Finalized Slot: 1238 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎499.993665000 +00:08:35 | Processed Slot: 1271 | Confirmed Slot: 1271 | Finalized Slot: 1239 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎499.993660000 +00:08:35 | Processed Slot: 1271 | Confirmed Slot: 1271 | Finalized Slot: 1239 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎499.993660000 +00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 +00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 +00:08:36 | Processed Slot: 1273 | Confirmed Slot: 1273 | Finalized Slot: 1241 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎499.993650000 +00:08:36 | Processed Slot: 1274 | Confirmed Slot: 1274 | Finalized Slot: 1242 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎499.993645000 +00:08:36 | Processed Slot: 1274 | Confirmed Slot: 1274 | Finalized Slot: 1242 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎499.993645000 +00:08:36 | Processed Slot: 1275 | Confirmed Slot: 1275 | Finalized Slot: 1243 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎499.993640000 +00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 +00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 +00:08:37 | Processed Slot: 1277 | Confirmed Slot: 1277 | Finalized Slot: 1245 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎499.993630000 +00:08:37 | Processed Slot: 1277 | Confirmed Slot: 1277 | Finalized Slot: 1245 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎499.993630000 +00:08:38 | Processed Slot: 1278 | Confirmed Slot: 1278 | Finalized Slot: 1246 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎499.993625000 +00:08:38 | Processed Slot: 1279 | Confirmed Slot: 1279 | Finalized Slot: 1247 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎499.993620000 +00:08:38 | Processed Slot: 1279 | Confirmed Slot: 1279 | Finalized Slot: 1247 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎499.993620000 +00:08:38 | Processed Slot: 1280 | Confirmed Slot: 1280 | Finalized Slot: 1248 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎499.993615000 +00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 +00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 +00:08:39 | Processed Slot: 1282 | Confirmed Slot: 1282 | Finalized Slot: 1250 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎499.993605000 +00:08:39 | Processed Slot: 1282 | Confirmed Slot: 1282 | Finalized Slot: 1250 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎499.993605000 +00:08:40 | Processed Slot: 1283 | Confirmed Slot: 1283 | Finalized Slot: 1251 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎499.993600000 +00:08:40 | Processed Slot: 1284 | Confirmed Slot: 1284 | Finalized Slot: 1252 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎499.993595000 +00:08:40 | Processed Slot: 1284 | Confirmed Slot: 1284 | Finalized Slot: 1252 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎499.993595000 +00:08:40 | Processed Slot: 1285 | Confirmed Slot: 1285 | Finalized Slot: 1253 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎499.993590000 +00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 +00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 +00:08:41 | Processed Slot: 1287 | Confirmed Slot: 1287 | Finalized Slot: 1255 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎499.993580000 +00:08:41 | Processed Slot: 1287 | Confirmed Slot: 1287 | Finalized Slot: 1255 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎499.993580000 +00:08:42 | Processed Slot: 1288 | Confirmed Slot: 1288 | Finalized Slot: 1256 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎499.993575000 +00:08:42 | Processed Slot: 1289 | Confirmed Slot: 1289 | Finalized Slot: 1257 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎499.993570000 +00:08:42 | Processed Slot: 1289 | Confirmed Slot: 1289 | Finalized Slot: 1257 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎499.993570000 +00:08:42 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 +00:08:43 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 +00:08:43 | Processed Slot: 1291 | Confirmed Slot: 1291 | Finalized Slot: 1259 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎499.993560000 +00:08:43 | Processed Slot: 1292 | Confirmed Slot: 1292 | Finalized Slot: 1260 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎499.993555000 +00:08:43 | Processed Slot: 1292 | Confirmed Slot: 1292 | Finalized Slot: 1260 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎499.993555000 +00:08:44 | Processed Slot: 1293 | Confirmed Slot: 1293 | Finalized Slot: 1261 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎499.993550000 +00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 +00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 +00:08:44 | Processed Slot: 1295 | Confirmed Slot: 1295 | Finalized Slot: 1263 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎499.993540000 +00:08:45 | Processed Slot: 1295 | Confirmed Slot: 1295 | Finalized Slot: 1263 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎499.993540000 +00:08:45 | Processed Slot: 1296 | Confirmed Slot: 1296 | Finalized Slot: 1264 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎499.993535000 +00:08:45 | Processed Slot: 1297 | Confirmed Slot: 1297 | Finalized Slot: 1265 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎499.993530000 +00:08:45 | Processed Slot: 1297 | Confirmed Slot: 1297 | Finalized Slot: 1265 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎499.993530000 +00:08:46 | Processed Slot: 1298 | Confirmed Slot: 1298 | Finalized Slot: 1266 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎499.993525000 +00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 +00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 +00:08:46 | Processed Slot: 1300 | Confirmed Slot: 1300 | Finalized Slot: 1268 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎499.993515000 +00:08:47 | Processed Slot: 1300 | Confirmed Slot: 1300 | Finalized Slot: 1268 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎499.993515000 +00:08:47 | Processed Slot: 1301 | Confirmed Slot: 1301 | Finalized Slot: 1269 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎499.993510000 +00:08:47 | Processed Slot: 1302 | Confirmed Slot: 1302 | Finalized Slot: 1270 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎499.993505000 +00:08:47 | Processed Slot: 1302 | Confirmed Slot: 1302 | Finalized Slot: 1270 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎499.993505000 +00:08:48 | Processed Slot: 1303 | Confirmed Slot: 1303 | Finalized Slot: 1271 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎499.993500000 +00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 +00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 +00:08:48 | Processed Slot: 1305 | Confirmed Slot: 1305 | Finalized Slot: 1273 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎499.993490000 +00:08:49 | Processed Slot: 1305 | Confirmed Slot: 1305 | Finalized Slot: 1273 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎499.993490000 +00:08:49 | Processed Slot: 1306 | Confirmed Slot: 1306 | Finalized Slot: 1274 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎499.993485000 +00:08:49 | Processed Slot: 1307 | Confirmed Slot: 1307 | Finalized Slot: 1275 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎499.993480000 +00:08:49 | Processed Slot: 1307 | Confirmed Slot: 1307 | Finalized Slot: 1275 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎499.993480000 +00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 +00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 +00:08:50 | Processed Slot: 1309 | Confirmed Slot: 1309 | Finalized Slot: 1277 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎499.993470000 +00:08:50 | Processed Slot: 1310 | Confirmed Slot: 1310 | Finalized Slot: 1278 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎499.993465000 +00:08:51 | Processed Slot: 1310 | Confirmed Slot: 1310 | Finalized Slot: 1278 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎499.993465000 +00:08:51 | Processed Slot: 1311 | Confirmed Slot: 1311 | Finalized Slot: 1279 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎499.993460000 +00:08:51 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 +00:08:51 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 +00:08:52 | Processed Slot: 1313 | Confirmed Slot: 1313 | Finalized Slot: 1281 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎499.993450000 +00:08:52 | Processed Slot: 1313 | Confirmed Slot: 1313 | Finalized Slot: 1281 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎499.993450000 +00:08:52 | Processed Slot: 1314 | Confirmed Slot: 1314 | Finalized Slot: 1282 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎499.993445000 +00:08:52 | Processed Slot: 1315 | Confirmed Slot: 1315 | Finalized Slot: 1283 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎499.993440000 +00:08:53 | Processed Slot: 1315 | Confirmed Slot: 1315 | Finalized Slot: 1283 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎499.993440000 +00:08:53 | Processed Slot: 1316 | Confirmed Slot: 1316 | Finalized Slot: 1284 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎499.993435000 +00:08:53 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 +00:08:53 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 +00:08:54 | Processed Slot: 1318 | Confirmed Slot: 1318 | Finalized Slot: 1286 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎499.993425000 +00:08:54 | Processed Slot: 1318 | Confirmed Slot: 1318 | Finalized Slot: 1286 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎499.993425000 +00:08:54 | Processed Slot: 1319 | Confirmed Slot: 1319 | Finalized Slot: 1287 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎499.993420000 +00:08:54 | Processed Slot: 1320 | Confirmed Slot: 1320 | Finalized Slot: 1288 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎499.993415000 +00:08:55 | Processed Slot: 1320 | Confirmed Slot: 1320 | Finalized Slot: 1288 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎499.993415000 +00:08:55 | Processed Slot: 1321 | Confirmed Slot: 1321 | Finalized Slot: 1289 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎499.993410000 +00:08:55 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 +00:08:55 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 +00:08:56 | Processed Slot: 1323 | Confirmed Slot: 1323 | Finalized Slot: 1291 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎499.993400000 +00:08:56 | Processed Slot: 1323 | Confirmed Slot: 1323 | Finalized Slot: 1291 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎499.993400000 +00:08:56 | Processed Slot: 1324 | Confirmed Slot: 1324 | Finalized Slot: 1292 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎499.993395000 +00:08:56 | Processed Slot: 1325 | Confirmed Slot: 1325 | Finalized Slot: 1293 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎499.993390000 +00:08:57 | Processed Slot: 1325 | Confirmed Slot: 1325 | Finalized Slot: 1293 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎499.993390000 +00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 +00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 +00:08:57 | Processed Slot: 1327 | Confirmed Slot: 1327 | Finalized Slot: 1295 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎499.993380000 +00:08:58 | Processed Slot: 1328 | Confirmed Slot: 1328 | Finalized Slot: 1296 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎499.993375000 +00:08:58 | Processed Slot: 1328 | Confirmed Slot: 1328 | Finalized Slot: 1296 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎499.993375000 +00:08:58 | Processed Slot: 1329 | Confirmed Slot: 1329 | Finalized Slot: 1297 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎499.993370000 +00:08:58 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 +00:08:59 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 +00:08:59 | Processed Slot: 1331 | Confirmed Slot: 1331 | Finalized Slot: 1299 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎499.993360000 +00:08:59 | Processed Slot: 1331 | Confirmed Slot: 1331 | Finalized Slot: 1299 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎499.993360000 +00:08:59 | Processed Slot: 1332 | Confirmed Slot: 1332 | Finalized Slot: 1300 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎499.993355000 +00:09:00 | Processed Slot: 1333 | Confirmed Slot: 1333 | Finalized Slot: 1301 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎499.993350000 +00:09:00 | Processed Slot: 1333 | Confirmed Slot: 1333 | Finalized Slot: 1301 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎499.993350000 +00:09:00 | Processed Slot: 1334 | Confirmed Slot: 1334 | Finalized Slot: 1302 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎499.993345000 +00:09:00 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 +00:09:01 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 +00:09:01 | Processed Slot: 1336 | Confirmed Slot: 1336 | Finalized Slot: 1304 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎499.993335000 +00:09:01 | Processed Slot: 1336 | Confirmed Slot: 1336 | Finalized Slot: 1304 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎499.993335000 +00:09:01 | Processed Slot: 1337 | Confirmed Slot: 1337 | Finalized Slot: 1305 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎499.993330000 +00:09:02 | Processed Slot: 1338 | Confirmed Slot: 1338 | Finalized Slot: 1306 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎499.993325000 +00:09:02 | Processed Slot: 1338 | Confirmed Slot: 1338 | Finalized Slot: 1306 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎499.993325000 +00:09:02 | Processed Slot: 1339 | Confirmed Slot: 1339 | Finalized Slot: 1307 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎499.993320000 +00:09:02 | Processed Slot: 1340 | Confirmed Slot: 1339 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 +00:09:03 | Processed Slot: 1340 | Confirmed Slot: 1340 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 +00:09:03 | Processed Slot: 1341 | Confirmed Slot: 1341 | Finalized Slot: 1309 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎499.993310000 +00:09:03 | Processed Slot: 1341 | Confirmed Slot: 1341 | Finalized Slot: 1309 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎499.993310000 +00:09:03 | Processed Slot: 1342 | Confirmed Slot: 1342 | Finalized Slot: 1310 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎499.993305000 +00:09:04 | Processed Slot: 1343 | Confirmed Slot: 1343 | Finalized Slot: 1311 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎499.993300000 +00:09:04 | Processed Slot: 1343 | Confirmed Slot: 1343 | Finalized Slot: 1311 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎499.993300000 +00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 +00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 +00:09:05 | Processed Slot: 1345 | Confirmed Slot: 1345 | Finalized Slot: 1313 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎499.993290000 +00:09:05 | Processed Slot: 1346 | Confirmed Slot: 1346 | Finalized Slot: 1314 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎499.993285000 +00:09:05 | Processed Slot: 1346 | Confirmed Slot: 1346 | Finalized Slot: 1314 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎499.993285000 +00:09:05 | Processed Slot: 1347 | Confirmed Slot: 1347 | Finalized Slot: 1315 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎499.993280000 +00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 +00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 +00:09:06 | Processed Slot: 1349 | Confirmed Slot: 1349 | Finalized Slot: 1317 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎499.993270000 +00:09:06 | Processed Slot: 1349 | Confirmed Slot: 1349 | Finalized Slot: 1317 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎499.993270000 +00:09:07 | Processed Slot: 1350 | Confirmed Slot: 1350 | Finalized Slot: 1318 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎499.993265000 +00:09:07 | Processed Slot: 1351 | Confirmed Slot: 1351 | Finalized Slot: 1319 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎499.993260000 +00:09:07 | Processed Slot: 1351 | Confirmed Slot: 1351 | Finalized Slot: 1319 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎499.993260000 +00:09:07 | Processed Slot: 1352 | Confirmed Slot: 1352 | Finalized Slot: 1320 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎499.993255000 +00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 +00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 +00:09:08 | Processed Slot: 1354 | Confirmed Slot: 1354 | Finalized Slot: 1322 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎499.993245000 +00:09:08 | Processed Slot: 1354 | Confirmed Slot: 1354 | Finalized Slot: 1322 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎499.993245000 +00:09:09 | Processed Slot: 1355 | Confirmed Slot: 1355 | Finalized Slot: 1323 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎499.993240000 +00:09:09 | Processed Slot: 1356 | Confirmed Slot: 1356 | Finalized Slot: 1324 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎499.993235000 +00:09:09 | Processed Slot: 1356 | Confirmed Slot: 1356 | Finalized Slot: 1324 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎499.993235000 +00:09:09 | Processed Slot: 1357 | Confirmed Slot: 1357 | Finalized Slot: 1325 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎499.993230000 +00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1357 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993230000 +00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1358 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993225000 +00:09:10 | Processed Slot: 1359 | Confirmed Slot: 1359 | Finalized Slot: 1327 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎499.993220000 +00:09:10 | Processed Slot: 1359 | Confirmed Slot: 1359 | Finalized Slot: 1327 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎499.993220000 +00:09:11 | Processed Slot: 1360 | Confirmed Slot: 1360 | Finalized Slot: 1328 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎499.993215000 +00:09:11 | Processed Slot: 1361 | Confirmed Slot: 1361 | Finalized Slot: 1329 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎499.993210000 +00:09:11 | Processed Slot: 1361 | Confirmed Slot: 1361 | Finalized Slot: 1329 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎499.993210000 +00:09:11 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 +00:09:12 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 +00:09:12 | Processed Slot: 1363 | Confirmed Slot: 1363 | Finalized Slot: 1331 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎499.993200000 +00:09:12 | Processed Slot: 1364 | Confirmed Slot: 1364 | Finalized Slot: 1332 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1367 | ◎499.993195000 +00:09:12 | Processed Slot: 1364 | Confirmed Slot: 1364 | Finalized Slot: 1332 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1367 | ◎499.993195000 +00:09:13 | Processed Slot: 1365 | Confirmed Slot: 1365 | Finalized Slot: 1333 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1368 | ◎499.993190000 +00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 +00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 +00:09:13 | Processed Slot: 1367 | Confirmed Slot: 1367 | Finalized Slot: 1335 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1370 | ◎499.993180000 +00:09:14 | Processed Slot: 1367 | Confirmed Slot: 1367 | Finalized Slot: 1335 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1370 | ◎499.993180000 +00:09:14 | Processed Slot: 1368 | Confirmed Slot: 1368 | Finalized Slot: 1336 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1371 | ◎499.993175000 +00:09:14 | Processed Slot: 1369 | Confirmed Slot: 1369 | Finalized Slot: 1337 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1372 | ◎499.993170000 +00:09:14 | Processed Slot: 1369 | Confirmed Slot: 1369 | Finalized Slot: 1337 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1372 | ◎499.993170000 +00:09:15 | Processed Slot: 1370 | Confirmed Slot: 1370 | Finalized Slot: 1338 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1373 | ◎499.993165000 +00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 +00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 +00:09:15 | Processed Slot: 1372 | Confirmed Slot: 1372 | Finalized Slot: 1340 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1375 | ◎499.993155000 +00:09:16 | Processed Slot: 1372 | Confirmed Slot: 1372 | Finalized Slot: 1340 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1375 | ◎499.993155000 +00:09:16 | Processed Slot: 1373 | Confirmed Slot: 1373 | Finalized Slot: 1341 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎499.993150000 +00:09:16 | Processed Slot: 1374 | Confirmed Slot: 1374 | Finalized Slot: 1342 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎499.993145000 +00:09:16 | Processed Slot: 1374 | Confirmed Slot: 1374 | Finalized Slot: 1342 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎499.993145000 +00:09:17 | Processed Slot: 1375 | Confirmed Slot: 1375 | Finalized Slot: 1343 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎499.993140000 +00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1375 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993140000 +00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1376 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993135000 +00:09:17 | Processed Slot: 1377 | Confirmed Slot: 1377 | Finalized Slot: 1345 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎499.993130000 +00:09:18 | Processed Slot: 1377 | Confirmed Slot: 1377 | Finalized Slot: 1345 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎499.993130000 +00:09:18 | Processed Slot: 1378 | Confirmed Slot: 1378 | Finalized Slot: 1346 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎499.993125000 +00:09:18 | Processed Slot: 1379 | Confirmed Slot: 1379 | Finalized Slot: 1347 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎499.993120000 +00:09:18 | Processed Slot: 1379 | Confirmed Slot: 1379 | Finalized Slot: 1347 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎499.993120000 +00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 +00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 +00:09:19 | Processed Slot: 1381 | Confirmed Slot: 1381 | Finalized Slot: 1349 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1384 | ◎499.993110000 +00:09:19 | Processed Slot: 1382 | Confirmed Slot: 1382 | Finalized Slot: 1350 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1385 | ◎499.993105000 diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log new file mode 100644 index 000000000..da58005a3 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-03 06:33:06.086 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:06.191 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC +2023-08-03 06:33:06.204 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-03 06:33:06.888 UTC [48] LOG: received fast shutdown request +.2023-08-03 06:33:06.889 UTC [48] LOG: aborting any active transactions +2023-08-03 06:33:06.891 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 06:33:06.891 UTC [50] LOG: shutting down +2023-08-03 06:33:06.981 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 06:33:06.997 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 06:33:06.997 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 06:33:06.999 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:07.077 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:06 UTC +2023-08-03 06:33:07.081 UTC [1] LOG: database system is ready to accept connections +2023-08-03 06:33:07.586 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 06:33:08.782 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 06:33:08.782 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 06:33:08.782 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 06:33:08.782 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 06:33:08.782 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 06:33:08.782 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log new file mode 100644 index 000000000..c6a654dcc --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log @@ -0,0 +1,581 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T06:33:08.678Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.678Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.678Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:08.679Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} +{"level":"debug","ts":"2023-08-03T06:33:08.774Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.774Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.774Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"ecb7718f-7ce6-4595-b06b-86a4ee07a613"} +{"level":"debug","ts":"2023-08-03T06:33:08.779Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"ecb7718f-7ce6-4595-b06b-86a4ee07a613"} +{"level":"debug","ts":"2023-08-03T06:33:08.782Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} +2023/08/03 06:33:09 OK 0001_initial.sql +2023/08/03 06:33:09 OK 0002_gormv2.sql +2023/08/03 06:33:09 OK 0003_eth_logs_table.sql +2023/08/03 06:33:09 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 06:33:09 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 06:33:09 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 06:33:09 OK 0007_reverse_eth_logs_table.sql +2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql +2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 06:33:09 OK 0010_bridge_fk.sql +2023/08/03 06:33:09 OK 0011_latest_round_requested.sql +2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql +2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql +2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql +2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 06:33:09 OK 0018_add_node_version_table.sql +2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 06:33:09 OK 0020_remove_result_task.sql +2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql +2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql +2023/08/03 06:33:09 OK 0025_create_log_config_table.sql +2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql +2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 06:33:09 OK 0028_vrf_v2.sql +2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql +2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql +2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql +2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql +2023/08/03 06:33:09 OK 0036_external_job_id.go +2023/08/03 06:33:09 OK 0037_cascade_deletes.sql +2023/08/03 06:33:09 OK 0038_create_csa_keys.sql +2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql +2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql +2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql +2023/08/03 06:33:09 OK 0042_create_job_proposals.sql +2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go +2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 06:33:09 OK 0056_multichain.go +2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql +2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql +2023/08/03 06:33:09 OK 0061_multichain_relations.sql +2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql +2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql +2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql +2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql +2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql +2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql +2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql +2023/08/03 06:33:09 OK 0075_unique_job_names.sql +2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql +2023/08/03 06:33:09 OK 0078_only_one_version.sql +2023/08/03 06:33:09 OK 0079_vrf_v2_fields.sql +2023/08/03 06:33:09 OK 0080_drop_unused_cols.sql +2023/08/03 06:33:09 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 06:33:09 OK 0082_lease_lock.sql +2023/08/03 06:33:09 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 06:33:09 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 06:33:09 OK 0085_requested_confs_delay.sql +2023/08/03 06:33:09 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 06:33:09 OK 0087_ocr2_tables.sql +2023/08/03 06:33:09 OK 0088_vrfv2_request_timeout.sql +2023/08/03 06:33:09 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 06:33:09 OK 0090_ocr_new_timeouts.sql +2023/08/03 06:33:09 OK 0091_ocr2_relay.sql +2023/08/03 06:33:09 OK 0092_bptxm_tx_checkers.sql +2023/08/03 06:33:09 OK 0093_terra_txm.sql +2023/08/03 06:33:09 OK 0094_blockhash_store_job.sql +2023/08/03 06:33:09 OK 0095_terra_fcd.sql +2023/08/03 06:33:09 OK 0096_create_job_proposal_specs.sql +2023/08/03 06:33:09 OK 0097_bootstrap_spec.sql +2023/08/03 06:33:09 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 06:33:09 OK 0099_terra_msgs_created_at.sql +2023/08/03 06:33:09 OK 0100_bootstrap_config.sql +2023/08/03 06:33:09 OK 0101_generic_ocr2.sql +2023/08/03 06:33:09 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 06:33:09 OK 0103_terra_msgs_type_url.sql +2023/08/03 06:33:09 OK 0104_terra_cascade_delete.sql +2023/08/03 06:33:09 OK 0105_create_forwarder_addresses.sql +2023/08/03 06:33:10 OK 0106_evm_node_uniqueness.sql +2023/08/03 06:33:10 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 06:33:10 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 06:33:10 OK 0109_solana_chains_nodes.sql +2023/08/03 06:33:10 OK 0110_add_vrf_chunk_size.sql +2023/08/03 06:33:10 OK 0111_terra_msgs_state_started.sql +2023/08/03 06:33:10 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 06:33:10 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 06:33:10 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 06:33:10 OK 0115_log_poller.sql +2023/08/03 06:33:10 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 06:33:10 OK 0117_add_log_poller_idx.sql +2023/08/03 06:33:10 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 06:33:10 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 06:33:10 OK 0120_log_poller_data_idx.sql +2023/08/03 06:33:10 OK 0121_remove_log_configs.sql +2023/08/03 06:33:10 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 06:33:10 OK 0123_terra_idx_simplify.sql +2023/08/03 06:33:10 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 06:33:10 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 06:33:10 OK 0126_remove_observation_source.sql +2023/08/03 06:33:10 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 06:33:10 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 06:33:10 OK 0129_add_job_gas_limit.sql +2023/08/03 06:33:10 OK 0130_starknet_chains_nodes.sql +2023/08/03 06:33:10 OK 0131_add_multi_user.sql +2023/08/03 06:33:10 OK 0132_log_index_uniqueness.sql +2023/08/03 06:33:10 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 06:33:10 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 06:33:10 OK 0135_tx_index_not_null.sql +2023/08/03 06:33:10 OK 0136_add_job_allow_forwarding.sql +2023/08/03 06:33:10 OK 0137_remove_tx_index.sql +2023/08/03 06:33:10 OK 0138_rename_allowforwarding_field.sql +2023/08/03 06:33:10 OK 0139_multi_chain_keys.sql +2023/08/03 06:33:10 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 06:33:10 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 06:33:10 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 06:33:10 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 06:33:10 OK 0144_optimize_lp.sql +2023/08/03 06:33:10 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 06:33:10 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 06:33:10 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 06:33:10 OK 0148_dkg_shares.sql +2023/08/03 06:33:10 OK 0149_bridge_last_good_value.sql +2023/08/03 06:33:10 OK 0150_gaslaneprice_vrf.sql +2023/08/03 06:33:10 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 06:33:10 OK 0152_ocr2_multichain.sql +2023/08/03 06:33:10 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 06:33:10 OK 0154_ocr2dr_requests_table.sql +2023/08/03 06:33:10 OK 0155_remove_terra.sql +2023/08/03 06:33:10 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 06:33:10 OK 0157_add_log_poller_filters_table.sql +2023/08/03 06:33:10 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 06:33:10 OK 0159_add_name_to_job_proposals.sql +2023/08/03 06:33:10 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 06:33:10 OK 0161_update_job_proposal_status.sql +2023/08/03 06:33:10 OK 0162_logpoller_block_timestamps.sql +2023/08/03 06:33:10 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 06:33:10 OK 0164_add_cosmos.sql +2023/08/03 06:33:10 OK 0165_update_job_proposal_constraints.sql +2023/08/03 06:33:10 OK 0166_block_header_feeder_job.sql +2023/08/03 06:33:10 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 06:33:10 OK 0168_drop_node_tables.sql +2023/08/03 06:33:10 OK 0169_log_poller_pruning.sql +2023/08/03 06:33:10 OK 0170_gateway_job_spec.sql +2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql +2023/08/03 06:33:10 OK 0174_vrf_owner.sql +2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql +2023/08/03 06:33:10 OK 0176_s4_shared_table.sql +2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql +2023/08/03 06:33:10 OK 0178_drop_access_list.sql +2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql +2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql +2023/08/03 06:33:10 OK 0183_functions_new_fields.sql +2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql +2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 06:33:10 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:14.981Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 77de4f57adcff2818ded1018c04ab3abfed7d8acadc2dac014d88aa286e69194 for chain type solana","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:14.981Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:17.281Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 9rQgSqAk3yPZ9RwxgRyxkwXYFuUBmfZzvqCbyArTNoAj","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:19.379Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 85c1fcb353e38648d73de6ac5ce0cb90e93dcb64cdd425d20955b711f0d94a87","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.791Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.985Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.985Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T06:33:21.986Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T06:33:21.986Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} +{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} +{"level":"warn","ts":"2023-08-03T06:33:21.986Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} +{"level":"warn","ts":"2023-08-03T06:33:21.987Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 37873. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":37873} +{"level":"debug","ts":"2023-08-03T06:33:21.987Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":37873,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T06:33:21.988Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","id":"PeerV1","v1peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/37873","v1listenPort":37873} +{"level":"debug","ts":"2023-08-03T06:33:21.988Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG Counter:0 Addrs:[10.14.91.55:6690 127.0.0.1:6690] Sig:wIJ9lg/sTIoQQ8nsuKLqEe/ntEqge7/3mbDLwSit/fgUDaKHAYeg2tIJq3p4MJsSkGNgzuKJSTaPco/9cRXVBQ==}","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:33:21.989Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"recvLoop"} +{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:21.991Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T06:33:21.991Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.991Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.32s","version":"2.4.0@114e039","appID":"ecb7718f-7ce6-4595-b06b-86a4ee07a613"} +{"level":"debug","ts":"2023-08-03T06:33:21.991Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000670753} +{"level":"info","ts":"2023-08-03T06:33:21.999Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T06:33:22.002Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.011041446} +{"level":"debug","ts":"2023-08-03T06:33:22.002Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.088Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.734531ms"} +{"level":"debug","ts":"2023-08-03T06:33:23.089Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:23","latency":"213.903µs"} +{"level":"debug","ts":"2023-08-03T06:33:26.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:27.164Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"warn","ts":"2023-08-03T06:33:27.167Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:28","latency":"132.618µs"} +{"level":"debug","ts":"2023-08-03T06:33:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:28","latency":"132.362µs"} +{"level":"debug","ts":"2023-08-03T06:33:31.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:33:31.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peersDetected":0,"id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} +{"level":"debug","ts":"2023-08-03T06:33:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:33","latency":"99.773µs"} +{"level":"debug","ts":"2023-08-03T06:33:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:33","latency":"98.713µs"} +{"level":"debug","ts":"2023-08-03T06:33:36.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:38","latency":"92.029µs"} +{"level":"debug","ts":"2023-08-03T06:33:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:38","latency":"104.573µs"} +{"level":"debug","ts":"2023-08-03T06:33:41.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:43","latency":"106.963µs"} +{"level":"debug","ts":"2023-08-03T06:33:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:43","latency":"107.069µs"} +{"level":"debug","ts":"2023-08-03T06:33:46.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:48","latency":"138.197µs"} +{"level":"debug","ts":"2023-08-03T06:33:48.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:48","latency":"169.052µs"} +{"level":"debug","ts":"2023-08-03T06:33:51.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:53","latency":"120.064µs"} +{"level":"debug","ts":"2023-08-03T06:33:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:53","latency":"121.153µs"} +{"level":"debug","ts":"2023-08-03T06:33:56.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:58","latency":"99.412µs"} +{"level":"debug","ts":"2023-08-03T06:33:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:58","latency":"113.396µs"} +{"level":"debug","ts":"2023-08-03T06:34:01.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:03.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:03","latency":"75.965µs"} +{"level":"debug","ts":"2023-08-03T06:34:03.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:03","latency":"114.511µs"} +{"level":"debug","ts":"2023-08-03T06:34:03.802Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:34:03.804Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T06:34:03.897Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T06:34:03.899Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:03","latency":"96.544336ms"} +{"level":"debug","ts":"2023-08-03T06:34:06.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:07.016Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:07","latency":"9.577919ms"} +{"level":"debug","ts":"2023-08-03T06:34:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:08","latency":"107.616µs"} +{"level":"debug","ts":"2023-08-03T06:34:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:08","latency":"92.426µs"} +{"level":"debug","ts":"2023-08-03T06:34:09.400Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:09","latency":"2.1738989s"} +{"level":"debug","ts":"2023-08-03T06:34:11.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:13.003Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:13","latency":"3.392089912s"} +{"level":"debug","ts":"2023-08-03T06:34:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:13","latency":"96.442µs"} +{"level":"debug","ts":"2023-08-03T06:34:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:13","latency":"104.31µs"} +{"level":"debug","ts":"2023-08-03T06:34:16.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:18","latency":"90.345µs"} +{"level":"debug","ts":"2023-08-03T06:34:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:18","latency":"92.164µs"} +{"level":"debug","ts":"2023-08-03T06:34:21.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:23","latency":"85.858µs"} +{"level":"debug","ts":"2023-08-03T06:34:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:23","latency":"132.354µs"} +{"level":"debug","ts":"2023-08-03T06:34:26.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:28","latency":"96.516µs"} +{"level":"debug","ts":"2023-08-03T06:34:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:28","latency":"89.206µs"} +{"level":"debug","ts":"2023-08-03T06:34:31.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:33","latency":"95.281µs"} +{"level":"debug","ts":"2023-08-03T06:34:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:33","latency":"132.419µs"} +{"level":"debug","ts":"2023-08-03T06:34:36.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:38","latency":"98.94µs"} +{"level":"debug","ts":"2023-08-03T06:34:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:38","latency":"93.505µs"} +{"level":"debug","ts":"2023-08-03T06:34:41.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:43","latency":"120.94µs"} +{"level":"debug","ts":"2023-08-03T06:34:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:43","latency":"124.896µs"} +{"level":"debug","ts":"2023-08-03T06:34:46.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:48","latency":"93.452µs"} +{"level":"debug","ts":"2023-08-03T06:34:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:48","latency":"94.966µs"} +{"level":"debug","ts":"2023-08-03T06:34:51.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:53","latency":"146.246µs"} +{"level":"debug","ts":"2023-08-03T06:34:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:53","latency":"157.773µs"} +{"level":"debug","ts":"2023-08-03T06:34:57.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:58","latency":"88.374µs"} +{"level":"debug","ts":"2023-08-03T06:34:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:58","latency":"109.532µs"} +{"level":"debug","ts":"2023-08-03T06:35:02.001Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:03","latency":"97.282µs"} +{"level":"debug","ts":"2023-08-03T06:35:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:03","latency":"92.363µs"} +{"level":"debug","ts":"2023-08-03T06:35:07.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:08","latency":"93.848µs"} +{"level":"debug","ts":"2023-08-03T06:35:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:08","latency":"101.373µs"} +{"level":"debug","ts":"2023-08-03T06:35:12.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:13","latency":"106.652µs"} +{"level":"debug","ts":"2023-08-03T06:35:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:13","latency":"116.369µs"} +{"level":"debug","ts":"2023-08-03T06:35:17.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:18","latency":"95.709µs"} +{"level":"debug","ts":"2023-08-03T06:35:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:18","latency":"106.613µs"} +{"level":"debug","ts":"2023-08-03T06:35:22.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:23","latency":"89.203µs"} +{"level":"debug","ts":"2023-08-03T06:35:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:23","latency":"90.534µs"} +{"level":"debug","ts":"2023-08-03T06:35:27.005Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:28","latency":"98.981µs"} +{"level":"debug","ts":"2023-08-03T06:35:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:28","latency":"101.743µs"} +{"level":"debug","ts":"2023-08-03T06:35:32.005Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:33","latency":"87.987µs"} +{"level":"debug","ts":"2023-08-03T06:35:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:33","latency":"88.734µs"} +{"level":"debug","ts":"2023-08-03T06:35:37.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:38","latency":"91.234µs"} +{"level":"debug","ts":"2023-08-03T06:35:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:38","latency":"93.206µs"} +{"level":"debug","ts":"2023-08-03T06:35:42.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:35:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:43","latency":"93.621µs"} +{"level":"debug","ts":"2023-08-03T06:35:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:43","latency":"96.263µs"} +{"level":"debug","ts":"2023-08-03T06:35:47.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:48","latency":"88.756µs"} +{"level":"debug","ts":"2023-08-03T06:35:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:48","latency":"104.213µs"} +{"level":"debug","ts":"2023-08-03T06:35:52.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:53","latency":"128.708µs"} +{"level":"debug","ts":"2023-08-03T06:35:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:53","latency":"123.861µs"} +{"level":"debug","ts":"2023-08-03T06:35:57.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:58","latency":"98.055µs"} +{"level":"debug","ts":"2023-08-03T06:35:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:58","latency":"112.15µs"} +{"level":"debug","ts":"2023-08-03T06:36:02.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:03","latency":"101.063µs"} +{"level":"debug","ts":"2023-08-03T06:36:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:03","latency":"95.385µs"} +{"level":"debug","ts":"2023-08-03T06:36:07.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:08","latency":"117.979µs"} +{"level":"debug","ts":"2023-08-03T06:36:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:08","latency":"108.971µs"} +{"level":"debug","ts":"2023-08-03T06:36:12.009Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:13","latency":"96.427µs"} +{"level":"debug","ts":"2023-08-03T06:36:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:13","latency":"79.177µs"} +{"level":"debug","ts":"2023-08-03T06:36:17.010Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:18","latency":"91.021µs"} +{"level":"debug","ts":"2023-08-03T06:36:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:18","latency":"109.614µs"} +{"level":"debug","ts":"2023-08-03T06:36:22.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:23","latency":"99.044µs"} +{"level":"debug","ts":"2023-08-03T06:36:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:23","latency":"75.362µs"} +{"level":"debug","ts":"2023-08-03T06:36:27.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:28","latency":"87.21µs"} +{"level":"debug","ts":"2023-08-03T06:36:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:28","latency":"109.247µs"} +{"level":"debug","ts":"2023-08-03T06:36:32.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:36:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:33","latency":"94.57µs"} +{"level":"debug","ts":"2023-08-03T06:36:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:33","latency":"71.43µs"} +{"level":"debug","ts":"2023-08-03T06:36:37.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:38","latency":"98.241µs"} +{"level":"debug","ts":"2023-08-03T06:36:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:38","latency":"108.978µs"} +{"level":"debug","ts":"2023-08-03T06:36:42.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:43","latency":"87.598µs"} +{"level":"debug","ts":"2023-08-03T06:36:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:43","latency":"91.183µs"} +{"level":"debug","ts":"2023-08-03T06:36:47.013Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:36:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:48","latency":"96.755µs"} +{"level":"debug","ts":"2023-08-03T06:36:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:48","latency":"98.867µs"} +{"level":"debug","ts":"2023-08-03T06:36:52.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:53","latency":"98.186µs"} +{"level":"debug","ts":"2023-08-03T06:36:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:53","latency":"96.243µs"} +{"level":"debug","ts":"2023-08-03T06:36:57.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:36:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:58","latency":"98.324µs"} +{"level":"debug","ts":"2023-08-03T06:36:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:58","latency":"96.134µs"} +{"level":"debug","ts":"2023-08-03T06:37:02.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:37:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:03","latency":"124.57µs"} +{"level":"debug","ts":"2023-08-03T06:37:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:03","latency":"101.417µs"} +{"level":"debug","ts":"2023-08-03T06:37:07.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:08","latency":"93.488µs"} +{"level":"debug","ts":"2023-08-03T06:37:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:08","latency":"111.235µs"} +{"level":"debug","ts":"2023-08-03T06:37:12.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:13","latency":"115.818µs"} +{"level":"debug","ts":"2023-08-03T06:37:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:13","latency":"127.348µs"} +{"level":"debug","ts":"2023-08-03T06:37:17.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:18","latency":"107.598µs"} +{"level":"debug","ts":"2023-08-03T06:37:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:18","latency":"90.104µs"} +{"level":"debug","ts":"2023-08-03T06:37:22.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:23","latency":"92.164µs"} +{"level":"debug","ts":"2023-08-03T06:37:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:23","latency":"85.192µs"} +{"level":"debug","ts":"2023-08-03T06:37:27.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:28","latency":"97.235µs"} +{"level":"debug","ts":"2023-08-03T06:37:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:28","latency":"104.472µs"} +{"level":"debug","ts":"2023-08-03T06:37:32.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:33","latency":"94.819µs"} +{"level":"debug","ts":"2023-08-03T06:37:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:33","latency":"97.212µs"} +{"level":"debug","ts":"2023-08-03T06:37:37.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:37:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:38","latency":"94.858µs"} +{"level":"debug","ts":"2023-08-03T06:37:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:38","latency":"94.115µs"} +{"level":"debug","ts":"2023-08-03T06:37:42.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:43","latency":"91.491µs"} +{"level":"debug","ts":"2023-08-03T06:37:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:43","latency":"101.727µs"} +{"level":"debug","ts":"2023-08-03T06:37:47.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:37:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:48","latency":"103.022µs"} +{"level":"debug","ts":"2023-08-03T06:37:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:48","latency":"108.146µs"} +{"level":"debug","ts":"2023-08-03T06:37:52.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:53","latency":"86.172µs"} +{"level":"debug","ts":"2023-08-03T06:37:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:53","latency":"91.352µs"} +{"level":"debug","ts":"2023-08-03T06:37:57.021Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:58","latency":"96.733µs"} +{"level":"debug","ts":"2023-08-03T06:37:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:58","latency":"118.801µs"} +{"level":"debug","ts":"2023-08-03T06:38:02.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:03","latency":"92.032µs"} +{"level":"debug","ts":"2023-08-03T06:38:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:03","latency":"102.392µs"} +{"level":"debug","ts":"2023-08-03T06:38:07.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:08","latency":"89.911µs"} +{"level":"debug","ts":"2023-08-03T06:38:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:08","latency":"71.417µs"} +{"level":"debug","ts":"2023-08-03T06:38:12.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:13","latency":"112.791µs"} +{"level":"debug","ts":"2023-08-03T06:38:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:13","latency":"74.737µs"} +{"level":"debug","ts":"2023-08-03T06:38:17.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:38:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:18","latency":"97.541µs"} +{"level":"debug","ts":"2023-08-03T06:38:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:18","latency":"97.801µs"} +{"level":"debug","ts":"2023-08-03T06:38:22.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:38:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:23","latency":"88.871µs"} +{"level":"debug","ts":"2023-08-03T06:38:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:23","latency":"114.408µs"} +{"level":"debug","ts":"2023-08-03T06:38:27.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:28","latency":"107.195µs"} +{"level":"debug","ts":"2023-08-03T06:38:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:28","latency":"103.503µs"} +{"level":"info","ts":"2023-08-03T06:38:31.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} +{"level":"debug","ts":"2023-08-03T06:38:32.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:38:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:33","latency":"117.435µs"} +{"level":"debug","ts":"2023-08-03T06:38:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:33","latency":"119.761µs"} +{"level":"debug","ts":"2023-08-03T06:38:37.025Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:38","latency":"97.591µs"} +{"level":"debug","ts":"2023-08-03T06:38:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:38","latency":"78.197µs"} +{"level":"debug","ts":"2023-08-03T06:38:42.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:43.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:43","latency":"110.301µs"} +{"level":"debug","ts":"2023-08-03T06:38:43.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:43","latency":"106.21µs"} +{"level":"debug","ts":"2023-08-03T06:38:47.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:38:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:48","latency":"95.726µs"} +{"level":"debug","ts":"2023-08-03T06:38:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:48","latency":"106.431µs"} +{"level":"debug","ts":"2023-08-03T06:38:52.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:53","latency":"98.164µs"} +{"level":"debug","ts":"2023-08-03T06:38:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:53","latency":"102.922µs"} +{"level":"debug","ts":"2023-08-03T06:38:57.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:38:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:58","latency":"98.875µs"} +{"level":"debug","ts":"2023-08-03T06:38:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:58","latency":"92.697µs"} +{"level":"debug","ts":"2023-08-03T06:39:02.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:03","latency":"97.146µs"} +{"level":"debug","ts":"2023-08-03T06:39:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:03","latency":"105.266µs"} +{"level":"debug","ts":"2023-08-03T06:39:07.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:08","latency":"78.126µs"} +{"level":"debug","ts":"2023-08-03T06:39:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:08","latency":"90.728µs"} +{"level":"debug","ts":"2023-08-03T06:39:12.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:13","latency":"94.983µs"} +{"level":"debug","ts":"2023-08-03T06:39:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:13","latency":"100.709µs"} +{"level":"debug","ts":"2023-08-03T06:39:17.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:18","latency":"108.914µs"} +{"level":"debug","ts":"2023-08-03T06:39:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:18","latency":"81.355µs"} +{"level":"debug","ts":"2023-08-03T06:39:22.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:23.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:23","latency":"103.086µs"} +{"level":"debug","ts":"2023-08-03T06:39:23.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:23","latency":"107.321µs"} +{"level":"debug","ts":"2023-08-03T06:39:27.031Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:28","latency":"91.703µs"} +{"level":"debug","ts":"2023-08-03T06:39:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:28","latency":"92.642µs"} +{"level":"debug","ts":"2023-08-03T06:39:32.032Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:39:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:33","latency":"91.725µs"} +{"level":"debug","ts":"2023-08-03T06:39:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:33","latency":"95.698µs"} +{"level":"debug","ts":"2023-08-03T06:39:37.033Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:38","latency":"92.809µs"} +{"level":"debug","ts":"2023-08-03T06:39:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:38","latency":"92.196µs"} +{"level":"debug","ts":"2023-08-03T06:39:42.033Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:43","latency":"96.546µs"} +{"level":"debug","ts":"2023-08-03T06:39:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:43","latency":"93.38µs"} +{"level":"debug","ts":"2023-08-03T06:39:47.034Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:48","latency":"99.43µs"} +{"level":"debug","ts":"2023-08-03T06:39:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:48","latency":"74.493µs"} +{"level":"debug","ts":"2023-08-03T06:39:52.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:39:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:53","latency":"96.805µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:53","latency":"96.902µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.538Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:53","latency":"65.218µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.749Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:53","latency":"37.114µs"} +{"level":"debug","ts":"2023-08-03T06:39:57.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:57.352Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"1.889375ms"} +{"level":"debug","ts":"2023-08-03T06:39:57.567Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_85c1fcb3_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"3.809619ms"} +{"level":"debug","ts":"2023-08-03T06:39:57.783Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_85c1fcb3_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"3.052427ms"} +{"level":"debug","ts":"2023-08-03T06:39:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:58","latency":"96.024µs"} +{"level":"debug","ts":"2023-08-03T06:39:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:58","latency":"91.674µs"} +{"level":"info","ts":"2023-08-03T06:40:00.530Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"bootstrap","jobID":1} +{"level":"debug","ts":"2023-08-03T06:40:00.531Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"info","ts":"2023-08-03T06:40:00.531Z","caller":"ocrbootstrap/delegate.go:110","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:40:00.531Z","caller":"ocrbootstrap/delegate.go:127","msg":"Launching new bootstrap node","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","args":{"BootstrapperFactory":{"BinaryNetworkEndpointFactory":{},"BootstrapperFactory":{}},"V2Bootstrappers":null,"ContractConfigTracker":{},"Database":{},"LocalConfig":{"BlockchainTimeout":20000000000,"ContractConfigConfirmations":1,"SkipContractConfigConfirmations":false,"ContractConfigTrackerPollInterval":15000000000,"ContractTransmitterTransmitTimeout":10000000000,"DatabaseTimeout":10000000000,"MinOCR2MaxDurationQuery":0,"DevelopmentMode":""},"Logger":{},"MonitoringEndpoint":null,"OffchainConfigDigester":{"ProgramID":"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x","StateID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg"}}} +{"level":"debug","ts":"2023-08-03T06:40:00.531Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":2} +{"level":"debug","ts":"2023-08-03T06:40:00.531Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.532Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.532Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":2} +{"level":"info","ts":"2023-08-03T06:40:00.532Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"bootstrap","jobID":1} +{"level":"debug","ts":"2023-08-03T06:40:00.533Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.533Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:00.533Z","logger":"OCRBootstrap","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} +{"level":"info","ts":"2023-08-03T06:40:00.533Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} +{"level":"debug","ts":"2023-08-03T06:40:00.533Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"bootstrap\\\"\\nname = \\\"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c\\\"\\nforwardingAllowed = false\\n\\n\\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\n\\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"9.493301ms"} +{"level":"debug","ts":"2023-08-03T06:40:00.534Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} +{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":null,"id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ragedisco/v1","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ragedisco/v1","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamName":"ragedisco/v1","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"]} +{"level":"info","ts":"2023-08-03T06:40:00.538Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","loaded":[],"numLoaded":0,"queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"numQueried":4,"_id":"discoveryProtocol","id":"ragep2p","found":[],"numFound":0} +{"level":"info","ts":"2023-08-03T06:40:00.538Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:46","msg":"BootstrapperV2: Initialized","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","bootstrappers":null,"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"_id":"bootstrapperV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2"} +{"level":"info","ts":"2023-08-03T06:40:00.538Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:81","msg":"BootstrapperV2: Started listening","version":"2.4.0@114e039","_id":"bootstrapperV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:40:01.566Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.567Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.036Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:02.566Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.568Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:03","latency":"101.075µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:03","latency":"98.996µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.646Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.648Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:04.596Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.21.114:48222","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","direction":"in"} +{"level":"info","ts":"2023-08-03T06:40:04.596Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamName":"ragedisco/v1","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2"} +{"level":"info","ts":"2023-08-03T06:40:04.597Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:40:04.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.660Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.706Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.707Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:05.887Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"in","remoteAddr":"10.14.113.114:51454","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:05.888Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","streamName":"ragedisco/v1","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0"} +{"level":"info","ts":"2023-08-03T06:40:05.888Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} +{"level":"info","ts":"2023-08-03T06:40:06.561Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.63.201:59862","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","direction":"in"} +{"level":"info","ts":"2023-08-03T06:40:06.561Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","streamName":"ragedisco/v1","id":"ragep2p","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"info","ts":"2023-08-03T06:40:06.562Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}"} +{"level":"info","ts":"2023-08-03T06:40:06.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","direction":"in","remoteAddr":"10.14.3.137:42320"} +{"level":"info","ts":"2023-08-03T06:40:06.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ragedisco/v1","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8"} +{"level":"info","ts":"2023-08-03T06:40:06.622Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-03T06:40:06.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.766Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.037Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:07.797Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.799Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:08","latency":"97.174µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:08","latency":"92.395µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.851Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.852Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.928Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.929Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.015Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.016Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:12.085Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.086Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:13","latency":"114.49µs"} +{"level":"debug","ts":"2023-08-03T06:40:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:13","latency":"134.622µs"} +{"level":"debug","ts":"2023-08-03T06:40:13.139Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.140Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.165Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.167Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.187Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.188Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.535Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} +{"level":"debug","ts":"2023-08-03T06:40:16.199Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.200Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log new file mode 100644 index 000000000..fa7a42c1a --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + +waiting for server to start....2023-08-03 06:33:07.680 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:07.766 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:07 UTC +2023-08-03 06:33:07.771 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-03 06:33:08.385 UTC [48] LOG: received fast shutdown request +.2023-08-03 06:33:08.386 UTC [48] LOG: aborting any active transactions +2023-08-03 06:33:08.388 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 06:33:08.388 UTC [50] LOG: shutting down +2023-08-03 06:33:08.480 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 06:33:08.494 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 06:33:08.494 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 06:33:08.497 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:08.567 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:08 UTC +2023-08-03 06:33:08.571 UTC [1] LOG: database system is ready to accept connections +2023-08-03 06:33:09.395 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 06:33:10.566 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 06:33:10.566 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 06:33:10.566 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 06:33:10.566 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 06:33:10.567 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 06:33:10.567 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log new file mode 100644 index 000000000..531879058 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log @@ -0,0 +1,782 @@ +0.0.0.0:5432 - no response +waiting for database to start +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} +{"level":"debug","ts":"2023-08-03T06:33:10.483Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.483Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.483Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"3326c91c-e231-405f-b69a-069aecb140d4"} +{"level":"debug","ts":"2023-08-03T06:33:10.489Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"3326c91c-e231-405f-b69a-069aecb140d4"} +{"level":"debug","ts":"2023-08-03T06:33:10.566Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} +2023/08/03 06:33:10 OK 0001_initial.sql +2023/08/03 06:33:10 OK 0002_gormv2.sql +2023/08/03 06:33:11 OK 0003_eth_logs_table.sql +2023/08/03 06:33:11 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 06:33:11 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 06:33:11 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 06:33:11 OK 0007_reverse_eth_logs_table.sql +2023/08/03 06:33:11 OK 0008_reapply_eth_logs_table.sql +2023/08/03 06:33:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 06:33:11 OK 0010_bridge_fk.sql +2023/08/03 06:33:11 OK 0011_latest_round_requested.sql +2023/08/03 06:33:11 OK 0012_change_jobs_to_numeric.sql +2023/08/03 06:33:11 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 06:33:11 OK 0014_add_keeper_tables.sql +2023/08/03 06:33:11 OK 0015_simplify_log_broadcaster.sql +2023/08/03 06:33:11 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 06:33:11 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 06:33:11 OK 0018_add_node_version_table.sql +2023/08/03 06:33:11 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 06:33:11 OK 0020_remove_result_task.sql +2023/08/03 06:33:11 OK 0021_add_job_id_topic_filter.sql +2023/08/03 06:33:11 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 06:33:11 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 06:33:11 OK 0024_add_cron_spec_tables.sql +2023/08/03 06:33:11 OK 0025_create_log_config_table.sql +2023/08/03 06:33:11 OK 0026_eth_tx_meta.sql +2023/08/03 06:33:11 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 06:33:11 OK 0028_vrf_v2.sql +2023/08/03 06:33:11 OK 0029_add_webhook_spec_tables.sql +2023/08/03 06:33:11 OK 0030_drop_keys_last_used.sql +2023/08/03 06:33:11 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 06:33:11 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 06:33:11 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 06:33:11 OK 0034_webhook_external_initiator.sql +2023/08/03 06:33:11 OK 0035_create_feeds_managers.sql +2023/08/03 06:33:11 OK 0036_external_job_id.go +2023/08/03 06:33:11 OK 0037_cascade_deletes.sql +2023/08/03 06:33:11 OK 0038_create_csa_keys.sql +2023/08/03 06:33:11 OK 0039_remove_fmv2_precision.sql +2023/08/03 06:33:11 OK 0040_heads_l1_block_number.sql +2023/08/03 06:33:11 OK 0041_eth_tx_strategies.sql +2023/08/03 06:33:11 OK 0042_create_job_proposals.sql +2023/08/03 06:33:11 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 06:33:11 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 06:33:11 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 06:33:11 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 06:33:11 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 06:33:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 06:33:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 06:33:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 06:33:11 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 06:33:11 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 06:33:11 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 06:33:11 OK 0054_remove_legacy_pipeline.go +2023/08/03 06:33:11 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 06:33:11 OK 0056_multichain.go +2023/08/03 06:33:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 06:33:11 OK 0058_direct_request_whitelist.sql +2023/08/03 06:33:11 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 06:33:11 OK 0060_combine_keys_tables.sql +2023/08/03 06:33:11 OK 0061_multichain_relations.sql +2023/08/03 06:33:11 OK 0062_upgrade_keepers.sql +2023/08/03 06:33:11 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 06:33:11 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 06:33:11 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 06:33:11 OK 0066_update_job_proposal_status.sql +2023/08/03 06:33:11 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 06:33:11 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 06:33:11 OK 0069_remove_unused_columns.sql +2023/08/03 06:33:11 OK 0070_dynamic_fee_txes.sql +2023/08/03 06:33:11 OK 0071_allow_null_json_serializable.sql +2023/08/03 06:33:11 OK 0072_drop_unused_tables.sql +2023/08/03 06:33:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 06:33:11 OK 0074_simulation_eth_tx.sql +2023/08/03 06:33:11 OK 0075_unique_job_names.sql +2023/08/03 06:33:11 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 06:33:11 OK 0077_add_webauthn_table.sql +2023/08/03 06:33:11 OK 0078_only_one_version.sql +2023/08/03 06:33:11 OK 0079_vrf_v2_fields.sql +2023/08/03 06:33:11 OK 0080_drop_unused_cols.sql +2023/08/03 06:33:11 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 06:33:11 OK 0082_lease_lock.sql +2023/08/03 06:33:11 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 06:33:11 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 06:33:11 OK 0085_requested_confs_delay.sql +2023/08/03 06:33:11 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 06:33:11 OK 0087_ocr2_tables.sql +2023/08/03 06:33:11 OK 0088_vrfv2_request_timeout.sql +2023/08/03 06:33:11 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 06:33:11 OK 0090_ocr_new_timeouts.sql +2023/08/03 06:33:11 OK 0091_ocr2_relay.sql +2023/08/03 06:33:11 OK 0092_bptxm_tx_checkers.sql +2023/08/03 06:33:11 OK 0093_terra_txm.sql +2023/08/03 06:33:11 OK 0094_blockhash_store_job.sql +2023/08/03 06:33:11 OK 0095_terra_fcd.sql +2023/08/03 06:33:11 OK 0096_create_job_proposal_specs.sql +2023/08/03 06:33:11 OK 0097_bootstrap_spec.sql +2023/08/03 06:33:11 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 06:33:11 OK 0099_terra_msgs_created_at.sql +2023/08/03 06:33:11 OK 0100_bootstrap_config.sql +2023/08/03 06:33:11 OK 0101_generic_ocr2.sql +2023/08/03 06:33:11 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 06:33:11 OK 0103_terra_msgs_type_url.sql +2023/08/03 06:33:11 OK 0104_terra_cascade_delete.sql +2023/08/03 06:33:11 OK 0105_create_forwarder_addresses.sql +2023/08/03 06:33:11 OK 0106_evm_node_uniqueness.sql +2023/08/03 06:33:11 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 06:33:11 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 06:33:11 OK 0109_solana_chains_nodes.sql +2023/08/03 06:33:11 OK 0110_add_vrf_chunk_size.sql +2023/08/03 06:33:11 OK 0111_terra_msgs_state_started.sql +2023/08/03 06:33:11 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 06:33:11 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 06:33:11 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 06:33:11 OK 0115_log_poller.sql +2023/08/03 06:33:11 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 06:33:11 OK 0117_add_log_poller_idx.sql +2023/08/03 06:33:11 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 06:33:11 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 06:33:11 OK 0120_log_poller_data_idx.sql +2023/08/03 06:33:11 OK 0121_remove_log_configs.sql +2023/08/03 06:33:11 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 06:33:11 OK 0123_terra_idx_simplify.sql +2023/08/03 06:33:11 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 06:33:11 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 06:33:11 OK 0126_remove_observation_source.sql +2023/08/03 06:33:11 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 06:33:11 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 06:33:11 OK 0129_add_job_gas_limit.sql +2023/08/03 06:33:11 OK 0130_starknet_chains_nodes.sql +2023/08/03 06:33:11 OK 0131_add_multi_user.sql +2023/08/03 06:33:11 OK 0132_log_index_uniqueness.sql +2023/08/03 06:33:11 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 06:33:11 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 06:33:11 OK 0135_tx_index_not_null.sql +2023/08/03 06:33:11 OK 0136_add_job_allow_forwarding.sql +2023/08/03 06:33:11 OK 0137_remove_tx_index.sql +2023/08/03 06:33:11 OK 0138_rename_allowforwarding_field.sql +2023/08/03 06:33:11 OK 0139_multi_chain_keys.sql +2023/08/03 06:33:11 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 06:33:11 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 06:33:11 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 06:33:11 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 06:33:12 OK 0144_optimize_lp.sql +2023/08/03 06:33:12 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 06:33:12 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 06:33:12 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 06:33:12 OK 0148_dkg_shares.sql +2023/08/03 06:33:12 OK 0149_bridge_last_good_value.sql +2023/08/03 06:33:12 OK 0150_gaslaneprice_vrf.sql +2023/08/03 06:33:12 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 06:33:12 OK 0152_ocr2_multichain.sql +2023/08/03 06:33:12 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 06:33:12 OK 0154_ocr2dr_requests_table.sql +2023/08/03 06:33:12 OK 0155_remove_terra.sql +2023/08/03 06:33:12 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 06:33:12 OK 0157_add_log_poller_filters_table.sql +2023/08/03 06:33:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 06:33:12 OK 0159_add_name_to_job_proposals.sql +2023/08/03 06:33:12 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 06:33:12 OK 0161_update_job_proposal_status.sql +2023/08/03 06:33:12 OK 0162_logpoller_block_timestamps.sql +2023/08/03 06:33:12 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 06:33:12 OK 0164_add_cosmos.sql +2023/08/03 06:33:12 OK 0165_update_job_proposal_constraints.sql +2023/08/03 06:33:12 OK 0166_block_header_feeder_job.sql +2023/08/03 06:33:12 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 06:33:12 OK 0168_drop_node_tables.sql +2023/08/03 06:33:12 OK 0169_log_poller_pruning.sql +2023/08/03 06:33:12 OK 0170_gateway_job_spec.sql +2023/08/03 06:33:12 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 06:33:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 06:33:12 OK 0173_add_s4_functions_table.sql +2023/08/03 06:33:12 OK 0174_vrf_owner.sql +2023/08/03 06:33:12 OK 0175_logpoller_querying_improvements.sql +2023/08/03 06:33:12 OK 0176_s4_shared_table.sql +2023/08/03 06:33:12 OK 0177_add_ocr_protocol_state.sql +2023/08/03 06:33:12 OK 0178_drop_access_list.sql +2023/08/03 06:33:12 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 06:33:12 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 06:33:12 OK 0181_bhs_vrfv2plus.sql +2023/08/03 06:33:12 OK 0182_nullable_feed_id.sql +2023/08/03 06:33:12 OK 0183_functions_new_fields.sql +2023/08/03 06:33:12 OK 0184_chains_tables_removal.sql +2023/08/03 06:33:12 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 06:33:12 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T06:33:12.299Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:16.776Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 56f474b241eadfdc5c2f3cf3a19c419dddd0edeefabc2cf46ff1cfedefad381e for chain type solana","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:16.776Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:18.997Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 57FNtDDDr6RKjVZT3aiQooZ7pRej5VXtuB2WcevJE5Pw","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.087Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID b73998f113c4b593c491cb372105f9633a9f7a3cd847b16ebf7dfe438279daf5","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.479Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:23.672Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:23.673Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T06:33:23.673Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T06:33:23.673Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T06:33:23.673Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} +{"level":"warn","ts":"2023-08-03T06:33:23.674Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 34453. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":34453} +{"level":"debug","ts":"2023-08-03T06:33:23.674Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":34453,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T06:33:23.675Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1listenPort":34453,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/34453","v1peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"PeerV1"} +{"level":"debug","ts":"2023-08-03T06:33:23.675Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","in":"lockedBumpOwnAnnouncement","_id":"discoveryProtocol","id":"ragep2p","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}"} +{"level":"info","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:33:23.676Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","in":"saveLoop","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","in":"recvLoop","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:23.678Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T06:33:23.678Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:23.678Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.20s","version":"2.4.0@114e039","appID":"3326c91c-e231-405f-b69a-069aecb140d4"} +{"level":"debug","ts":"2023-08-03T06:33:23.679Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000655839} +{"level":"info","ts":"2023-08-03T06:33:23.686Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T06:33:23.690Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.011053057} +{"level":"debug","ts":"2023-08-03T06:33:23.690Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:24.630Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:24","latency":"2.18698ms"} +{"level":"debug","ts":"2023-08-03T06:33:24.631Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:24","latency":"234.472µs"} +{"level":"debug","ts":"2023-08-03T06:33:28.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:29.074Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"warn","ts":"2023-08-03T06:33:29.076Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:29","latency":"101.552µs"} +{"level":"debug","ts":"2023-08-03T06:33:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:29","latency":"117.606µs"} +{"level":"info","ts":"2023-08-03T06:33:33.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-03T06:33:33.678Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:34","latency":"111.708µs"} +{"level":"debug","ts":"2023-08-03T06:33:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:34","latency":"128.289µs"} +{"level":"debug","ts":"2023-08-03T06:33:38.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:39","latency":"98.464µs"} +{"level":"debug","ts":"2023-08-03T06:33:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:39","latency":"98.53µs"} +{"level":"debug","ts":"2023-08-03T06:33:43.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:44","latency":"106.295µs"} +{"level":"debug","ts":"2023-08-03T06:33:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:44","latency":"122.837µs"} +{"level":"debug","ts":"2023-08-03T06:33:48.680Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:49","latency":"123.95µs"} +{"level":"debug","ts":"2023-08-03T06:33:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:49","latency":"119.719µs"} +{"level":"debug","ts":"2023-08-03T06:33:53.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:54","latency":"88.182µs"} +{"level":"debug","ts":"2023-08-03T06:33:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:54","latency":"92.629µs"} +{"level":"debug","ts":"2023-08-03T06:33:58.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:33:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:59","latency":"73.464µs"} +{"level":"debug","ts":"2023-08-03T06:33:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:59","latency":"105.289µs"} +{"level":"debug","ts":"2023-08-03T06:34:03.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:34:04.531Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:34:04.532Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T06:34:04.595Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T06:34:04.609Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:04","latency":"78.217016ms"} +{"level":"debug","ts":"2023-08-03T06:34:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:04","latency":"89.885µs"} +{"level":"debug","ts":"2023-08-03T06:34:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:04","latency":"89.807µs"} +{"level":"debug","ts":"2023-08-03T06:34:08.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:09","latency":"97.003µs"} +{"level":"debug","ts":"2023-08-03T06:34:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:09","latency":"96.979µs"} +{"level":"debug","ts":"2023-08-03T06:34:13.229Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:13","latency":"15.952981ms"} +{"level":"debug","ts":"2023-08-03T06:34:13.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:14","latency":"87.687µs"} +{"level":"debug","ts":"2023-08-03T06:34:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:14","latency":"91.953µs"} +{"level":"debug","ts":"2023-08-03T06:34:15.500Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:15","latency":"2.063081244s"} +{"level":"debug","ts":"2023-08-03T06:34:18.001Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:18","latency":"2.29146572s"} +{"level":"debug","ts":"2023-08-03T06:34:18.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:19","latency":"121.033µs"} +{"level":"debug","ts":"2023-08-03T06:34:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:19","latency":"124.911µs"} +{"level":"debug","ts":"2023-08-03T06:34:23.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:24.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:24","latency":"108.195µs"} +{"level":"debug","ts":"2023-08-03T06:34:24.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:24","latency":"112.76µs"} +{"level":"debug","ts":"2023-08-03T06:34:28.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:29","latency":"89.898µs"} +{"level":"debug","ts":"2023-08-03T06:34:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:29","latency":"89.736µs"} +{"level":"debug","ts":"2023-08-03T06:34:33.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:34","latency":"86.363µs"} +{"level":"debug","ts":"2023-08-03T06:34:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:34","latency":"139.232µs"} +{"level":"debug","ts":"2023-08-03T06:34:38.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:39","latency":"100.431µs"} +{"level":"debug","ts":"2023-08-03T06:34:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:39","latency":"70.871µs"} +{"level":"debug","ts":"2023-08-03T06:34:43.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:44","latency":"117.18µs"} +{"level":"debug","ts":"2023-08-03T06:34:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:44","latency":"97.851µs"} +{"level":"debug","ts":"2023-08-03T06:34:48.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:49","latency":"92.768µs"} +{"level":"debug","ts":"2023-08-03T06:34:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:49","latency":"84.374µs"} +{"level":"debug","ts":"2023-08-03T06:34:53.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:54","latency":"95.447µs"} +{"level":"debug","ts":"2023-08-03T06:34:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:54","latency":"78.183µs"} +{"level":"debug","ts":"2023-08-03T06:34:58.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:59","latency":"92.262µs"} +{"level":"debug","ts":"2023-08-03T06:34:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:59","latency":"83.491µs"} +{"level":"debug","ts":"2023-08-03T06:35:03.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:04","latency":"88.962µs"} +{"level":"debug","ts":"2023-08-03T06:35:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:04","latency":"93.132µs"} +{"level":"debug","ts":"2023-08-03T06:35:08.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:09","latency":"91.955µs"} +{"level":"debug","ts":"2023-08-03T06:35:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:09","latency":"94.951µs"} +{"level":"debug","ts":"2023-08-03T06:35:13.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:14","latency":"91.745µs"} +{"level":"debug","ts":"2023-08-03T06:35:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:14","latency":"91.596µs"} +{"level":"debug","ts":"2023-08-03T06:35:18.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:19","latency":"90.213µs"} +{"level":"debug","ts":"2023-08-03T06:35:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:19","latency":"102.619µs"} +{"level":"debug","ts":"2023-08-03T06:35:23.692Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:24","latency":"130.508µs"} +{"level":"debug","ts":"2023-08-03T06:35:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:24","latency":"94.338µs"} +{"level":"debug","ts":"2023-08-03T06:35:28.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:35:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:29","latency":"91.675µs"} +{"level":"debug","ts":"2023-08-03T06:35:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:29","latency":"87.183µs"} +{"level":"debug","ts":"2023-08-03T06:35:33.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:34","latency":"89.01µs"} +{"level":"debug","ts":"2023-08-03T06:35:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:34","latency":"89.526µs"} +{"level":"debug","ts":"2023-08-03T06:35:38.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:39","latency":"114.314µs"} +{"level":"debug","ts":"2023-08-03T06:35:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:39","latency":"113.723µs"} +{"level":"debug","ts":"2023-08-03T06:35:43.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:44","latency":"98.184µs"} +{"level":"debug","ts":"2023-08-03T06:35:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:44","latency":"74.393µs"} +{"level":"debug","ts":"2023-08-03T06:35:48.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:49","latency":"87.152µs"} +{"level":"debug","ts":"2023-08-03T06:35:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:49","latency":"84.554µs"} +{"level":"debug","ts":"2023-08-03T06:35:53.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:35:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:54","latency":"86.95µs"} +{"level":"debug","ts":"2023-08-03T06:35:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:54","latency":"91.449µs"} +{"level":"debug","ts":"2023-08-03T06:35:58.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:59","latency":"97.787µs"} +{"level":"debug","ts":"2023-08-03T06:35:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:59","latency":"114.353µs"} +{"level":"debug","ts":"2023-08-03T06:36:03.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:04","latency":"101.187µs"} +{"level":"debug","ts":"2023-08-03T06:36:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:04","latency":"102.229µs"} +{"level":"debug","ts":"2023-08-03T06:36:08.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:09","latency":"84.467µs"} +{"level":"debug","ts":"2023-08-03T06:36:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:09","latency":"86.94µs"} +{"level":"debug","ts":"2023-08-03T06:36:13.699Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:14","latency":"104.623µs"} +{"level":"debug","ts":"2023-08-03T06:36:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:14","latency":"122.597µs"} +{"level":"debug","ts":"2023-08-03T06:36:18.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:19","latency":"121.739µs"} +{"level":"debug","ts":"2023-08-03T06:36:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:19","latency":"152.045µs"} +{"level":"debug","ts":"2023-08-03T06:36:23.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:24","latency":"98.607µs"} +{"level":"debug","ts":"2023-08-03T06:36:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:24","latency":"117.871µs"} +{"level":"debug","ts":"2023-08-03T06:36:28.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:29","latency":"90.965µs"} +{"level":"debug","ts":"2023-08-03T06:36:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:29","latency":"91.783µs"} +{"level":"debug","ts":"2023-08-03T06:36:33.702Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:34","latency":"94.518µs"} +{"level":"debug","ts":"2023-08-03T06:36:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:34","latency":"104.628µs"} +{"level":"debug","ts":"2023-08-03T06:36:38.703Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:39","latency":"107.553µs"} +{"level":"debug","ts":"2023-08-03T06:36:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:39","latency":"105.842µs"} +{"level":"debug","ts":"2023-08-03T06:36:43.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:44","latency":"88.233µs"} +{"level":"debug","ts":"2023-08-03T06:36:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:44","latency":"106.03µs"} +{"level":"debug","ts":"2023-08-03T06:36:48.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:36:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:49","latency":"107.602µs"} +{"level":"debug","ts":"2023-08-03T06:36:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:49","latency":"81.198µs"} +{"level":"debug","ts":"2023-08-03T06:36:53.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:54","latency":"97.84µs"} +{"level":"debug","ts":"2023-08-03T06:36:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:54","latency":"97.489µs"} +{"level":"debug","ts":"2023-08-03T06:36:58.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:36:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:59","latency":"96.159µs"} +{"level":"debug","ts":"2023-08-03T06:36:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:59","latency":"95.045µs"} +{"level":"debug","ts":"2023-08-03T06:37:03.706Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:04","latency":"81.655µs"} +{"level":"debug","ts":"2023-08-03T06:37:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:04","latency":"93.466µs"} +{"level":"debug","ts":"2023-08-03T06:37:08.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:37:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:09","latency":"99.85µs"} +{"level":"debug","ts":"2023-08-03T06:37:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:09","latency":"83.299µs"} +{"level":"debug","ts":"2023-08-03T06:37:13.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:14","latency":"124.426µs"} +{"level":"debug","ts":"2023-08-03T06:37:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:14","latency":"106.241µs"} +{"level":"debug","ts":"2023-08-03T06:37:18.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:19.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:19","latency":"90.329µs"} +{"level":"debug","ts":"2023-08-03T06:37:19.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:19","latency":"104.855µs"} +{"level":"debug","ts":"2023-08-03T06:37:23.709Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:24","latency":"99.274µs"} +{"level":"debug","ts":"2023-08-03T06:37:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:24","latency":"80.59µs"} +{"level":"debug","ts":"2023-08-03T06:37:28.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:29","latency":"105.456µs"} +{"level":"debug","ts":"2023-08-03T06:37:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:29","latency":"105.407µs"} +{"level":"debug","ts":"2023-08-03T06:37:33.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:34","latency":"104.987µs"} +{"level":"debug","ts":"2023-08-03T06:37:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:34","latency":"102.415µs"} +{"level":"debug","ts":"2023-08-03T06:37:38.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:39","latency":"88.399µs"} +{"level":"debug","ts":"2023-08-03T06:37:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:39","latency":"106.818µs"} +{"level":"debug","ts":"2023-08-03T06:37:43.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:44","latency":"91.567µs"} +{"level":"debug","ts":"2023-08-03T06:37:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:44","latency":"100.775µs"} +{"level":"debug","ts":"2023-08-03T06:37:48.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:49","latency":"95.645µs"} +{"level":"debug","ts":"2023-08-03T06:37:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:49","latency":"89.926µs"} +{"level":"debug","ts":"2023-08-03T06:37:53.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:54","latency":"93.234µs"} +{"level":"debug","ts":"2023-08-03T06:37:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:54","latency":"98.104µs"} +{"level":"debug","ts":"2023-08-03T06:37:58.714Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:59","latency":"89.78µs"} +{"level":"debug","ts":"2023-08-03T06:37:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:59","latency":"89.967µs"} +{"level":"debug","ts":"2023-08-03T06:38:03.715Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:04","latency":"98.292µs"} +{"level":"debug","ts":"2023-08-03T06:38:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:04","latency":"98.31µs"} +{"level":"debug","ts":"2023-08-03T06:38:08.716Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:09","latency":"89.591µs"} +{"level":"debug","ts":"2023-08-03T06:38:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:09","latency":"102.978µs"} +{"level":"debug","ts":"2023-08-03T06:38:13.717Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:14","latency":"106.709µs"} +{"level":"debug","ts":"2023-08-03T06:38:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:14","latency":"108.037µs"} +{"level":"debug","ts":"2023-08-03T06:38:18.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:38:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:19","latency":"98.74µs"} +{"level":"debug","ts":"2023-08-03T06:38:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:19","latency":"94.363µs"} +{"level":"debug","ts":"2023-08-03T06:38:23.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:38:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:24","latency":"86.315µs"} +{"level":"debug","ts":"2023-08-03T06:38:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:24","latency":"104.683µs"} +{"level":"debug","ts":"2023-08-03T06:38:28.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:29","latency":"104.248µs"} +{"level":"debug","ts":"2023-08-03T06:38:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:29","latency":"114.622µs"} +{"level":"info","ts":"2023-08-03T06:38:33.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-03T06:38:33.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:34","latency":"90.09µs"} +{"level":"debug","ts":"2023-08-03T06:38:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:34","latency":"91.222µs"} +{"level":"debug","ts":"2023-08-03T06:38:38.720Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:39","latency":"91.179µs"} +{"level":"debug","ts":"2023-08-03T06:38:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:39","latency":"95.117µs"} +{"level":"debug","ts":"2023-08-03T06:38:43.720Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:38:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:44","latency":"87.156µs"} +{"level":"debug","ts":"2023-08-03T06:38:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:44","latency":"103.574µs"} +{"level":"debug","ts":"2023-08-03T06:38:48.721Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:49","latency":"85.364µs"} +{"level":"debug","ts":"2023-08-03T06:38:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:49","latency":"92.96µs"} +{"level":"debug","ts":"2023-08-03T06:38:53.722Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:54","latency":"91.169µs"} +{"level":"debug","ts":"2023-08-03T06:38:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:54","latency":"101.34µs"} +{"level":"debug","ts":"2023-08-03T06:38:58.723Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:59","latency":"114.207µs"} +{"level":"debug","ts":"2023-08-03T06:38:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:59","latency":"112.524µs"} +{"level":"debug","ts":"2023-08-03T06:39:03.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:04","latency":"87.906µs"} +{"level":"debug","ts":"2023-08-03T06:39:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:04","latency":"106.121µs"} +{"level":"debug","ts":"2023-08-03T06:39:08.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:09","latency":"120.744µs"} +{"level":"debug","ts":"2023-08-03T06:39:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:09","latency":"124.998µs"} +{"level":"debug","ts":"2023-08-03T06:39:13.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:14","latency":"113.253µs"} +{"level":"debug","ts":"2023-08-03T06:39:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:14","latency":"115.697µs"} +{"level":"debug","ts":"2023-08-03T06:39:18.725Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:39:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:19","latency":"90.467µs"} +{"level":"debug","ts":"2023-08-03T06:39:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:19","latency":"91.825µs"} +{"level":"debug","ts":"2023-08-03T06:39:23.726Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:39:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:24","latency":"122.151µs"} +{"level":"debug","ts":"2023-08-03T06:39:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:24","latency":"86.332µs"} +{"level":"debug","ts":"2023-08-03T06:39:28.726Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:29","latency":"88.373µs"} +{"level":"debug","ts":"2023-08-03T06:39:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:29","latency":"88.467µs"} +{"level":"debug","ts":"2023-08-03T06:39:33.727Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:34.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:34","latency":"92.8µs"} +{"level":"debug","ts":"2023-08-03T06:39:34.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:34","latency":"102.163µs"} +{"level":"debug","ts":"2023-08-03T06:39:38.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:39","latency":"97.931µs"} +{"level":"debug","ts":"2023-08-03T06:39:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:39","latency":"82.995µs"} +{"level":"debug","ts":"2023-08-03T06:39:43.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:44","latency":"99.995µs"} +{"level":"debug","ts":"2023-08-03T06:39:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:44","latency":"103.23µs"} +{"level":"debug","ts":"2023-08-03T06:39:48.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:39:49.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:49","latency":"86.89µs"} +{"level":"debug","ts":"2023-08-03T06:39:49.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:49","latency":"90.487µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.729Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:54.377Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:54","latency":"65.774µs"} +{"level":"debug","ts":"2023-08-03T06:39:54.584Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:54","latency":"39.22µs"} +{"level":"debug","ts":"2023-08-03T06:39:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:54","latency":"86.004µs"} +{"level":"debug","ts":"2023-08-03T06:39:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:54","latency":"75.334µs"} +{"level":"debug","ts":"2023-08-03T06:39:57.992Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"1.925991ms"} +{"level":"debug","ts":"2023-08-03T06:39:58.204Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_b73998f1_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"4.373145ms"} +{"level":"debug","ts":"2023-08-03T06:39:58.418Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_b73998f1_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"3.137734ms"} +{"level":"debug","ts":"2023-08-03T06:39:58.729Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:59","latency":"96.263µs"} +{"level":"debug","ts":"2023-08-03T06:39:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:59","latency":"94.235µs"} +{"level":"info","ts":"2023-08-03T06:40:00.751Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:40:00.751Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} +{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"info","ts":"2023-08-03T06:40:00.751Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} +{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"info","ts":"2023-08-03T06:40:00.755Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:00.755Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","duration":609} +{"level":"info","ts":"2023-08-03T06:40:00.756Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} +{"level":"info","ts":"2023-08-03T06:40:00.756Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} +{"level":"debug","ts":"2023-08-03T06:40:00.756Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"96bb0098cb58fbb65c121e602b34cabf82e4472fb9217ea3faff08b5619e7c45\\\" \\n\\ntransmitterID = \\\"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_b73998f1_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_b73998f1_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"13.39304ms"} +{"level":"debug","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:00.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755","streamName":"ragedisco/v1","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ragedisco/v1","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1"} +{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:00.758Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2","streamName":"ragedisco/v1","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:00.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","id":"ragep2p","_id":"discoveryProtocol","numQueried":4,"numFound":1,"numLoaded":1,"peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"found":["12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"],"loaded":["12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"]} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"PeerV2","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","oracleID":2,"_id":"OCREndpointV2"} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","oracleID":2,"_id":"OCREndpointV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"info","ts":"2023-08-03T06:40:00.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"previousNe":0,"ne":1} +{"level":"info","ts":"2023-08-03T06:40:00.762Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":1,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:01.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.804Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"debug","ts":"2023-08-03T06:40:02.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.826Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.844Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.732Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:40:03.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"warn","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"warn","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:04.596Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remoteAddr":"10.14.91.55:6690","direction":"out","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:04.597Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2","streamName":"ragedisco/v1","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:40:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:04","latency":"108.856µs"} +{"level":"debug","ts":"2023-08-03T06:40:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:04","latency":"122.489µs"} +{"level":"debug","ts":"2023-08-03T06:40:04.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.918Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.903Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.003Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.005Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.907Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-03T06:40:07.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.051Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.917Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.119Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.733Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:08.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.996Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.177Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:09","latency":"108.489µs"} +{"level":"debug","ts":"2023-08-03T06:40:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:09","latency":"85.265µs"} +{"level":"debug","ts":"2023-08-03T06:40:09.819Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:40:09.819Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:40:09.819Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"out","remoteAddr":"10.14.3.137:6690","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"out","remoteAddr":"10.14.113.114:6690","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"out","remoteAddr":"10.14.63.201:6690","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-03T06:40:09.822Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"newEpoch":2,"candidateEpochs":[2,2,2]} +{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"e":1,"l":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":1} +{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:09.824Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"sender":1,"msg":{"Epoch":1,"Round":1,"Query":null}} +{"level":"debug","ts":"2023-08-03T06:40:10.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.270Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.272Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.295Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.824Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.002821249} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.002754503} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.135Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.388Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.389Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:12.465Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deltaC":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaCTimeout":true,"result":true,"alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":true,"initialRound":true,"deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":1,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":1,"sender":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":0,"Round":0}} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":3,"epoch":2,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001174403} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001172789} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.175Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.176Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044811}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.450Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","unfulfilledRequest":false,"result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"deltaC":0,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:11.000Z","deviation":true,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":1},"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1}} +{"level":"info","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:13.468Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:13.468Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.468Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"debug","ts":"2023-08-03T06:40:13.469Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec","signature":"TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy"} +{"level":"debug","ts":"2023-08-03T06:40:13.469Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec"} +{"level":"debug","ts":"2023-08-03T06:40:13.566Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec","signature":"TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy"} +{"level":"debug","ts":"2023-08-03T06:40:13.566Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec","signatures":["TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy"]} +{"level":"debug","ts":"2023-08-03T06:40:13.733Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001177344} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.00120012} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"leader":0,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.239Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.240Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:14.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3},"alphaReportInfinite":false,"deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"initialRound":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z"} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":2,"Round":1},"reportEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:14.473Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:14","latency":"111.859µs"} +{"level":"debug","ts":"2023-08-03T06:40:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:14","latency":"67.565µs"} +{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"leader":0,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"newEpoch":3,"candidateEpochs":[3,3,3]} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"leader":0,"l":0,"e":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001145887} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001148461} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:15.270Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044813}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:15.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","unfulfilledRequest":false,"deltaCTimeout":true,"result":true,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:13.000Z","alphaReportInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":1,"epoch":3,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"round":1,"sender":3,"epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"round":1,"sender":0,"epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:15.552Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.553Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.757Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001128963} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001261385} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.371Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.373Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:16.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deltaCTimeout":true,"initialRound":false,"alphaReportInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2},"deltaC":0,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":2,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":2,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":1,"oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":2,"sender":0} +{"level":"info","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"debug","ts":"2023-08-03T06:40:16.470Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:16.470Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.471Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"a6607727-e589-4428-8f4b-14fd9c55d516","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"} +{"level":"debug","ts":"2023-08-03T06:40:16.471Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy","id":"a6607727-e589-4428-8f4b-14fd9c55d516"} +{"level":"debug","ts":"2023-08-03T06:40:16.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.626Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.736Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001149682} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001173706} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:17.243Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"a6607727-e589-4428-8f4b-14fd9c55d516","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"} +{"level":"debug","ts":"2023-08-03T06:40:17.243Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"a6607727-e589-4428-8f4b-14fd9c55d516","signatures":["359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"]} +{"level":"debug","ts":"2023-08-03T06:40:17.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.390Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:17.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"deviation":true,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z","initialRound":false,"alphaReportPPB":0,"result":true,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":3,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"result":true,"reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"leader":1,"messageRound":4,"roundMax":3,"round":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"newEpoch":4,"candidateEpochs":[4,4,4]} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"e":3,"l":1} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"leader":1,"oid":2} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001137838} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001195409} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":4,"leader":1,"oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:18.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:18.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","initialRound":false,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"deviation":true} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"leader":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":4,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":4,"round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":4,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":4,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} +{"level":"debug","ts":"2023-08-03T06:40:18.734Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:18.767Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.768Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001223526} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001238393} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"leader":1,"round":2,"observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log new file mode 100644 index 000000000..f04afd359 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-03 06:33:06.222 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:06.305 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC +2023-08-03 06:33:06.309 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +2023-08-03 06:33:06.918 UTC [48] LOG: received fast shutdown request +waiting for server to shut down....2023-08-03 06:33:06.919 UTC [48] LOG: aborting any active transactions +2023-08-03 06:33:06.921 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 06:33:06.921 UTC [50] LOG: shutting down +2023-08-03 06:33:07.012 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 06:33:07.027 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 06:33:07.027 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 06:33:07.030 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:07.101 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:07 UTC +2023-08-03 06:33:07.106 UTC [1] LOG: database system is ready to accept connections +2023-08-03 06:33:07.601 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 06:33:08.623 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 06:33:08.623 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 06:33:08.624 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 06:33:08.624 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 06:33:08.624 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 06:33:08.624 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log new file mode 100644 index 000000000..130157005 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log @@ -0,0 +1,881 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} +{"level":"debug","ts":"2023-08-03T06:33:08.616Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.616Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.616Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"642b1494-1016-4f51-b8ba-f6cdb6cdaefa"} +{"level":"debug","ts":"2023-08-03T06:33:08.621Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"642b1494-1016-4f51-b8ba-f6cdb6cdaefa"} +{"level":"debug","ts":"2023-08-03T06:33:08.624Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} +2023/08/03 06:33:09 OK 0001_initial.sql +2023/08/03 06:33:09 OK 0002_gormv2.sql +2023/08/03 06:33:09 OK 0003_eth_logs_table.sql +2023/08/03 06:33:09 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 06:33:09 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 06:33:09 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 06:33:09 OK 0007_reverse_eth_logs_table.sql +2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql +2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 06:33:09 OK 0010_bridge_fk.sql +2023/08/03 06:33:09 OK 0011_latest_round_requested.sql +2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql +2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql +2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql +2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 06:33:09 OK 0018_add_node_version_table.sql +2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 06:33:09 OK 0020_remove_result_task.sql +2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql +2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql +2023/08/03 06:33:09 OK 0025_create_log_config_table.sql +2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql +2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 06:33:09 OK 0028_vrf_v2.sql +2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql +2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql +2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql +2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql +2023/08/03 06:33:09 OK 0036_external_job_id.go +2023/08/03 06:33:09 OK 0037_cascade_deletes.sql +2023/08/03 06:33:09 OK 0038_create_csa_keys.sql +2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql +2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql +2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql +2023/08/03 06:33:09 OK 0042_create_job_proposals.sql +2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go +2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 06:33:09 OK 0056_multichain.go +2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql +2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql +2023/08/03 06:33:09 OK 0061_multichain_relations.sql +2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql +2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql +2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql +2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql +2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql +2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql +2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql +2023/08/03 06:33:09 OK 0075_unique_job_names.sql +2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql +2023/08/03 06:33:09 OK 0078_only_one_version.sql +2023/08/03 06:33:09 OK 0079_vrf_v2_fields.sql +2023/08/03 06:33:09 OK 0080_drop_unused_cols.sql +2023/08/03 06:33:09 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 06:33:09 OK 0082_lease_lock.sql +2023/08/03 06:33:09 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 06:33:09 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 06:33:09 OK 0085_requested_confs_delay.sql +2023/08/03 06:33:09 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 06:33:09 OK 0087_ocr2_tables.sql +2023/08/03 06:33:09 OK 0088_vrfv2_request_timeout.sql +2023/08/03 06:33:09 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 06:33:09 OK 0090_ocr_new_timeouts.sql +2023/08/03 06:33:09 OK 0091_ocr2_relay.sql +2023/08/03 06:33:09 OK 0092_bptxm_tx_checkers.sql +2023/08/03 06:33:09 OK 0093_terra_txm.sql +2023/08/03 06:33:09 OK 0094_blockhash_store_job.sql +2023/08/03 06:33:09 OK 0095_terra_fcd.sql +2023/08/03 06:33:09 OK 0096_create_job_proposal_specs.sql +2023/08/03 06:33:09 OK 0097_bootstrap_spec.sql +2023/08/03 06:33:09 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 06:33:09 OK 0099_terra_msgs_created_at.sql +2023/08/03 06:33:09 OK 0100_bootstrap_config.sql +2023/08/03 06:33:09 OK 0101_generic_ocr2.sql +2023/08/03 06:33:09 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 06:33:09 OK 0103_terra_msgs_type_url.sql +2023/08/03 06:33:09 OK 0104_terra_cascade_delete.sql +2023/08/03 06:33:09 OK 0105_create_forwarder_addresses.sql +2023/08/03 06:33:09 OK 0106_evm_node_uniqueness.sql +2023/08/03 06:33:09 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 06:33:09 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 06:33:09 OK 0109_solana_chains_nodes.sql +2023/08/03 06:33:09 OK 0110_add_vrf_chunk_size.sql +2023/08/03 06:33:09 OK 0111_terra_msgs_state_started.sql +2023/08/03 06:33:09 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 06:33:09 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 06:33:09 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 06:33:09 OK 0115_log_poller.sql +2023/08/03 06:33:10 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 06:33:10 OK 0117_add_log_poller_idx.sql +2023/08/03 06:33:10 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 06:33:10 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 06:33:10 OK 0120_log_poller_data_idx.sql +2023/08/03 06:33:10 OK 0121_remove_log_configs.sql +2023/08/03 06:33:10 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 06:33:10 OK 0123_terra_idx_simplify.sql +2023/08/03 06:33:10 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 06:33:10 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 06:33:10 OK 0126_remove_observation_source.sql +2023/08/03 06:33:10 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 06:33:10 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 06:33:10 OK 0129_add_job_gas_limit.sql +2023/08/03 06:33:10 OK 0130_starknet_chains_nodes.sql +2023/08/03 06:33:10 OK 0131_add_multi_user.sql +2023/08/03 06:33:10 OK 0132_log_index_uniqueness.sql +2023/08/03 06:33:10 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 06:33:10 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 06:33:10 OK 0135_tx_index_not_null.sql +2023/08/03 06:33:10 OK 0136_add_job_allow_forwarding.sql +2023/08/03 06:33:10 OK 0137_remove_tx_index.sql +2023/08/03 06:33:10 OK 0138_rename_allowforwarding_field.sql +2023/08/03 06:33:10 OK 0139_multi_chain_keys.sql +2023/08/03 06:33:10 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 06:33:10 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 06:33:10 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 06:33:10 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 06:33:10 OK 0144_optimize_lp.sql +2023/08/03 06:33:10 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 06:33:10 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 06:33:10 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 06:33:10 OK 0148_dkg_shares.sql +2023/08/03 06:33:10 OK 0149_bridge_last_good_value.sql +2023/08/03 06:33:10 OK 0150_gaslaneprice_vrf.sql +2023/08/03 06:33:10 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 06:33:10 OK 0152_ocr2_multichain.sql +2023/08/03 06:33:10 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 06:33:10 OK 0154_ocr2dr_requests_table.sql +2023/08/03 06:33:10 OK 0155_remove_terra.sql +2023/08/03 06:33:10 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 06:33:10 OK 0157_add_log_poller_filters_table.sql +2023/08/03 06:33:10 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 06:33:10 OK 0159_add_name_to_job_proposals.sql +2023/08/03 06:33:10 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 06:33:10 OK 0161_update_job_proposal_status.sql +2023/08/03 06:33:10 OK 0162_logpoller_block_timestamps.sql +2023/08/03 06:33:10 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 06:33:10 OK 0164_add_cosmos.sql +2023/08/03 06:33:10 OK 0165_update_job_proposal_constraints.sql +2023/08/03 06:33:10 OK 0166_block_header_feeder_job.sql +2023/08/03 06:33:10 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 06:33:10 OK 0168_drop_node_tables.sql +2023/08/03 06:33:10 OK 0169_log_poller_pruning.sql +2023/08/03 06:33:10 OK 0170_gateway_job_spec.sql +2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql +2023/08/03 06:33:10 OK 0174_vrf_owner.sql +2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql +2023/08/03 06:33:10 OK 0176_s4_shared_table.sql +2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql +2023/08/03 06:33:10 OK 0178_drop_access_list.sql +2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql +2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql +2023/08/03 06:33:10 OK 0183_functions_new_fields.sql +2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql +2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 06:33:10 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:14.726Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID ae463bf5ddefad0c11b91b5224d8d9721934774ff089947d4084e04e65acf65b for chain type solana","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:14.726Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:17.022Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 2UBTqYdbbKE4txn9VYASu9Y3gG1HfhzC4cRfhDFZArUR","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:19.123Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID ebe9aabe8e1c01b46ab10f5b6c0fc16b446f03461762b0857e6b52766d43095e","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.417Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.612Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.612Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T06:33:21.612Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T06:33:21.613Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.613Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T06:33:21.613Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.613Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} +{"level":"warn","ts":"2023-08-03T06:33:21.613Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 38577. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":38577} +{"level":"debug","ts":"2023-08-03T06:33:21.613Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":38577,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T06:33:21.614Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1listenPort":38577,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/38577","id":"PeerV1","v1peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}"} +{"level":"info","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:33:21.615Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:21.617Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T06:33:21.617Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:21.617Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.00s","version":"2.4.0@114e039","appID":"642b1494-1016-4f51-b8ba-f6cdb6cdaefa"} +{"level":"debug","ts":"2023-08-03T06:33:21.618Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.00063332} +{"level":"info","ts":"2023-08-03T06:33:21.625Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T06:33:21.629Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.010980979} +{"level":"debug","ts":"2023-08-03T06:33:21.629Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.702Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.080Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.624966ms"} +{"level":"debug","ts":"2023-08-03T06:33:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:23","latency":"231.715µs"} +{"level":"debug","ts":"2023-08-03T06:33:26.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:27.023Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"warn","ts":"2023-08-03T06:33:27.026Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:28","latency":"109.779µs"} +{"level":"debug","ts":"2023-08-03T06:33:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:28","latency":"184.812µs"} +{"level":"debug","ts":"2023-08-03T06:33:31.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-03T06:33:31.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:33","latency":"105.127µs"} +{"level":"debug","ts":"2023-08-03T06:33:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:33","latency":"105.465µs"} +{"level":"debug","ts":"2023-08-03T06:33:36.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:38","latency":"102.504µs"} +{"level":"debug","ts":"2023-08-03T06:33:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:38","latency":"105.719µs"} +{"level":"debug","ts":"2023-08-03T06:33:41.617Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:43","latency":"124.604µs"} +{"level":"debug","ts":"2023-08-03T06:33:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:43","latency":"162.039µs"} +{"level":"debug","ts":"2023-08-03T06:33:46.617Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:48","latency":"102.603µs"} +{"level":"debug","ts":"2023-08-03T06:33:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:48","latency":"114.231µs"} +{"level":"debug","ts":"2023-08-03T06:33:51.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:53","latency":"120.547µs"} +{"level":"debug","ts":"2023-08-03T06:33:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:53","latency":"116.042µs"} +{"level":"debug","ts":"2023-08-03T06:33:56.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:58","latency":"108.769µs"} +{"level":"debug","ts":"2023-08-03T06:33:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:58","latency":"107.247µs"} +{"level":"debug","ts":"2023-08-03T06:34:01.619Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:03","latency":"122.431µs"} +{"level":"debug","ts":"2023-08-03T06:34:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:03","latency":"121.597µs"} +{"level":"debug","ts":"2023-08-03T06:34:05.246Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:34:05.247Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T06:34:05.328Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T06:34:05.329Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:05","latency":"83.413219ms"} +{"level":"debug","ts":"2023-08-03T06:34:06.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:34:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:08","latency":"98.088µs"} +{"level":"debug","ts":"2023-08-03T06:34:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:08","latency":"112.82µs"} +{"level":"debug","ts":"2023-08-03T06:34:11.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:13","latency":"85.463µs"} +{"level":"debug","ts":"2023-08-03T06:34:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:13","latency":"85.133µs"} +{"level":"debug","ts":"2023-08-03T06:34:16.621Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:34:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:18","latency":"100.454µs"} +{"level":"debug","ts":"2023-08-03T06:34:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:18","latency":"100.325µs"} +{"level":"debug","ts":"2023-08-03T06:34:18.218Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:18","latency":"7.758169ms"} +{"level":"debug","ts":"2023-08-03T06:34:21.414Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:21","latency":"2.98526687s"} +{"level":"debug","ts":"2023-08-03T06:34:21.622Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:23","latency":"98.231µs"} +{"level":"debug","ts":"2023-08-03T06:34:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:23","latency":"157.302µs"} +{"level":"debug","ts":"2023-08-03T06:34:24.125Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:24","latency":"2.501430453s"} +{"level":"debug","ts":"2023-08-03T06:34:26.623Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:28","latency":"101.078µs"} +{"level":"debug","ts":"2023-08-03T06:34:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:28","latency":"95.321µs"} +{"level":"debug","ts":"2023-08-03T06:34:31.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:34:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:33","latency":"93.58µs"} +{"level":"debug","ts":"2023-08-03T06:34:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:33","latency":"89.294µs"} +{"level":"debug","ts":"2023-08-03T06:34:36.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:38","latency":"92.326µs"} +{"level":"debug","ts":"2023-08-03T06:34:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:38","latency":"87.208µs"} +{"level":"debug","ts":"2023-08-03T06:34:41.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:43","latency":"91.689µs"} +{"level":"debug","ts":"2023-08-03T06:34:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:43","latency":"91.836µs"} +{"level":"debug","ts":"2023-08-03T06:34:46.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:48","latency":"105.141µs"} +{"level":"debug","ts":"2023-08-03T06:34:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:48","latency":"103.852µs"} +{"level":"debug","ts":"2023-08-03T06:34:51.626Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:53.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:53","latency":"89.694µs"} +{"level":"debug","ts":"2023-08-03T06:34:53.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:53","latency":"87.827µs"} +{"level":"debug","ts":"2023-08-03T06:34:56.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:58","latency":"87.893µs"} +{"level":"debug","ts":"2023-08-03T06:34:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:58","latency":"93.079µs"} +{"level":"debug","ts":"2023-08-03T06:35:01.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:03.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:03","latency":"97.29µs"} +{"level":"debug","ts":"2023-08-03T06:35:03.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:03","latency":"114.598µs"} +{"level":"debug","ts":"2023-08-03T06:35:06.628Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:35:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:08","latency":"88.538µs"} +{"level":"debug","ts":"2023-08-03T06:35:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:08","latency":"89.715µs"} +{"level":"debug","ts":"2023-08-03T06:35:11.629Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:35:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:13","latency":"94.392µs"} +{"level":"debug","ts":"2023-08-03T06:35:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:13","latency":"100.923µs"} +{"level":"debug","ts":"2023-08-03T06:35:16.630Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:18","latency":"93.517µs"} +{"level":"debug","ts":"2023-08-03T06:35:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:18","latency":"96.403µs"} +{"level":"debug","ts":"2023-08-03T06:35:21.630Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:23","latency":"82.72µs"} +{"level":"debug","ts":"2023-08-03T06:35:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:23","latency":"95.363µs"} +{"level":"debug","ts":"2023-08-03T06:35:26.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:35:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:28","latency":"86.121µs"} +{"level":"debug","ts":"2023-08-03T06:35:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:28","latency":"90.53µs"} +{"level":"debug","ts":"2023-08-03T06:35:31.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:33","latency":"96.886µs"} +{"level":"debug","ts":"2023-08-03T06:35:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:33","latency":"90.291µs"} +{"level":"debug","ts":"2023-08-03T06:35:36.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:35:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:38","latency":"102.803µs"} +{"level":"debug","ts":"2023-08-03T06:35:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:38","latency":"149.09µs"} +{"level":"debug","ts":"2023-08-03T06:35:41.632Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:43","latency":"87.098µs"} +{"level":"debug","ts":"2023-08-03T06:35:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:43","latency":"73.255µs"} +{"level":"debug","ts":"2023-08-03T06:35:46.633Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:48","latency":"93.77µs"} +{"level":"debug","ts":"2023-08-03T06:35:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:48","latency":"104.577µs"} +{"level":"debug","ts":"2023-08-03T06:35:51.633Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:53","latency":"92.918µs"} +{"level":"debug","ts":"2023-08-03T06:35:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:53","latency":"70.468µs"} +{"level":"debug","ts":"2023-08-03T06:35:56.634Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:58","latency":"90.098µs"} +{"level":"debug","ts":"2023-08-03T06:35:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:58","latency":"92.678µs"} +{"level":"debug","ts":"2023-08-03T06:36:01.635Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:03","latency":"91.672µs"} +{"level":"debug","ts":"2023-08-03T06:36:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:03","latency":"90.013µs"} +{"level":"debug","ts":"2023-08-03T06:36:06.636Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:08","latency":"102.721µs"} +{"level":"debug","ts":"2023-08-03T06:36:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:08","latency":"94.429µs"} +{"level":"debug","ts":"2023-08-03T06:36:11.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:36:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:13","latency":"90.787µs"} +{"level":"debug","ts":"2023-08-03T06:36:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:13","latency":"93.43µs"} +{"level":"debug","ts":"2023-08-03T06:36:16.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:36:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:18","latency":"90.13µs"} +{"level":"debug","ts":"2023-08-03T06:36:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:18","latency":"90.814µs"} +{"level":"debug","ts":"2023-08-03T06:36:21.638Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:23","latency":"96.784µs"} +{"level":"debug","ts":"2023-08-03T06:36:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:23","latency":"81.975µs"} +{"level":"debug","ts":"2023-08-03T06:36:26.638Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:28","latency":"98.77µs"} +{"level":"debug","ts":"2023-08-03T06:36:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:28","latency":"99.142µs"} +{"level":"debug","ts":"2023-08-03T06:36:31.639Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:36:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:33","latency":"93.23µs"} +{"level":"debug","ts":"2023-08-03T06:36:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:33","latency":"91.407µs"} +{"level":"debug","ts":"2023-08-03T06:36:36.640Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:38","latency":"92.89µs"} +{"level":"debug","ts":"2023-08-03T06:36:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:38","latency":"90.937µs"} +{"level":"debug","ts":"2023-08-03T06:36:41.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:43","latency":"102.456µs"} +{"level":"debug","ts":"2023-08-03T06:36:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:43","latency":"99.105µs"} +{"level":"debug","ts":"2023-08-03T06:36:46.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:48","latency":"101.051µs"} +{"level":"debug","ts":"2023-08-03T06:36:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:48","latency":"98.339µs"} +{"level":"debug","ts":"2023-08-03T06:36:51.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:36:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:53","latency":"117.989µs"} +{"level":"debug","ts":"2023-08-03T06:36:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:53","latency":"89.236µs"} +{"level":"debug","ts":"2023-08-03T06:36:56.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:58.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:58","latency":"84.949µs"} +{"level":"debug","ts":"2023-08-03T06:36:58.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:58","latency":"105.371µs"} +{"level":"debug","ts":"2023-08-03T06:37:01.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:03","latency":"97.383µs"} +{"level":"debug","ts":"2023-08-03T06:37:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:03","latency":"95.493µs"} +{"level":"debug","ts":"2023-08-03T06:37:06.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:08","latency":"97.302µs"} +{"level":"debug","ts":"2023-08-03T06:37:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:08","latency":"97.482µs"} +{"level":"debug","ts":"2023-08-03T06:37:11.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:13","latency":"98.527µs"} +{"level":"debug","ts":"2023-08-03T06:37:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:13","latency":"102.107µs"} +{"level":"debug","ts":"2023-08-03T06:37:16.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:37:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:18","latency":"85.746µs"} +{"level":"debug","ts":"2023-08-03T06:37:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:18","latency":"122.321µs"} +{"level":"debug","ts":"2023-08-03T06:37:21.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:23","latency":"89.863µs"} +{"level":"debug","ts":"2023-08-03T06:37:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:23","latency":"84.849µs"} +{"level":"debug","ts":"2023-08-03T06:37:26.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:37:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:28","latency":"99.375µs"} +{"level":"debug","ts":"2023-08-03T06:37:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:28","latency":"99.143µs"} +{"level":"debug","ts":"2023-08-03T06:37:31.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:33","latency":"98.63µs"} +{"level":"debug","ts":"2023-08-03T06:37:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:33","latency":"83.506µs"} +{"level":"debug","ts":"2023-08-03T06:37:36.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:38","latency":"97.659µs"} +{"level":"debug","ts":"2023-08-03T06:37:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:38","latency":"92.741µs"} +{"level":"debug","ts":"2023-08-03T06:37:41.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:43","latency":"99.951µs"} +{"level":"debug","ts":"2023-08-03T06:37:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:43","latency":"103.692µs"} +{"level":"debug","ts":"2023-08-03T06:37:46.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:48","latency":"89.684µs"} +{"level":"debug","ts":"2023-08-03T06:37:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:48","latency":"92.561µs"} +{"level":"debug","ts":"2023-08-03T06:37:51.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:53","latency":"95.598µs"} +{"level":"debug","ts":"2023-08-03T06:37:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:53","latency":"95.743µs"} +{"level":"debug","ts":"2023-08-03T06:37:56.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:58","latency":"92.929µs"} +{"level":"debug","ts":"2023-08-03T06:37:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:58","latency":"84.482µs"} +{"level":"debug","ts":"2023-08-03T06:38:01.651Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:03","latency":"94.777µs"} +{"level":"debug","ts":"2023-08-03T06:38:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:03","latency":"98.992µs"} +{"level":"debug","ts":"2023-08-03T06:38:06.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:38:08.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:08","latency":"87.253µs"} +{"level":"debug","ts":"2023-08-03T06:38:08.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:08","latency":"90.42µs"} +{"level":"debug","ts":"2023-08-03T06:38:11.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:38:13.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:13","latency":"97.957µs"} +{"level":"debug","ts":"2023-08-03T06:38:13.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:13","latency":"105.342µs"} +{"level":"debug","ts":"2023-08-03T06:38:16.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:18.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:18","latency":"102.471µs"} +{"level":"debug","ts":"2023-08-03T06:38:18.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:18","latency":"116.193µs"} +{"level":"debug","ts":"2023-08-03T06:38:21.653Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:23","latency":"100.203µs"} +{"level":"debug","ts":"2023-08-03T06:38:23.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:23","latency":"191.251µs"} +{"level":"debug","ts":"2023-08-03T06:38:26.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:28","latency":"76.784µs"} +{"level":"debug","ts":"2023-08-03T06:38:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:28","latency":"95.397µs"} +{"level":"info","ts":"2023-08-03T06:38:31.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","id":"ragep2p","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-03T06:38:31.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:33","latency":"97.343µs"} +{"level":"debug","ts":"2023-08-03T06:38:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:33","latency":"82.621µs"} +{"level":"debug","ts":"2023-08-03T06:38:36.655Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:38.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:38","latency":"91.533µs"} +{"level":"debug","ts":"2023-08-03T06:38:38.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:38","latency":"93.916µs"} +{"level":"debug","ts":"2023-08-03T06:38:41.656Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:43","latency":"92.67µs"} +{"level":"debug","ts":"2023-08-03T06:38:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:43","latency":"93.541µs"} +{"level":"debug","ts":"2023-08-03T06:38:46.656Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:38:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:48","latency":"92.333µs"} +{"level":"debug","ts":"2023-08-03T06:38:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:48","latency":"100.694µs"} +{"level":"debug","ts":"2023-08-03T06:38:51.657Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:53","latency":"93.604µs"} +{"level":"debug","ts":"2023-08-03T06:38:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:53","latency":"101.067µs"} +{"level":"debug","ts":"2023-08-03T06:38:56.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:58","latency":"82.1µs"} +{"level":"debug","ts":"2023-08-03T06:38:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:58","latency":"109.516µs"} +{"level":"debug","ts":"2023-08-03T06:39:01.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:03","latency":"72.618µs"} +{"level":"debug","ts":"2023-08-03T06:39:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:03","latency":"90.617µs"} +{"level":"debug","ts":"2023-08-03T06:39:06.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:08","latency":"93.893µs"} +{"level":"debug","ts":"2023-08-03T06:39:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:08","latency":"104.69µs"} +{"level":"debug","ts":"2023-08-03T06:39:11.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:39:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:13","latency":"93.478µs"} +{"level":"debug","ts":"2023-08-03T06:39:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:13","latency":"90.872µs"} +{"level":"debug","ts":"2023-08-03T06:39:16.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:18","latency":"92.791µs"} +{"level":"debug","ts":"2023-08-03T06:39:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:18","latency":"100.318µs"} +{"level":"debug","ts":"2023-08-03T06:39:21.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:23","latency":"105.362µs"} +{"level":"debug","ts":"2023-08-03T06:39:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:23","latency":"109.155µs"} +{"level":"debug","ts":"2023-08-03T06:39:26.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:28","latency":"100.737µs"} +{"level":"debug","ts":"2023-08-03T06:39:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:28","latency":"79.84µs"} +{"level":"debug","ts":"2023-08-03T06:39:31.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:33","latency":"98.709µs"} +{"level":"debug","ts":"2023-08-03T06:39:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:33","latency":"93.537µs"} +{"level":"debug","ts":"2023-08-03T06:39:36.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:38","latency":"93.1µs"} +{"level":"debug","ts":"2023-08-03T06:39:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:38","latency":"101.635µs"} +{"level":"debug","ts":"2023-08-03T06:39:41.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:43","latency":"95.767µs"} +{"level":"debug","ts":"2023-08-03T06:39:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:43","latency":"92.003µs"} +{"level":"debug","ts":"2023-08-03T06:39:46.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:48","latency":"95.12µs"} +{"level":"debug","ts":"2023-08-03T06:39:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:48","latency":"83.635µs"} +{"level":"debug","ts":"2023-08-03T06:39:51.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:53","latency":"100.063µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:53","latency":"94.883µs"} +{"level":"debug","ts":"2023-08-03T06:39:55.216Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:55","latency":"68.478µs"} +{"level":"debug","ts":"2023-08-03T06:39:55.426Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:55","latency":"52.364µs"} +{"level":"debug","ts":"2023-08-03T06:39:56.665Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:58","latency":"81.461µs"} +{"level":"debug","ts":"2023-08-03T06:39:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:58","latency":"93.596µs"} +{"level":"debug","ts":"2023-08-03T06:39:58.632Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"1.612542ms"} +{"level":"debug","ts":"2023-08-03T06:39:58.846Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_ebe9aabe_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"3.295588ms"} +{"level":"debug","ts":"2023-08-03T06:39:59.058Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_ebe9aabe_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"2.584063ms"} +{"level":"info","ts":"2023-08-03T06:40:00.974Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:40:00.974Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} +{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"info","ts":"2023-08-03T06:40:00.974Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} +{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.975Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.976Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.976Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.977Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","duration":637} +{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} +{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} +{"level":"debug","ts":"2023-08-03T06:40:00.979Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"61cdf10de5debd886da786bca2f2e8fde5f0a1493cf3c2f3b210cf3c05d6b4b3\\\" \\n\\ntransmitterID = \\\"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_ebe9aabe_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_ebe9aabe_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"12.397751ms"} +{"level":"debug","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} +{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:00.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}]} +{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755"} +{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","streamName":"ragedisco/v1","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8"} +{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","_id":"discoveryProtocol","numQueried":4,"loaded":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"],"numLoaded":1,"queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","found":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"],"numFound":1} +{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":0} +{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6"} +{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":0,"_id":"OCREndpointV2","id":"PeerV2"} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"previousNe":0,"ne":1} +{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:01.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:01.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.983Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.997Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.985Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:03.021Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.051Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:03","latency":"94.022µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:03","latency":"93.351µs"} +{"level":"debug","ts":"2023-08-03T06:40:04.094Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.140Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.164Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.228Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.229Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.212Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.213Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.277Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"warn","ts":"2023-08-03T06:40:06.620Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:40:06.620Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:40:06.620Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:06.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"out","remoteAddr":"10.14.91.55:6690","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:06.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-03T06:40:06.667Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:07.271Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.347Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:08","latency":"98.18µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:08","latency":"118.34µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.289Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.446Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.352Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.353Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.486Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"in","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remoteAddr":"10.14.21.114:55586"} +{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:40:10.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.396Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.459Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.528Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:11.956Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:40:11.956Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","direction":"out","remoteAddr":"10.14.113.114:6690","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.63.201:6690","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","direction":"out"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3","streamName":"ragedisco/v1","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"candidateEpochs":[2,2,3],"newEpoch":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":1,"l":1} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"sender":1,"msg":{"Epoch":1,"Round":1,"Query":null}} +{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.002800565} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.00286169} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","msgEpoch":2,"msgRound":1,"round":1,"sender":3,"oid":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","observationCount":1,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgEpoch":2,"msgRound":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":0,"msgEpoch":2,"msgRound":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgEpoch":2,"msgRound":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"info","ts":"2023-08-03T06:40:12.465Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":true,"initialRound":true,"deviation":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"alphaReportInfinite":false,"result":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1} +{"level":"debug","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":0,"epoch":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","contractEpochRound":{"Epoch":0,"Round":0},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"deviates":true,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"round":1,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:12.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:12.468Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:12.468Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:12.468Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"debug","ts":"2023-08-03T06:40:12.469Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c","signature":"3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE"} +{"level":"debug","ts":"2023-08-03T06:40:12.469Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c"} +{"level":"debug","ts":"2023-08-03T06:40:12.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.553Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.574Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.575Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.743Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c","signature":"3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE"} +{"level":"debug","ts":"2023-08-03T06:40:12.743Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c","signatures":["3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE"]} +{"level":"debug","ts":"2023-08-03T06:40:12.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:12.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001252161} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001320708} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"sender":0,"msgEpoch":2,"msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgEpoch":2,"msgRound":2,"round":2,"oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":3} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","observationCount":2,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2,"sender":2,"msgEpoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2,"observationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":2,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"msgEpoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:13","latency":"83.198µs"} +{"level":"debug","ts":"2023-08-03T06:40:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:13","latency":"90.96µs"} +{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":true,"alphaReportInfinite":false,"unfulfilledRequest":true,"result":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z"} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"round":2,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","contractEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"reportingPlugin":"NumericalMedian","result":true} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"sender":3,"epoch":2,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:13.607Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.674Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:13.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001242904} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001569317} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":3,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":3,"sender":2,"msgEpoch":2,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"round":3,"observationCount":1,"requiredObservationCount":3,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3,"sender":0,"msgEpoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":3,"oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"sender":3,"msgEpoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":1,"msgEpoch":2,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} +{"level":"info","ts":"2023-08-03T06:40:14.464Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"alphaReportPPB":0,"alphaReportInfinite":false,"result":true,"deltaC":0,"initialRound":false,"deviation":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"contractEpochRound":{"Epoch":2,"Round":2},"reportEpochRound":{"Epoch":2,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":3,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":3,"sender":2,"oid":0} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:14.682Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.760Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":4,"messageRound":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"newEpoch":3,"candidateEpochs":[3,3,3]} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"e":2,"l":0} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001167527} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001136849} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"info","ts":"2023-08-03T06:40:15.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","result":true,"alphaReportPPB":0,"deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"unfulfilledRequest":false,"deltaC":0} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"leader":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":2,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":2,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.766Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.767Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001272839} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001257654} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:15.981Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} +{"level":"info","ts":"2023-08-03T06:40:16.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","reportingPlugin":"NumericalMedian","deltaC":0,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviation":true,"deltaCTimeout":true,"alphaReportPPB":0,"initialRound":false,"unfulfilledRequest":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":3,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":3,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":2,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:16.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.00115568} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001216919} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"info","ts":"2023-08-03T06:40:17.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z","alphaReportInfinite":false,"initialRound":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"deltaC":0,"result":true,"unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":1,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":3,"Round":3},"contractEpochRound":{"Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"deviates":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"sender":3,"oid":0} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:17.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"leader":1,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"newEpoch":4,"candidateEpochs":[4,4,4]} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"e":3,"l":1} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001153987} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001302013} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":4,"leader":1,"observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:18","latency":"90.818µs"} +{"level":"debug","ts":"2023-08-03T06:40:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:18","latency":"92.138µs"} +{"level":"info","ts":"2023-08-03T06:40:18.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"alphaReportPPB":0,"deltaC":0,"unfulfilledRequest":false,"initialRound":false,"result":true,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z"} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":4,"round":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"sender":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","result":true,"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:18.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.921Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044817}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001234302} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001243104} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:18.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:19.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":2},"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:17.000Z","deviation":true,"result":true,"initialRound":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":4,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":4,"Round":2,"H":[227,57,141,191,243,159,108,42,91,240,130,82,173,222,213,122,27,228,168,157,52,71,161,87,8,106,134,129,242,145,113,65],"AttestedReport":{"Report":"ZMtL0gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"kcGwJXWpR5Mz62YXjS3uTL5R0RpyrG3Kie73vzL0UsAL+RJqAkF2+VVCp+ioeQm0W3klhOq2wy3pIQaMcNSAGwE=","Signer":1},{"Signature":"X83nLJ9mOnIhxpODNMp8SVQt2xuHC6mERVsxuGnraeVtWtlGiUfeqGNYw13NLpKjZIDTlzoobF5iBe0xbjGSVAA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":1,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":2,"sender":3} +{"level":"info","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":4,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:19.472Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.472Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"02bf3352-2861-4307-ba72-99c84474f096","signature":"4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu"} +{"level":"debug","ts":"2023-08-03T06:40:19.472Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu","id":"02bf3352-2861-4307-ba72-99c84474f096"} +{"level":"debug","ts":"2023-08-03T06:40:19.658Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"02bf3352-2861-4307-ba72-99c84474f096","signature":"4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu"} +{"level":"debug","ts":"2023-08-03T06:40:19.658Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"02bf3352-2861-4307-ba72-99c84474f096","signatures":["4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu"]} +{"level":"debug","ts":"2023-08-03T06:40:19.943Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044818}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001175074} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001234897} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"round":3,"observation":"CNOXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:20.002Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.003Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:20.470Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","lastTransmissionTimestamp":"2023-08-03T06:40:18.000Z","result":true,"deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":false,"alphaReportPPB":0,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":3},"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":4,"round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":4,"Round":3,"H":[181,36,61,27,174,108,246,113,97,41,205,33,84,28,183,101,35,106,8,1,125,130,59,188,121,223,60,71,111,23,153,24],"AttestedReport":{"Report":"ZMtL0wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"oR2KORlVQ0wBVdEB+7t4EOfHRkfHeS4lhKdYobI85TtgFxlp/gseoIp6T5DkymCZc9WfEnZUDNNlkPwN1vNvqwA=","Signer":1},{"Signature":"fyHaVozEk0cFxbTE93pMb6UIaS3U1B2tcJ3eTP14jhw/XEpCHIY33MMgNbad5njRlfvuJ39BiZW2yB+U+nNTuQA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":3,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":2,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"e":4,"l":1} +{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001181267} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001228578} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":5,"round":1,"observation":"CNSXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:20.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044819}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.020Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.021Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:21.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:19.000Z","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":1},"initialRound":false,"alphaReportPPB":0,"alphaReportInfinite":false,"deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deltaC":0,"unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"event":{"Epoch":5,"Round":1,"H":[243,61,202,42,224,181,183,218,241,208,244,117,159,59,51,174,3,98,247,140,142,168,220,234,218,40,96,148,2,253,44,62],"AttestedReport":{"Report":"ZMtL1AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"30Yu94e8+c++7s+1YsWJScUoofdaBDTVTowQitmiHqtp5MyTgYg6J6TrPiHOgZynpm4d4qfis/oIwz1YmZreCgA=","Signer":1},{"Signature":"YXb+BzoK0JnxcYDU6xA3aK2nPBFDNg6U1GnrRNBiQOZhiOA4vVCvZfcw96LcimOFcOP8MQSpeSPoB6pml7nKQQE=","Signer":3}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0,"result":true,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:21.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.00113684} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001158969} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2,"observation":"CNWXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:22.014Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.016Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044820}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"deltaC":0,"deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","lastTransmissionTimestamp":"2023-08-03T06:40:20.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":2},"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"round":2,"sender":3,"epoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":5,"Round":2,"H":[9,24,59,213,110,59,8,68,170,72,213,193,39,135,1,138,175,186,31,36,28,209,54,71,6,22,178,46,143,74,83,0],"AttestedReport":{"Report":"ZMtL1QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZsWULiQqkHjwQ3dXgncTf1PEh8Ot54ynIUzLeVM+7d9Kj2/bmoBUrga8cCP43umZzPNkCxmFCTZasTH73ANwNgE=","Signer":1},{"Signature":"3WIB/MoU8M9fTdnAPrs/A9AupqaHeexO7B/T3bweu2oTIzPlQPSSVu6QkLxvdXWjKQOgTUtyNlwgoemez7S9bQA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":1,"epoch":5,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log new file mode 100644 index 000000000..42b47fa0d --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. + pg_ctl -D /var/lib/postgresql/data -l logfile start + +waiting for server to start....2023-08-03 06:33:06.180 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:06.225 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC +2023-08-03 06:33:06.252 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-03 06:33:06.892 UTC [48] LOG: received fast shutdown request +.2023-08-03 06:33:06.898 UTC [48] LOG: aborting any active transactions +2023-08-03 06:33:06.970 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 06:33:06.970 UTC [50] LOG: shutting down +2023-08-03 06:33:06.991 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 06:33:07.071 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 06:33:07.071 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 06:33:07.074 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:07.091 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:06 UTC +2023-08-03 06:33:07.095 UTC [1] LOG: database system is ready to accept connections +2023-08-03 06:33:07.772 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 06:33:08.887 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 06:33:08.887 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 06:33:08.887 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 06:33:08.887 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 06:33:08.888 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 06:33:08.888 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log new file mode 100644 index 000000000..bb5ac3e3b --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log @@ -0,0 +1,995 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} +{"level":"debug","ts":"2023-08-03T06:33:08.878Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.878Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.878Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"33735da0-9c0d-469b-b091-89a13b3bb9ec"} +{"level":"debug","ts":"2023-08-03T06:33:08.885Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"33735da0-9c0d-469b-b091-89a13b3bb9ec"} +{"level":"debug","ts":"2023-08-03T06:33:08.887Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} +2023/08/03 06:33:09 OK 0001_initial.sql +2023/08/03 06:33:09 OK 0002_gormv2.sql +2023/08/03 06:33:09 OK 0003_eth_logs_table.sql +2023/08/03 06:33:09 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 06:33:09 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 06:33:09 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 06:33:09 OK 0007_reverse_eth_logs_table.sql +2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql +2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 06:33:09 OK 0010_bridge_fk.sql +2023/08/03 06:33:09 OK 0011_latest_round_requested.sql +2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql +2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql +2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql +2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 06:33:09 OK 0018_add_node_version_table.sql +2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 06:33:09 OK 0020_remove_result_task.sql +2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql +2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql +2023/08/03 06:33:09 OK 0025_create_log_config_table.sql +2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql +2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 06:33:09 OK 0028_vrf_v2.sql +2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql +2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql +2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql +2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql +2023/08/03 06:33:09 OK 0036_external_job_id.go +2023/08/03 06:33:09 OK 0037_cascade_deletes.sql +2023/08/03 06:33:09 OK 0038_create_csa_keys.sql +2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql +2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql +2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql +2023/08/03 06:33:09 OK 0042_create_job_proposals.sql +2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go +2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 06:33:09 OK 0056_multichain.go +2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql +2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql +2023/08/03 06:33:09 OK 0061_multichain_relations.sql +2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql +2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql +2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql +2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql +2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql +2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql +2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql +2023/08/03 06:33:09 OK 0075_unique_job_names.sql +2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql +2023/08/03 06:33:10 OK 0078_only_one_version.sql +2023/08/03 06:33:10 OK 0079_vrf_v2_fields.sql +2023/08/03 06:33:10 OK 0080_drop_unused_cols.sql +2023/08/03 06:33:10 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 06:33:10 OK 0082_lease_lock.sql +2023/08/03 06:33:10 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 06:33:10 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 06:33:10 OK 0085_requested_confs_delay.sql +2023/08/03 06:33:10 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 06:33:10 OK 0087_ocr2_tables.sql +2023/08/03 06:33:10 OK 0088_vrfv2_request_timeout.sql +2023/08/03 06:33:10 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 06:33:10 OK 0090_ocr_new_timeouts.sql +2023/08/03 06:33:10 OK 0091_ocr2_relay.sql +2023/08/03 06:33:10 OK 0092_bptxm_tx_checkers.sql +2023/08/03 06:33:10 OK 0093_terra_txm.sql +2023/08/03 06:33:10 OK 0094_blockhash_store_job.sql +2023/08/03 06:33:10 OK 0095_terra_fcd.sql +2023/08/03 06:33:10 OK 0096_create_job_proposal_specs.sql +2023/08/03 06:33:10 OK 0097_bootstrap_spec.sql +2023/08/03 06:33:10 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 06:33:10 OK 0099_terra_msgs_created_at.sql +2023/08/03 06:33:10 OK 0100_bootstrap_config.sql +2023/08/03 06:33:10 OK 0101_generic_ocr2.sql +2023/08/03 06:33:10 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 06:33:10 OK 0103_terra_msgs_type_url.sql +2023/08/03 06:33:10 OK 0104_terra_cascade_delete.sql +2023/08/03 06:33:10 OK 0105_create_forwarder_addresses.sql +2023/08/03 06:33:10 OK 0106_evm_node_uniqueness.sql +2023/08/03 06:33:10 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 06:33:10 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 06:33:10 OK 0109_solana_chains_nodes.sql +2023/08/03 06:33:10 OK 0110_add_vrf_chunk_size.sql +2023/08/03 06:33:10 OK 0111_terra_msgs_state_started.sql +2023/08/03 06:33:10 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 06:33:10 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 06:33:10 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 06:33:10 OK 0115_log_poller.sql +2023/08/03 06:33:10 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 06:33:10 OK 0117_add_log_poller_idx.sql +2023/08/03 06:33:10 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 06:33:10 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 06:33:10 OK 0120_log_poller_data_idx.sql +2023/08/03 06:33:10 OK 0121_remove_log_configs.sql +2023/08/03 06:33:10 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 06:33:10 OK 0123_terra_idx_simplify.sql +2023/08/03 06:33:10 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 06:33:10 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 06:33:10 OK 0126_remove_observation_source.sql +2023/08/03 06:33:10 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 06:33:10 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 06:33:10 OK 0129_add_job_gas_limit.sql +2023/08/03 06:33:10 OK 0130_starknet_chains_nodes.sql +2023/08/03 06:33:10 OK 0131_add_multi_user.sql +2023/08/03 06:33:10 OK 0132_log_index_uniqueness.sql +2023/08/03 06:33:10 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 06:33:10 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 06:33:10 OK 0135_tx_index_not_null.sql +2023/08/03 06:33:10 OK 0136_add_job_allow_forwarding.sql +2023/08/03 06:33:10 OK 0137_remove_tx_index.sql +2023/08/03 06:33:10 OK 0138_rename_allowforwarding_field.sql +2023/08/03 06:33:10 OK 0139_multi_chain_keys.sql +2023/08/03 06:33:10 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 06:33:10 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 06:33:10 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 06:33:10 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 06:33:10 OK 0144_optimize_lp.sql +2023/08/03 06:33:10 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 06:33:10 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 06:33:10 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 06:33:10 OK 0148_dkg_shares.sql +2023/08/03 06:33:10 OK 0149_bridge_last_good_value.sql +2023/08/03 06:33:10 OK 0150_gaslaneprice_vrf.sql +2023/08/03 06:33:10 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 06:33:10 OK 0152_ocr2_multichain.sql +2023/08/03 06:33:10 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 06:33:10 OK 0154_ocr2dr_requests_table.sql +2023/08/03 06:33:10 OK 0155_remove_terra.sql +2023/08/03 06:33:10 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 06:33:10 OK 0157_add_log_poller_filters_table.sql +2023/08/03 06:33:10 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 06:33:10 OK 0159_add_name_to_job_proposals.sql +2023/08/03 06:33:10 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 06:33:10 OK 0161_update_job_proposal_status.sql +2023/08/03 06:33:10 OK 0162_logpoller_block_timestamps.sql +2023/08/03 06:33:10 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 06:33:10 OK 0164_add_cosmos.sql +2023/08/03 06:33:10 OK 0165_update_job_proposal_constraints.sql +2023/08/03 06:33:10 OK 0166_block_header_feeder_job.sql +2023/08/03 06:33:10 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 06:33:10 OK 0168_drop_node_tables.sql +2023/08/03 06:33:10 OK 0169_log_poller_pruning.sql +2023/08/03 06:33:10 OK 0170_gateway_job_spec.sql +2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql +2023/08/03 06:33:10 OK 0174_vrf_owner.sql +2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql +2023/08/03 06:33:10 OK 0176_s4_shared_table.sql +2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql +2023/08/03 06:33:10 OK 0178_drop_access_list.sql +2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql +2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql +2023/08/03 06:33:10 OK 0183_functions_new_fields.sql +2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql +2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 06:33:10 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.691Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:15.272Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 55a65a3fd70ee86efbb3b6bd0a2bb67784fa6382456be5e81c2dd11016f43acb for chain type solana","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:15.272Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:17.503Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID BfmfSegb34nfpuuV4iuXn6P1Sp1qJhroruFZYtHnzDMg","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:19.604Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 94476f7fc17579425d990e1506662df9f5a1ed202cb8ec15f21220cd4c54bf91","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:21.974Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T06:33:22.106Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T06:33:22.106Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.107Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:22.170Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} +{"level":"warn","ts":"2023-08-03T06:33:22.170Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 46481. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":46481} +{"level":"debug","ts":"2023-08-03T06:33:22.170Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":46481,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"info","ts":"2023-08-03T06:33:22.171Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1listenPort":46481,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/46481","v1peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"PeerV1"} +{"level":"info","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"PeerV2"} +{"level":"debug","ts":"2023-08-03T06:33:22.172Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","in":"saveLoop","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:33:22.174Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T06:33:22.174Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:22.174Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.38s","version":"2.4.0@114e039","appID":"33735da0-9c0d-469b-b091-89a13b3bb9ec"} +{"level":"debug","ts":"2023-08-03T06:33:22.175Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000764874} +{"level":"info","ts":"2023-08-03T06:33:22.182Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T06:33:22.186Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.011038902} +{"level":"debug","ts":"2023-08-03T06:33:22.186Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.108Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.924143ms"} +{"level":"debug","ts":"2023-08-03T06:33:23.109Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:23","latency":"231.109µs"} +{"level":"debug","ts":"2023-08-03T06:33:27.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:33:27.501Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"warn","ts":"2023-08-03T06:33:27.504Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:28","latency":"97.045µs"} +{"level":"debug","ts":"2023-08-03T06:33:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:28","latency":"156.894µs"} +{"level":"debug","ts":"2023-08-03T06:33:32.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-03T06:33:32.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:33","latency":"110.292µs"} +{"level":"debug","ts":"2023-08-03T06:33:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:33","latency":"86.363µs"} +{"level":"debug","ts":"2023-08-03T06:33:37.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:33:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:38","latency":"113.988µs"} +{"level":"debug","ts":"2023-08-03T06:33:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:38","latency":"138.097µs"} +{"level":"debug","ts":"2023-08-03T06:33:42.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:43","latency":"91.905µs"} +{"level":"debug","ts":"2023-08-03T06:33:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:43","latency":"95.138µs"} +{"level":"debug","ts":"2023-08-03T06:33:47.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:48","latency":"101.107µs"} +{"level":"debug","ts":"2023-08-03T06:33:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:48","latency":"115.235µs"} +{"level":"debug","ts":"2023-08-03T06:33:52.174Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:33:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:53","latency":"95.117µs"} +{"level":"debug","ts":"2023-08-03T06:33:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:53","latency":"137.179µs"} +{"level":"debug","ts":"2023-08-03T06:33:57.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:58","latency":"99.31µs"} +{"level":"debug","ts":"2023-08-03T06:33:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:58","latency":"96.233µs"} +{"level":"debug","ts":"2023-08-03T06:34:02.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:03","latency":"107.592µs"} +{"level":"debug","ts":"2023-08-03T06:34:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:03","latency":"86.316µs"} +{"level":"debug","ts":"2023-08-03T06:34:05.956Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:34:05.957Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T06:34:06.083Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T06:34:06.085Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:06","latency":"128.831577ms"} +{"level":"debug","ts":"2023-08-03T06:34:07.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:08","latency":"118.167µs"} +{"level":"debug","ts":"2023-08-03T06:34:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:08","latency":"114.526µs"} +{"level":"debug","ts":"2023-08-03T06:34:12.176Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:13","latency":"99.392µs"} +{"level":"debug","ts":"2023-08-03T06:34:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:13","latency":"147.755µs"} +{"level":"debug","ts":"2023-08-03T06:34:17.177Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:18","latency":"98.423µs"} +{"level":"debug","ts":"2023-08-03T06:34:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:18","latency":"117.927µs"} +{"level":"debug","ts":"2023-08-03T06:34:22.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:34:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:23","latency":"110.491µs"} +{"level":"debug","ts":"2023-08-03T06:34:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:23","latency":"108.624µs"} +{"level":"debug","ts":"2023-08-03T06:34:24.335Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:24","latency":"2.604522ms"} +{"level":"debug","ts":"2023-08-03T06:34:26.673Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:26","latency":"2.108062388s"} +{"level":"debug","ts":"2023-08-03T06:34:27.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:28","latency":"109.687µs"} +{"level":"debug","ts":"2023-08-03T06:34:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:28","latency":"114.265µs"} +{"level":"debug","ts":"2023-08-03T06:34:29.700Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:29","latency":"2.81992418s"} +{"level":"debug","ts":"2023-08-03T06:34:32.179Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:33","latency":"93.721µs"} +{"level":"debug","ts":"2023-08-03T06:34:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:33","latency":"99.647µs"} +{"level":"debug","ts":"2023-08-03T06:34:37.179Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:38","latency":"104.402µs"} +{"level":"debug","ts":"2023-08-03T06:34:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:38","latency":"102.706µs"} +{"level":"debug","ts":"2023-08-03T06:34:42.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:43","latency":"93.649µs"} +{"level":"debug","ts":"2023-08-03T06:34:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:43","latency":"93.368µs"} +{"level":"debug","ts":"2023-08-03T06:34:47.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:48","latency":"93.582µs"} +{"level":"debug","ts":"2023-08-03T06:34:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:48","latency":"73.194µs"} +{"level":"debug","ts":"2023-08-03T06:34:52.181Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:34:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:53","latency":"106.37µs"} +{"level":"debug","ts":"2023-08-03T06:34:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:53","latency":"108.935µs"} +{"level":"debug","ts":"2023-08-03T06:34:57.182Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:34:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:58","latency":"105.145µs"} +{"level":"debug","ts":"2023-08-03T06:34:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:58","latency":"108.764µs"} +{"level":"debug","ts":"2023-08-03T06:35:02.183Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:03","latency":"96.331µs"} +{"level":"debug","ts":"2023-08-03T06:35:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:03","latency":"106.306µs"} +{"level":"debug","ts":"2023-08-03T06:35:07.184Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:08","latency":"101.143µs"} +{"level":"debug","ts":"2023-08-03T06:35:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:08","latency":"106.295µs"} +{"level":"debug","ts":"2023-08-03T06:35:12.185Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:13","latency":"92.927µs"} +{"level":"debug","ts":"2023-08-03T06:35:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:13","latency":"85.921µs"} +{"level":"debug","ts":"2023-08-03T06:35:17.186Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:18","latency":"96.394µs"} +{"level":"debug","ts":"2023-08-03T06:35:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:18","latency":"94.603µs"} +{"level":"debug","ts":"2023-08-03T06:35:22.187Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:23","latency":"107.957µs"} +{"level":"debug","ts":"2023-08-03T06:35:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:23","latency":"111.731µs"} +{"level":"debug","ts":"2023-08-03T06:35:27.187Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:28","latency":"94.091µs"} +{"level":"debug","ts":"2023-08-03T06:35:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:28","latency":"93.681µs"} +{"level":"debug","ts":"2023-08-03T06:35:32.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:33","latency":"98.87µs"} +{"level":"debug","ts":"2023-08-03T06:35:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:33","latency":"105.458µs"} +{"level":"debug","ts":"2023-08-03T06:35:37.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:38","latency":"97.407µs"} +{"level":"debug","ts":"2023-08-03T06:35:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:38","latency":"100.696µs"} +{"level":"debug","ts":"2023-08-03T06:35:42.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:43","latency":"102.629µs"} +{"level":"debug","ts":"2023-08-03T06:35:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:43","latency":"113.867µs"} +{"level":"debug","ts":"2023-08-03T06:35:47.189Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:48","latency":"94.043µs"} +{"level":"debug","ts":"2023-08-03T06:35:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:48","latency":"93.817µs"} +{"level":"debug","ts":"2023-08-03T06:35:52.190Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:53","latency":"102.498µs"} +{"level":"debug","ts":"2023-08-03T06:35:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:53","latency":"102.559µs"} +{"level":"debug","ts":"2023-08-03T06:35:57.191Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:58","latency":"106.932µs"} +{"level":"debug","ts":"2023-08-03T06:35:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:58","latency":"106.813µs"} +{"level":"debug","ts":"2023-08-03T06:36:02.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:03","latency":"92.461µs"} +{"level":"debug","ts":"2023-08-03T06:36:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:03","latency":"91.834µs"} +{"level":"debug","ts":"2023-08-03T06:36:07.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:08","latency":"99.639µs"} +{"level":"debug","ts":"2023-08-03T06:36:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:08","latency":"83.685µs"} +{"level":"debug","ts":"2023-08-03T06:36:12.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:13","latency":"97.33µs"} +{"level":"debug","ts":"2023-08-03T06:36:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:13","latency":"103.539µs"} +{"level":"debug","ts":"2023-08-03T06:36:17.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:18","latency":"95.459µs"} +{"level":"debug","ts":"2023-08-03T06:36:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:18","latency":"94.267µs"} +{"level":"debug","ts":"2023-08-03T06:36:22.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:23","latency":"88.733µs"} +{"level":"debug","ts":"2023-08-03T06:36:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:23","latency":"125.087µs"} +{"level":"debug","ts":"2023-08-03T06:36:27.194Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:28","latency":"97.394µs"} +{"level":"debug","ts":"2023-08-03T06:36:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:28","latency":"159.643µs"} +{"level":"debug","ts":"2023-08-03T06:36:32.195Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:33","latency":"118.201µs"} +{"level":"debug","ts":"2023-08-03T06:36:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:33","latency":"118.182µs"} +{"level":"debug","ts":"2023-08-03T06:36:37.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:38","latency":"126.513µs"} +{"level":"debug","ts":"2023-08-03T06:36:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:38","latency":"122.833µs"} +{"level":"debug","ts":"2023-08-03T06:36:42.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:43","latency":"98.9µs"} +{"level":"debug","ts":"2023-08-03T06:36:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:43","latency":"92.118µs"} +{"level":"debug","ts":"2023-08-03T06:36:47.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:48","latency":"99.305µs"} +{"level":"debug","ts":"2023-08-03T06:36:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:48","latency":"96.892µs"} +{"level":"debug","ts":"2023-08-03T06:36:52.197Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:53","latency":"95.959µs"} +{"level":"debug","ts":"2023-08-03T06:36:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:53","latency":"102.97µs"} +{"level":"debug","ts":"2023-08-03T06:36:57.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:58","latency":"99.346µs"} +{"level":"debug","ts":"2023-08-03T06:36:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:58","latency":"107.33µs"} +{"level":"debug","ts":"2023-08-03T06:37:02.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:03","latency":"97.15µs"} +{"level":"debug","ts":"2023-08-03T06:37:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:03","latency":"102.744µs"} +{"level":"debug","ts":"2023-08-03T06:37:07.199Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:08","latency":"121.484µs"} +{"level":"debug","ts":"2023-08-03T06:37:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:08","latency":"123.076µs"} +{"level":"debug","ts":"2023-08-03T06:37:12.200Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:13","latency":"109.759µs"} +{"level":"debug","ts":"2023-08-03T06:37:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:13","latency":"121.638µs"} +{"level":"debug","ts":"2023-08-03T06:37:17.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:18","latency":"104.044µs"} +{"level":"debug","ts":"2023-08-03T06:37:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:18","latency":"108.404µs"} +{"level":"debug","ts":"2023-08-03T06:37:22.202Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:37:23.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:23","latency":"97.722µs"} +{"level":"debug","ts":"2023-08-03T06:37:23.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:23","latency":"101.9µs"} +{"level":"debug","ts":"2023-08-03T06:37:27.203Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:28","latency":"98.787µs"} +{"level":"debug","ts":"2023-08-03T06:37:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:28","latency":"113.1µs"} +{"level":"debug","ts":"2023-08-03T06:37:32.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:33","latency":"95.442µs"} +{"level":"debug","ts":"2023-08-03T06:37:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:33","latency":"99.873µs"} +{"level":"debug","ts":"2023-08-03T06:37:37.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:38","latency":"112.826µs"} +{"level":"debug","ts":"2023-08-03T06:37:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:38","latency":"151.784µs"} +{"level":"debug","ts":"2023-08-03T06:37:42.205Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:37:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:43","latency":"80.242µs"} +{"level":"debug","ts":"2023-08-03T06:37:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:43","latency":"101.619µs"} +{"level":"debug","ts":"2023-08-03T06:37:47.205Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:37:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:48","latency":"114.405µs"} +{"level":"debug","ts":"2023-08-03T06:37:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:48","latency":"105.07µs"} +{"level":"debug","ts":"2023-08-03T06:37:52.206Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:53","latency":"93.365µs"} +{"level":"debug","ts":"2023-08-03T06:37:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:53","latency":"93.598µs"} +{"level":"debug","ts":"2023-08-03T06:37:57.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:58","latency":"93.102µs"} +{"level":"debug","ts":"2023-08-03T06:37:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:58","latency":"97.979µs"} +{"level":"debug","ts":"2023-08-03T06:38:02.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:38:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:03","latency":"99.029µs"} +{"level":"debug","ts":"2023-08-03T06:38:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:03","latency":"106.962µs"} +{"level":"debug","ts":"2023-08-03T06:38:07.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:38:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:08","latency":"88.453µs"} +{"level":"debug","ts":"2023-08-03T06:38:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:08","latency":"94.042µs"} +{"level":"debug","ts":"2023-08-03T06:38:12.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:13","latency":"99.064µs"} +{"level":"debug","ts":"2023-08-03T06:38:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:13","latency":"104.128µs"} +{"level":"debug","ts":"2023-08-03T06:38:17.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:38:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:18","latency":"101.099µs"} +{"level":"debug","ts":"2023-08-03T06:38:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:18","latency":"86.426µs"} +{"level":"debug","ts":"2023-08-03T06:38:22.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:23","latency":"92.763µs"} +{"level":"debug","ts":"2023-08-03T06:38:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:23","latency":"115.567µs"} +{"level":"debug","ts":"2023-08-03T06:38:27.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:28.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:28","latency":"106.013µs"} +{"level":"debug","ts":"2023-08-03T06:38:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:28","latency":"176.997µs"} +{"level":"info","ts":"2023-08-03T06:38:32.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peersUndetected":0,"peersDetected":0,"peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","id":"ragep2p","statusByPeer":"map[]","peersToDetect":0} +{"level":"debug","ts":"2023-08-03T06:38:32.210Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:33","latency":"101.766µs"} +{"level":"debug","ts":"2023-08-03T06:38:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:33","latency":"96.93µs"} +{"level":"debug","ts":"2023-08-03T06:38:37.211Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:38","latency":"95.369µs"} +{"level":"debug","ts":"2023-08-03T06:38:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:38","latency":"93.761µs"} +{"level":"debug","ts":"2023-08-03T06:38:42.212Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:43","latency":"96.382µs"} +{"level":"debug","ts":"2023-08-03T06:38:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:43","latency":"89.717µs"} +{"level":"debug","ts":"2023-08-03T06:38:47.212Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:38:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:48","latency":"107.188µs"} +{"level":"debug","ts":"2023-08-03T06:38:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:48","latency":"88.846µs"} +{"level":"debug","ts":"2023-08-03T06:38:52.213Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:53","latency":"104.61µs"} +{"level":"debug","ts":"2023-08-03T06:38:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:53","latency":"99.086µs"} +{"level":"debug","ts":"2023-08-03T06:38:57.213Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:58","latency":"101.712µs"} +{"level":"debug","ts":"2023-08-03T06:38:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:58","latency":"91.426µs"} +{"level":"debug","ts":"2023-08-03T06:39:02.214Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:03","latency":"103.449µs"} +{"level":"debug","ts":"2023-08-03T06:39:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:03","latency":"105.068µs"} +{"level":"debug","ts":"2023-08-03T06:39:07.214Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:08.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:08","latency":"94.598µs"} +{"level":"debug","ts":"2023-08-03T06:39:08.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:08","latency":"94.406µs"} +{"level":"debug","ts":"2023-08-03T06:39:12.215Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:39:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:13","latency":"96.135µs"} +{"level":"debug","ts":"2023-08-03T06:39:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:13","latency":"96.912µs"} +{"level":"debug","ts":"2023-08-03T06:39:17.216Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:18","latency":"96.569µs"} +{"level":"debug","ts":"2023-08-03T06:39:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:18","latency":"98.081µs"} +{"level":"debug","ts":"2023-08-03T06:39:22.217Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:39:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:23","latency":"96.332µs"} +{"level":"debug","ts":"2023-08-03T06:39:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:23","latency":"108.22µs"} +{"level":"debug","ts":"2023-08-03T06:39:27.218Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:28","latency":"93.882µs"} +{"level":"debug","ts":"2023-08-03T06:39:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:28","latency":"127.799µs"} +{"level":"debug","ts":"2023-08-03T06:39:32.218Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:33","latency":"97.096µs"} +{"level":"debug","ts":"2023-08-03T06:39:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:33","latency":"111.099µs"} +{"level":"debug","ts":"2023-08-03T06:39:37.219Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:38","latency":"90.993µs"} +{"level":"debug","ts":"2023-08-03T06:39:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:38","latency":"94.4µs"} +{"level":"debug","ts":"2023-08-03T06:39:42.220Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:43","latency":"93.416µs"} +{"level":"debug","ts":"2023-08-03T06:39:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:43","latency":"80.797µs"} +{"level":"debug","ts":"2023-08-03T06:39:47.221Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:39:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:48","latency":"98.234µs"} +{"level":"debug","ts":"2023-08-03T06:39:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:48","latency":"88.685µs"} +{"level":"debug","ts":"2023-08-03T06:39:52.221Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:53","latency":"96.223µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:53","latency":"76.406µs"} +{"level":"debug","ts":"2023-08-03T06:39:56.047Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:56","latency":"69.674µs"} +{"level":"debug","ts":"2023-08-03T06:39:56.252Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:56","latency":"65.882µs"} +{"level":"debug","ts":"2023-08-03T06:39:57.221Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:58","latency":"134.531µs"} +{"level":"debug","ts":"2023-08-03T06:39:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:58","latency":"106.601µs"} +{"level":"debug","ts":"2023-08-03T06:39:59.266Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"1.767472ms"} +{"level":"debug","ts":"2023-08-03T06:39:59.476Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_94476f7f_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"4.229229ms"} +{"level":"debug","ts":"2023-08-03T06:39:59.684Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_94476f7f_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"2.942654ms"} +{"level":"info","ts":"2023-08-03T06:40:01.194Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:40:01.194Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:40:01.194Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} +{"level":"debug","ts":"2023-08-03T06:40:01.195Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"info","ts":"2023-08-03T06:40:01.195Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} +{"level":"debug","ts":"2023-08-03T06:40:01.195Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:40:01.195Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"info","ts":"2023-08-03T06:40:01.198Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:01.199Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","duration":734} +{"level":"info","ts":"2023-08-03T06:40:01.199Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} +{"level":"info","ts":"2023-08-03T06:40:01.199Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} +{"level":"debug","ts":"2023-08-03T06:40:01.200Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"c4d547a7690bf33888c8b7f70f498991f5f6326cfd2f2f411ebe59c7cf118969\\\" \\n\\ntransmitterID = \\\"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_94476f7f_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_94476f7f_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:01","latency":"13.748498ms"} +{"level":"debug","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} +{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:01.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"]} +{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","streamName":"ragedisco/v1","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"numQueried":4,"numFound":1,"numLoaded":1,"id":"ragep2p","found":["12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"],"loaded":["12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"]} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","oracleID":1,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}]} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e"} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6"} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","oracleID":1,"_id":"OCREndpointV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2"} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"info","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","ne":1,"previousNe":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"info","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":1,"leader":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:01.206Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.002243494} +{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.002260421} +{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":1,"observation":"CMGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":1} +{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":1,"leader":1,"round":1,"sender":1,"msgEpoch":1,"msgRound":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":1,"leader":1,"round":1,"observationCount":1,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:02.222Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:40:02.253Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:03","latency":"106.949µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:03","latency":"102.518µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.206Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:03.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.328Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.381Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.400Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.462Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.463Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.467Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.537Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.535Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"warn","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"warn","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"warn","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} +{"level":"info","ts":"2023-08-03T06:40:06.561Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"out","remoteAddr":"10.14.91.55:6690"} +{"level":"info","ts":"2023-08-03T06:40:06.562Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","streamName":"ragedisco/v1","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} +{"level":"debug","ts":"2023-08-03T06:40:06.570Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.572Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"processAnnouncement"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:07.223Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:07.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.648Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.649Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:08","latency":"89.984µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:08","latency":"95.8µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.631Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.678Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.680Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.690Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.697Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.698Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"in","remoteAddr":"10.14.21.114:44696","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:10.771Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.773Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.796Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.851Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","direction":"in","remoteAddr":"10.14.3.137:37718"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","candidateEpochs":[2,2,3],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"newEpoch":2} +{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":1,"e":1,"l":1} +{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:11.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001130393} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001474323} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"leader":0,"round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:12.224Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviation":true,"initialRound":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"deltaCTimeout":true,"unfulfilledRequest":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1},"deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":2,"leader":0,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1,"sender":2,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:12.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.823Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044811}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001122816} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001120366} +{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:13","latency":"93.911µs"} +{"level":"debug","ts":"2023-08-03T06:40:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:13","latency":"97.913µs"} +{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:11.000Z","deviation":true,"unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":0,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":2,"Round":2},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"info","ts":"2023-08-03T06:40:13.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"in","remoteAddr":"10.14.113.114:57816","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50"} +{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-03T06:40:13.623Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:13.623Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:13.874Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.876Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.909Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001034699} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001175208} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":3,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"info","ts":"2023-08-03T06:40:14.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviation":true,"result":true,"alphaReportInfinite":false,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3},"deltaC":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"reportEpochRound":{"Epoch":2,"Round":3}} +{"level":"info","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"debug","ts":"2023-08-03T06:40:14.468Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"36fff508-67aa-4306-ad14-7c0889f28aaa","signature":"32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL"} +{"level":"debug","ts":"2023-08-03T06:40:14.468Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL","id":"36fff508-67aa-4306-ad14-7c0889f28aaa"} +{"level":"debug","ts":"2023-08-03T06:40:14.850Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"36fff508-67aa-4306-ad14-7c0889f28aaa","signature":"32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL"} +{"level":"debug","ts":"2023-08-03T06:40:14.850Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"36fff508-67aa-4306-ad14-7c0889f28aaa","signatures":["32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL"]} +{"level":"debug","ts":"2023-08-03T06:40:14.929Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.931Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.960Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044813}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"leader":0,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"newEpoch":3,"candidateEpochs":[3,3,3]} +{"level":"info","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":0,"e":2,"l":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.00114852} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001339573} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"sender":1,"msgEpoch":3,"msgRound":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"round":1,"observationCount":1,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"msgRound":1,"round":1,"sender":3,"msgEpoch":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observationCount":2,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","msgEpoch":3,"msgRound":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"msgRound":1,"round":1,"sender":0,"msgEpoch":3} +{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} +{"level":"info","ts":"2023-08-03T06:40:15.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:40:13.000Z","initialRound":false,"deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"alphaReportInfinite":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deviation":true,"result":true,"unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":3,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"currentPhase":"final","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":1,"epoch":3,"round":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","result":true,"contractEpochRound":{"Epoch":2,"Round":3},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":3,"Round":1}} +{"level":"info","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.470Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180","signature":"59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw"} +{"level":"debug","ts":"2023-08-03T06:40:15.470Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180"} +{"level":"debug","ts":"2023-08-03T06:40:15.903Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180","signature":"59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw"} +{"level":"debug","ts":"2023-08-03T06:40:15.903Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180","signatures":["59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw"]} +{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001168708} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001219135} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":2,"sender":1,"msgEpoch":3,"msgRound":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"round":2,"sender":3,"msgEpoch":3,"msgRound":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":2,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":0,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"msgEpoch":3,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observationCount":3,"requiredObservationCount":3,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:15.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":2,"msgEpoch":3,"msgRound":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:15.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:15.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.969Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.202Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} +{"level":"info","ts":"2023-08-03T06:40:16.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","unfulfilledRequest":false,"alphaReportInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2},"deltaC":0,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1,"round":2,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","currentPhase":"final","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":3,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":3,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:16.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:16.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001259691} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001258023} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","msgEpoch":3,"msgRound":3,"round":3,"sender":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3,"observationCount":1} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":3,"sender":3,"msgEpoch":3,"msgRound":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"requiredObservationCount":3,"round":3,"observationCount":2,"leader":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1,"msgEpoch":3,"msgRound":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observationCount":3,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"epoch":3,"leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3,"sender":2,"msgEpoch":3,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:17.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.060Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.061Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.224Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:17.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaC":0,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z"} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"currentPhase":"final","leader":1} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"result":true,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":2},"reportEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":0,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","newEpoch":4,"candidateEpochs":[4,4,4]} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":3,"l":1,"epoch":3} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001086269} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001141548} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1,"observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":1,"sender":1,"msgEpoch":4,"msgRound":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","requiredObservationCount":3,"round":1,"observationCount":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":3,"msgEpoch":4,"msgRound":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":1,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"msgRound":1,"round":1,"sender":2,"msgEpoch":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:17.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":1,"sender":0,"msgEpoch":4,"msgRound":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:18.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:18","latency":"92.699µs"} +{"level":"debug","ts":"2023-08-03T06:40:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:18","latency":"91.697µs"} +{"level":"debug","ts":"2023-08-03T06:40:18.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:18.468Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","reportingPlugin":"NumericalMedian","deltaC":0,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"deviation":true,"unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z","initialRound":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"currentPhase":"final","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","currentPhase":"final","round":1,"oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":4,"Round":1},"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false} +{"level":"info","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":1,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:18.472Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"27043891-af33-44d4-8f49-4955180c8d20","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"} +{"level":"debug","ts":"2023-08-03T06:40:18.472Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ","id":"27043891-af33-44d4-8f49-4955180c8d20"} +{"level":"debug","ts":"2023-08-03T06:40:18.515Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001247925} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001284058} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"msgEpoch":4,"msgRound":2,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"observationCount":1,"requiredObservationCount":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":2,"sender":3,"msgEpoch":4,"msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":2,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"msgEpoch":4,"oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","msgRound":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observationCount":3,"requiredObservationCount":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2,"sender":2,"msgEpoch":4,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:19.048Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"27043891-af33-44d4-8f49-4955180c8d20","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"} +{"level":"debug","ts":"2023-08-03T06:40:19.048Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"27043891-af33-44d4-8f49-4955180c8d20","signatures":["4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"]} +{"level":"debug","ts":"2023-08-03T06:40:19.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.156Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044817}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:19.468Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaReportPPB":0,"result":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:40:17.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":2},"unfulfilledRequest":false,"initialRound":false,"deviation":true,"deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":2,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"currentPhase":"final","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":2,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":4,"Round":2,"H":[227,57,141,191,243,159,108,42,91,240,130,82,173,222,213,122,27,228,168,157,52,71,161,87,8,106,134,129,242,145,113,65],"AttestedReport":{"Report":"ZMtL0gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"kcGwJXWpR5Mz62YXjS3uTL5R0RpyrG3Kie73vzL0UsAL+RJqAkF2+VVCp+ioeQm0W3klhOq2wy3pIQaMcNSAGwE=","Signer":1},{"Signature":"X83nLJ9mOnIhxpODNMp8SVQt2xuHC6mERVsxuGnraeVtWtlGiUfeqGNYw13NLpKjZIDTlzoobF5iBe0xbjGSVAA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":2,"epoch":4,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001124865} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.00117483} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3,"observation":"CNOXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"msgEpoch":4,"msgRound":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observationCount":1,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"sender":3,"msgEpoch":4,"msgRound":3} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"msgEpoch":4,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":2,"msgEpoch":4,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:20.173Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044818}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:20.470Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","lastTransmissionTimestamp":"2023-08-03T06:40:18.000Z","alphaReportInfinite":false,"deltaCTimeout":true,"unfulfilledRequest":false,"deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":3},"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","initialRound":false,"alphaReportPPB":0,"deviation":true} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","currentPhase":"final","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"event":{"Epoch":4,"Round":3,"H":[181,36,61,27,174,108,246,113,97,41,205,33,84,28,183,101,35,106,8,1,125,130,59,188,121,223,60,71,111,23,153,24],"AttestedReport":{"Report":"ZMtL0wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"oR2KORlVQ0wBVdEB+7t4EOfHRkfHeS4lhKdYobI85TtgFxlp/gseoIp6T5DkymCZc9WfEnZUDNNlkPwN1vNvqwA=","Signer":1},{"Signature":"fyHaVozEk0cFxbTE93pMb6UIaS3U1B2tcJ3eTP14jhw/XEpCHIY33MMgNbad5njRlfvuJ39BiZW2yB+U+nNTuQA=","Signer":3}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptInfinite":false,"deviates":true,"result":true,"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} +{"level":"info","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.473Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"} +{"level":"debug","ts":"2023-08-03T06:40:20.473Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9"} +{"level":"debug","ts":"2023-08-03T06:40:20.632Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"} +{"level":"debug","ts":"2023-08-03T06:40:20.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":4} +{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","candidateEpochs":[5,5,5],"newEpoch":5} +{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":4,"l":1} +{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.000965456} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001085333} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"round":1,"observation":"CNSXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:21.181Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"} +{"level":"debug","ts":"2023-08-03T06:40:21.181Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9","signatures":["3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"]} +{"level":"debug","ts":"2023-08-03T06:40:21.219Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.221Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044819}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.247Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:21.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviation":true,"deltaC":0,"unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":1},"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:19.000Z","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1,"sender":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":5,"Round":1,"H":[243,61,202,42,224,181,183,218,241,208,244,117,159,59,51,174,3,98,247,140,142,168,220,234,218,40,96,148,2,253,44,62],"AttestedReport":{"Report":"ZMtL1AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"30Yu94e8+c++7s+1YsWJScUoofdaBDTVTowQitmiHqtp5MyTgYg6J6TrPiHOgZynpm4d4qfis/oIwz1YmZreCgA=","Signer":1},{"Signature":"YXb+BzoK0JnxcYDU6xA3aK2nPBFDNg6U1GnrRNBiQOZhiOA4vVCvZfcw96LcimOFcOP8MQSpeSPoB6pml7nKQQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":4,"Round":3},"result":true,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":0,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001056571} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001141311} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"round":2,"observation":"CNWXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:22.225Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:22.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.286Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044820}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.468Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":2,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian"} +{"level":"info","ts":"2023-08-03T06:40:22.468Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"info","ts":"2023-08-03T06:40:22.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaReportInfinite":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":2},"lastTransmissionTimestamp":"2023-08-03T06:40:20.000Z","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"alphaReportPPB":0,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"deltaC":0} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","event":{"Epoch":5,"Round":2,"H":[9,24,59,213,110,59,8,68,170,72,213,193,39,135,1,138,175,186,31,36,28,209,54,71,6,22,178,46,143,74,83,0],"AttestedReport":{"Report":"ZMtL1QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZsWULiQqkHjwQ3dXgncTf1PEh8Ot54ynIUzLeVM+7d9Kj2/bmoBUrga8cCP43umZzPNkCxmFCTZasTH73ANwNgE=","Signer":1},{"Signature":"3WIB/MoU8M9fTdnAPrs/A9AupqaHeexO7B/T3bweu2oTIzPlQPSSVu6QkLxvdXWjKQOgTUtyNlwgoemez7S9bQA=","Signer":3}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":5,"round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviates":true,"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"contractEpochRound":{"Epoch":5,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001123426} +{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001104946} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":3,"observation":"CNaXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":3} +{"level":"debug","ts":"2023-08-03T06:40:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:23","latency":"101.558µs"} +{"level":"debug","ts":"2023-08-03T06:40:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:23","latency":"89.059µs"} +{"level":"debug","ts":"2023-08-03T06:40:23.303Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:23.305Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044821}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:23.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:23.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:23.474Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaC":0,"alphaReportInfinite":false,"deltaCTimeout":true,"deviation":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:40:21.000Z","unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":5,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":5,"Round":3,"H":[206,10,102,211,94,46,53,54,160,208,1,190,82,9,82,0,67,232,24,141,115,142,233,76,161,174,149,241,139,68,91,22],"AttestedReport":{"Report":"ZMtL1gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"wCwtYwuDAQL1SuYSl5Gx/6NIBoMoicnfTXUn0Jc1cXtc5zmEa/AGJt+PgSibS1uV//fZx5SxGxhFviKOiV5qggE=","Signer":1},{"Signature":"QjmlxdpCkNOgnF2Ho2LRsrplpzHGN8G1cuOpRrccg7ZEYfqk6Npid3xt8OaT71xsjIuczdBBogwTfyucV6PO2AA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","contractEpochRound":{"Epoch":5,"Round":2},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":3,"epoch":5,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":0,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:23.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":4,"messageRound":4,"roundMax":3,"oid":1} +{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","newEpoch":6,"candidateEpochs":[6,6,6],"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"e":5,"l":3} +{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.000982493} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001035079} +{"level":"debug","ts":"2023-08-03T06:40:23.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"observation":"CNeXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:24.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:24.402Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044822}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:24.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:24.472Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:24.475Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaReportPPB":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":1},"alphaReportInfinite":false,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","unfulfilledRequest":false} +{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":6,"leader":0,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} +{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":6,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":6,"Round":1,"H":[244,15,111,137,250,135,131,135,57,90,142,230,115,72,200,82,209,144,198,249,55,197,244,193,147,100,71,25,50,26,111,154],"AttestedReport":{"Report":"ZMtL1wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"knjjpTh9l8tAEyTuDt+dkqgTNuqEKHogYxpdJlXDn4Fhs7AL+CU2wAvtRCpiFp38YoiIrahj+WRQRrHt7FiDzgE=","Signer":0},{"Signature":"KWlkh7TOU0KwcC9sSc6opF+P0H6IIbVGvO2L4lgI2LFmTydggb7Crmx23p7dQ03T3TCZIDx5kOyiRe8tC55jSwE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","contractEpochRound":{"Epoch":5,"Round":3},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":5,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":6,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} +{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001040028} +{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001089664} +{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":6,"leader":0,"round":2,"observation":"CNiXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:25.474Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"unfulfilledRequest":false,"deviation":true,"initialRound":false,"deltaC":0,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":6,"Round":2,"H":[38,148,213,49,227,64,117,63,131,130,132,239,183,36,175,40,250,10,156,19,9,56,1,120,11,158,42,227,38,215,82,129],"AttestedReport":{"Report":"ZMtL2AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"S8ReeuNDPqeylRH8qo7M+W/JowNfCQiXNQpfNDCQUJBjX3XnBj0hfXrvaPru4uV0+YbBJbQ/jlbZWW0lv6lD7gE=","Signer":0},{"Signature":"K+YE4vsQyAFd3jxGBb8NnPNCVDqEGqa7u5ThUpnWRpdrQoU3ETZPTNQ8rlyOIYbLsV5A2hYIyZAc2Uq9JTgC8wE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","result":true,"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1},"alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:40:25.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044823}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.496Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log new file mode 100644 index 000000000..52a880553 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log @@ -0,0 +1,62 @@ +The files belonging to this database system will be owned by user "postgres". +This user must also own the server process. + +The database cluster will be initialized with locale "en_US.utf8". +The default database encoding has accordingly been set to "UTF8". +The default text search configuration will be set to "english". + +Data page checksums are disabled. + +fixing permissions on existing directory /var/lib/postgresql/data ... ok +creating subdirectories ... ok +selecting default max_connections ... 100 +selecting default shared_buffers ... 128MB +selecting default timezone ... Etc/UTC +selecting dynamic shared memory implementation ... posix +creating configuration files ... ok +running bootstrap script ... ok +performing post-bootstrap initialization ... ok +syncing data to disk ... ok + +Success. You can now start the database server using: + + pg_ctl -D /var/lib/postgresql/data -l logfile start + + +WARNING: enabling "trust" authentication for local connections +You can change this by editing pg_hba.conf or using the option -A, or +--auth-local and --auth-host, the next time you run initdb. +waiting for server to start....2023-08-03 06:33:05.770 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:05.856 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC +2023-08-03 06:33:05.860 UTC [48] LOG: database system is ready to accept connections + done +server started +CREATE DATABASE + + +/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql +CREATE EXTENSION + + +waiting for server to shut down...2023-08-03 06:33:06.464 UTC [48] LOG: received fast shutdown request +.2023-08-03 06:33:06.466 UTC [48] LOG: aborting any active transactions +2023-08-03 06:33:06.468 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 +2023-08-03 06:33:06.468 UTC [50] LOG: shutting down +2023-08-03 06:33:06.558 UTC [48] LOG: database system is shut down + done +server stopped + +PostgreSQL init process complete; ready for start up. + +2023-08-03 06:33:06.575 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 +2023-08-03 06:33:06.575 UTC [1] LOG: listening on IPv6 address "::", port 5432 +2023-08-03 06:33:06.577 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" +2023-08-03 06:33:06.651 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:06 UTC +2023-08-03 06:33:06.655 UTC [1] LOG: database system is ready to accept connections +2023-08-03 06:33:07.447 UTC [92] FATAL: role "chainlink" does not exist +2023-08-03 06:33:08.547 UTC [94] ERROR: relation "node_versions" does not exist at character 21 +2023-08-03 06:33:08.547 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE +2023-08-03 06:33:08.547 UTC [94] ERROR: relation "migrations" does not exist at character 16 +2023-08-03 06:33:08.547 UTC [94] STATEMENT: SELECT id FROM migrations +2023-08-03 06:33:08.547 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 +2023-08-03 06:33:08.547 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql new file mode 100644 index 000000000..218cc5277 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql @@ -0,0 +1,22 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) +-- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- PostgreSQL database dump complete +-- + diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log new file mode 100644 index 000000000..7dbc46ef3 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log @@ -0,0 +1,1021 @@ +0.0.0.0:5432 - accepting connections +{"level":"debug","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} +{"level":"debug","ts":"2023-08-03T06:33:08.461Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.461Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:08.461Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"32522ade-007b-4e60-b6af-0d36d4090d60"} +{"level":"debug","ts":"2023-08-03T06:33:08.466Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"32522ade-007b-4e60-b6af-0d36d4090d60"} +{"level":"debug","ts":"2023-08-03T06:33:08.547Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} +2023/08/03 06:33:08 OK 0001_initial.sql +2023/08/03 06:33:08 OK 0002_gormv2.sql +2023/08/03 06:33:08 OK 0003_eth_logs_table.sql +2023/08/03 06:33:08 OK 0004_cleanup_tx_attempt_state.sql +2023/08/03 06:33:08 OK 0005_tx_attempts_insufficient_eth_index.sql +2023/08/03 06:33:08 OK 0006_unique_task_specs_per_pipeline_run.sql +2023/08/03 06:33:08 OK 0007_reverse_eth_logs_table.sql +2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql +2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql +2023/08/03 06:33:09 OK 0010_bridge_fk.sql +2023/08/03 06:33:09 OK 0011_latest_round_requested.sql +2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql +2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql +2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql +2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql +2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql +2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql +2023/08/03 06:33:09 OK 0018_add_node_version_table.sql +2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql +2023/08/03 06:33:09 OK 0020_remove_result_task.sql +2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql +2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql +2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql +2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql +2023/08/03 06:33:09 OK 0025_create_log_config_table.sql +2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql +2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql +2023/08/03 06:33:09 OK 0028_vrf_v2.sql +2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql +2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql +2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql +2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql +2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql +2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql +2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql +2023/08/03 06:33:09 OK 0036_external_job_id.go +2023/08/03 06:33:09 OK 0037_cascade_deletes.sql +2023/08/03 06:33:09 OK 0038_create_csa_keys.sql +2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql +2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql +2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql +2023/08/03 06:33:09 OK 0042_create_job_proposals.sql +2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql +2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql +2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql +2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql +2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql +2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql +2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql +2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql +2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql +2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql +2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql +2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go +2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql +2023/08/03 06:33:09 OK 0056_multichain.go +2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql +2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql +2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql +2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql +2023/08/03 06:33:09 OK 0061_multichain_relations.sql +2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql +2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql +2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql +2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql +2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql +2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql +2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql +2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql +2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql +2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql +2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql +2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql +2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql +2023/08/03 06:33:09 OK 0075_unique_job_names.sql +2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql +2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql +2023/08/03 06:33:09 OK 0078_only_one_version.sql +2023/08/03 06:33:09 OK 0079_vrf_v2_fields.sql +2023/08/03 06:33:09 OK 0080_drop_unused_cols.sql +2023/08/03 06:33:09 OK 0081_unconsumed_log_broadcasts.sql +2023/08/03 06:33:09 OK 0082_lease_lock.sql +2023/08/03 06:33:09 OK 0083_add_keeper_confirmations_to_spec.sql +2023/08/03 06:33:09 OK 0084_rename_vrf_min_incoming_confirmations.sql +2023/08/03 06:33:09 OK 0085_requested_confs_delay.sql +2023/08/03 06:33:09 OK 0086_upgrade_keepers_observation_source.sql +2023/08/03 06:33:09 OK 0087_ocr2_tables.sql +2023/08/03 06:33:09 OK 0088_vrfv2_request_timeout.sql +2023/08/03 06:33:09 OK 0089_ocr_spec_drop_p2p_peer_id.sql +2023/08/03 06:33:09 OK 0090_ocr_new_timeouts.sql +2023/08/03 06:33:09 OK 0091_ocr2_relay.sql +2023/08/03 06:33:09 OK 0092_bptxm_tx_checkers.sql +2023/08/03 06:33:09 OK 0093_terra_txm.sql +2023/08/03 06:33:09 OK 0094_blockhash_store_job.sql +2023/08/03 06:33:09 OK 0095_terra_fcd.sql +2023/08/03 06:33:09 OK 0096_create_job_proposal_specs.sql +2023/08/03 06:33:09 OK 0097_bootstrap_spec.sql +2023/08/03 06:33:09 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql +2023/08/03 06:33:09 OK 0099_terra_msgs_created_at.sql +2023/08/03 06:33:09 OK 0100_bootstrap_config.sql +2023/08/03 06:33:09 OK 0101_generic_ocr2.sql +2023/08/03 06:33:09 OK 0102_add_log_broadcasts_block_num_chain_idx.sql +2023/08/03 06:33:09 OK 0103_terra_msgs_type_url.sql +2023/08/03 06:33:09 OK 0104_terra_cascade_delete.sql +2023/08/03 06:33:09 OK 0105_create_forwarder_addresses.sql +2023/08/03 06:33:09 OK 0106_evm_node_uniqueness.sql +2023/08/03 06:33:09 OK 0107_vrf_multiple_from_addresses.sql +2023/08/03 06:33:09 OK 0108_upgrade_keepers_tx_meta.sql +2023/08/03 06:33:09 OK 0109_solana_chains_nodes.sql +2023/08/03 06:33:09 OK 0110_add_vrf_chunk_size.sql +2023/08/03 06:33:09 OK 0111_terra_msgs_state_started.sql +2023/08/03 06:33:09 OK 0112_vrf_batch_coordinator_address.sql +2023/08/03 06:33:09 OK 0113_vrf_v2_backoff_columns.sql +2023/08/03 06:33:09 OK 0114_add_last_keeper_id_to_upkeep_table.sql +2023/08/03 06:33:09 OK 0115_log_poller.sql +2023/08/03 06:33:09 OK 0116_migrate_upkeep_id_to_big_int.sql +2023/08/03 06:33:09 OK 0117_add_log_poller_idx.sql +2023/08/03 06:33:09 OK 0118_create_feeds_manager_chain_config.sql +2023/08/03 06:33:09 OK 0119_initial_rebroadcast_columns.sql +2023/08/03 06:33:09 OK 0120_log_poller_data_idx.sql +2023/08/03 06:33:09 OK 0121_remove_log_configs.sql +2023/08/03 06:33:09 OK 0122_upgrade_keepers_observation_source.sql +2023/08/03 06:33:09 OK 0123_terra_idx_simplify.sql +2023/08/03 06:33:09 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql +2023/08/03 06:33:09 OK 0125_keeper_flatten_schema_version.sql +2023/08/03 06:33:09 OK 0126_remove_observation_source.sql +2023/08/03 06:33:09 OK 0127_add_ocr1_p2pv2Bootstrappers.sql +2023/08/03 06:33:09 OK 0128_maxgaspricegwei_vrf.sql +2023/08/03 06:33:09 OK 0129_add_job_gas_limit.sql +2023/08/03 06:33:09 OK 0130_starknet_chains_nodes.sql +2023/08/03 06:33:09 OK 0131_add_multi_user.sql +2023/08/03 06:33:09 OK 0132_log_index_uniqueness.sql +2023/08/03 06:33:09 OK 0133_fix_pipeline_runs_constraint.sql +2023/08/03 06:33:09 OK 0134_starknet_nodes_chain_id.sql +2023/08/03 06:33:09 OK 0135_tx_index_not_null.sql +2023/08/03 06:33:09 OK 0136_add_job_allow_forwarding.sql +2023/08/03 06:33:09 OK 0137_remove_tx_index.sql +2023/08/03 06:33:09 OK 0138_rename_allowforwarding_field.sql +2023/08/03 06:33:09 OK 0139_multi_chain_keys.sql +2023/08/03 06:33:09 OK 0140_pipeline_runs_brin_to_btree.sql +2023/08/03 06:33:09 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql +2023/08/03 06:33:09 OK 0142_delete_eth_key_state_cascades.sql +2023/08/03 06:33:09 OK 0143_set_forwarding_allowed_not_null.sql +2023/08/03 06:33:09 OK 0144_optimize_lp.sql +2023/08/03 06:33:09 OK 0145_cascade_delete_of_evm_key_states.sql +2023/08/03 06:33:09 OK 0146_unique_contract_address_per_chain.sql +2023/08/03 06:33:09 OK 0147_remove_maxgaspricegwei_vrf.sql +2023/08/03 06:33:09 OK 0148_dkg_shares.sql +2023/08/03 06:33:09 OK 0149_bridge_last_good_value.sql +2023/08/03 06:33:09 OK 0150_gaslaneprice_vrf.sql +2023/08/03 06:33:09 OK 0151_bridge_last_good_value_use_tz.sql +2023/08/03 06:33:09 OK 0152_ocr2_multichain.sql +2023/08/03 06:33:09 OK 0153_ocr2_restore_global_constraint.sql +2023/08/03 06:33:09 OK 0154_ocr2dr_requests_table.sql +2023/08/03 06:33:09 OK 0155_remove_terra.sql +2023/08/03 06:33:09 OK 0156_add_evm_prefix_to_log_poller.sql +2023/08/03 06:33:09 OK 0157_add_log_poller_filters_table.sql +2023/08/03 06:33:09 OK 0158_deferrable_job_spec_errors_v2_fkey.sql +2023/08/03 06:33:09 OK 0159_add_name_to_job_proposals.sql +2023/08/03 06:33:09 OK 0160_bhs_multiple_from_addresses.sql +2023/08/03 06:33:09 OK 0161_update_job_proposal_status.sql +2023/08/03 06:33:09 OK 0162_logpoller_block_timestamps.sql +2023/08/03 06:33:09 OK 0163_mercury_jobs_multiple_per_contract.sql +2023/08/03 06:33:09 OK 0164_add_cosmos.sql +2023/08/03 06:33:09 OK 0165_update_job_proposal_constraints.sql +2023/08/03 06:33:09 OK 0166_block_header_feeder_job.sql +2023/08/03 06:33:09 OK 0167_update_job_proposal_specs_status.sql +2023/08/03 06:33:09 OK 0168_drop_node_tables.sql +2023/08/03 06:33:09 OK 0169_log_poller_pruning.sql +2023/08/03 06:33:09 OK 0170_gateway_job_spec.sql +2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql +2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql +2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql +2023/08/03 06:33:10 OK 0174_vrf_owner.sql +2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql +2023/08/03 06:33:10 OK 0176_s4_shared_table.sql +2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql +2023/08/03 06:33:10 OK 0178_drop_access_list.sql +2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql +2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql +2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql +2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql +2023/08/03 06:33:10 OK 0183_functions_new_fields.sql +2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql +2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql +2023/08/03 06:33:10 goose: no migrations to run. current version: 185 +{"level":"debug","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:14.160Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID dc7636abb7b594052074fe8fbf0b08318a676d19ec27de249392664741edff4c for chain type solana","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:14.160Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:16.354Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 2hpcb49J2iPLRtKVqcvminykaG9tHUaDeKv4H2LgP9gW","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:18.359Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 2ffebf08c1b66ff37279ca008d90f23f6b33434852fdbb8ad2c286bf0707eb6b","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.648Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:20.777Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:20.777Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} +{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} +{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} +{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} +{"level":"warn","ts":"2023-08-03T06:33:20.778Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"info","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} +{"level":"info","ts":"2023-08-03T06:33:20.778Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} +{"level":"warn","ts":"2023-08-03T06:33:20.778Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} +{"level":"warn","ts":"2023-08-03T06:33:20.779Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 35421. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":35421} +{"level":"debug","ts":"2023-08-03T06:33:20.779Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":35421,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} +{"level":"debug","ts":"2023-08-03T06:33:20.780Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:20.780Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","v1listenPort":35421,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/35421","id":"PeerV1"} +{"level":"info","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} +{"level":"info","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"PeerV2"} +{"level":"debug","ts":"2023-08-03T06:33:20.781Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} +{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"saveLoop"} +{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","in":"recvLoop","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:33:20.847Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} +{"level":"debug","ts":"2023-08-03T06:33:20.847Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:33:20.847Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.38s","version":"2.4.0@114e039","appID":"32522ade-007b-4e60-b6af-0d36d4090d60"} +{"level":"debug","ts":"2023-08-03T06:33:20.847Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000707379} +{"level":"info","ts":"2023-08-03T06:33:20.855Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} +{"level":"debug","ts":"2023-08-03T06:33:20.858Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.010932181} +{"level":"debug","ts":"2023-08-03T06:33:20.858Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:33:23.084Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.641642ms"} +{"level":"debug","ts":"2023-08-03T06:33:23.085Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:23","latency":"210.211µs"} +{"level":"debug","ts":"2023-08-03T06:33:25.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:33:26.054Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"warn","ts":"2023-08-03T06:33:26.056Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} +{"level":"debug","ts":"2023-08-03T06:33:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:28","latency":"88.743µs"} +{"level":"debug","ts":"2023-08-03T06:33:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:28","latency":"143.756µs"} +{"level":"debug","ts":"2023-08-03T06:33:30.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"info","ts":"2023-08-03T06:33:30.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0} +{"level":"debug","ts":"2023-08-03T06:33:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:33","latency":"111.341µs"} +{"level":"debug","ts":"2023-08-03T06:33:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:33","latency":"71.874µs"} +{"level":"debug","ts":"2023-08-03T06:33:35.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:33:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:38","latency":"102.522µs"} +{"level":"debug","ts":"2023-08-03T06:33:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:38","latency":"80.039µs"} +{"level":"debug","ts":"2023-08-03T06:33:40.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:43","latency":"106.636µs"} +{"level":"debug","ts":"2023-08-03T06:33:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:43","latency":"157.243µs"} +{"level":"debug","ts":"2023-08-03T06:33:45.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:48.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:48","latency":"155.409µs"} +{"level":"debug","ts":"2023-08-03T06:33:48.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:48","latency":"119.483µs"} +{"level":"debug","ts":"2023-08-03T06:33:50.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:33:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:53","latency":"87.78µs"} +{"level":"debug","ts":"2023-08-03T06:33:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:53","latency":"87.539µs"} +{"level":"debug","ts":"2023-08-03T06:33:55.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:33:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:58","latency":"87.96µs"} +{"level":"debug","ts":"2023-08-03T06:33:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:58","latency":"91.064µs"} +{"level":"debug","ts":"2023-08-03T06:34:00.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:03","latency":"85.717µs"} +{"level":"debug","ts":"2023-08-03T06:34:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:03","latency":"88.341µs"} +{"level":"debug","ts":"2023-08-03T06:34:05.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:06.711Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:34:06.712Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"info","ts":"2023-08-03T06:34:06.771Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} +{"level":"debug","ts":"2023-08-03T06:34:06.794Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:06","latency":"83.484794ms"} +{"level":"debug","ts":"2023-08-03T06:34:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:08","latency":"87.44µs"} +{"level":"debug","ts":"2023-08-03T06:34:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:08","latency":"90.103µs"} +{"level":"debug","ts":"2023-08-03T06:34:10.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:13","latency":"95.92µs"} +{"level":"debug","ts":"2023-08-03T06:34:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:13","latency":"96.067µs"} +{"level":"debug","ts":"2023-08-03T06:34:15.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:18","latency":"90.18µs"} +{"level":"debug","ts":"2023-08-03T06:34:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:18","latency":"77.491µs"} +{"level":"debug","ts":"2023-08-03T06:34:20.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:23","latency":"114.936µs"} +{"level":"debug","ts":"2023-08-03T06:34:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:23","latency":"80.238µs"} +{"level":"debug","ts":"2023-08-03T06:34:25.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:28","latency":"96.248µs"} +{"level":"debug","ts":"2023-08-03T06:34:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:28","latency":"98.48µs"} +{"level":"debug","ts":"2023-08-03T06:34:29.910Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:29","latency":"2.264549ms"} +{"level":"debug","ts":"2023-08-03T06:34:30.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:32.070Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:32","latency":"1.951880424s"} +{"level":"debug","ts":"2023-08-03T06:34:33.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:33","latency":"96.16µs"} +{"level":"debug","ts":"2023-08-03T06:34:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:33","latency":"243.154µs"} +{"level":"debug","ts":"2023-08-03T06:34:34.952Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:34","latency":"2.673742591s"} +{"level":"debug","ts":"2023-08-03T06:34:35.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:38","latency":"95.351µs"} +{"level":"debug","ts":"2023-08-03T06:34:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:38","latency":"102.073µs"} +{"level":"debug","ts":"2023-08-03T06:34:40.790Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:34:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:43","latency":"82.763µs"} +{"level":"debug","ts":"2023-08-03T06:34:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:43","latency":"88.279µs"} +{"level":"debug","ts":"2023-08-03T06:34:45.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:34:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:48","latency":"90.813µs"} +{"level":"debug","ts":"2023-08-03T06:34:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:48","latency":"101.539µs"} +{"level":"debug","ts":"2023-08-03T06:34:50.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:34:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:53","latency":"87.654µs"} +{"level":"debug","ts":"2023-08-03T06:34:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:53","latency":"90.241µs"} +{"level":"debug","ts":"2023-08-03T06:34:55.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:34:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:58","latency":"93.391µs"} +{"level":"debug","ts":"2023-08-03T06:34:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:58","latency":"91.276µs"} +{"level":"debug","ts":"2023-08-03T06:35:00.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:03","latency":"87.66µs"} +{"level":"debug","ts":"2023-08-03T06:35:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:03","latency":"92.59µs"} +{"level":"debug","ts":"2023-08-03T06:35:05.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:08","latency":"91.383µs"} +{"level":"debug","ts":"2023-08-03T06:35:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:08","latency":"66.374µs"} +{"level":"debug","ts":"2023-08-03T06:35:10.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:13","latency":"90.32µs"} +{"level":"debug","ts":"2023-08-03T06:35:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:13","latency":"96.658µs"} +{"level":"debug","ts":"2023-08-03T06:35:15.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:35:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:18","latency":"95.647µs"} +{"level":"debug","ts":"2023-08-03T06:35:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:18","latency":"74.248µs"} +{"level":"debug","ts":"2023-08-03T06:35:20.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:23","latency":"87.474µs"} +{"level":"debug","ts":"2023-08-03T06:35:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:23","latency":"77.868µs"} +{"level":"debug","ts":"2023-08-03T06:35:25.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:35:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:28","latency":"120.151µs"} +{"level":"debug","ts":"2023-08-03T06:35:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:28","latency":"92.867µs"} +{"level":"debug","ts":"2023-08-03T06:35:30.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:35:33.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:33","latency":"103.502µs"} +{"level":"debug","ts":"2023-08-03T06:35:33.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:33","latency":"205.537µs"} +{"level":"debug","ts":"2023-08-03T06:35:35.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:38","latency":"86.088µs"} +{"level":"debug","ts":"2023-08-03T06:35:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:38","latency":"86.038µs"} +{"level":"debug","ts":"2023-08-03T06:35:40.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:43","latency":"89.389µs"} +{"level":"debug","ts":"2023-08-03T06:35:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:43","latency":"68.911µs"} +{"level":"debug","ts":"2023-08-03T06:35:45.798Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:35:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:48","latency":"82.951µs"} +{"level":"debug","ts":"2023-08-03T06:35:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:48","latency":"88.188µs"} +{"level":"debug","ts":"2023-08-03T06:35:50.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:35:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:53","latency":"91.868µs"} +{"level":"debug","ts":"2023-08-03T06:35:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:53","latency":"76.25µs"} +{"level":"debug","ts":"2023-08-03T06:35:55.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:35:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:58","latency":"113.07µs"} +{"level":"debug","ts":"2023-08-03T06:35:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:58","latency":"107.988µs"} +{"level":"debug","ts":"2023-08-03T06:36:00.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:03","latency":"89.693µs"} +{"level":"debug","ts":"2023-08-03T06:36:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:03","latency":"113.141µs"} +{"level":"debug","ts":"2023-08-03T06:36:05.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:08","latency":"85.637µs"} +{"level":"debug","ts":"2023-08-03T06:36:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:08","latency":"81.429µs"} +{"level":"debug","ts":"2023-08-03T06:36:10.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:36:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:13","latency":"85.933µs"} +{"level":"debug","ts":"2023-08-03T06:36:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:13","latency":"84.457µs"} +{"level":"debug","ts":"2023-08-03T06:36:15.802Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:36:18.083Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:18","latency":"122.889µs"} +{"level":"debug","ts":"2023-08-03T06:36:18.083Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:18","latency":"103.128µs"} +{"level":"debug","ts":"2023-08-03T06:36:20.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:23","latency":"90.02µs"} +{"level":"debug","ts":"2023-08-03T06:36:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:23","latency":"102.966µs"} +{"level":"debug","ts":"2023-08-03T06:36:25.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:28","latency":"86.009µs"} +{"level":"debug","ts":"2023-08-03T06:36:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:28","latency":"86.056µs"} +{"level":"debug","ts":"2023-08-03T06:36:30.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:36:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:33","latency":"103.699µs"} +{"level":"debug","ts":"2023-08-03T06:36:33.083Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:33","latency":"254.716µs"} +{"level":"debug","ts":"2023-08-03T06:36:35.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:38","latency":"99.738µs"} +{"level":"debug","ts":"2023-08-03T06:36:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:38","latency":"99.638µs"} +{"level":"debug","ts":"2023-08-03T06:36:40.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:43","latency":"90.334µs"} +{"level":"debug","ts":"2023-08-03T06:36:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:43","latency":"87.375µs"} +{"level":"debug","ts":"2023-08-03T06:36:45.807Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:36:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:48","latency":"86.926µs"} +{"level":"debug","ts":"2023-08-03T06:36:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:48","latency":"74.115µs"} +{"level":"debug","ts":"2023-08-03T06:36:50.807Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:53","latency":"68.996µs"} +{"level":"debug","ts":"2023-08-03T06:36:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:53","latency":"100.147µs"} +{"level":"debug","ts":"2023-08-03T06:36:55.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:36:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:58","latency":"93.397µs"} +{"level":"debug","ts":"2023-08-03T06:36:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:58","latency":"86.975µs"} +{"level":"debug","ts":"2023-08-03T06:37:00.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:37:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:03","latency":"88.961µs"} +{"level":"debug","ts":"2023-08-03T06:37:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:03","latency":"85.622µs"} +{"level":"debug","ts":"2023-08-03T06:37:05.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:08","latency":"77.336µs"} +{"level":"debug","ts":"2023-08-03T06:37:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:08","latency":"95.876µs"} +{"level":"debug","ts":"2023-08-03T06:37:10.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:13","latency":"81.196µs"} +{"level":"debug","ts":"2023-08-03T06:37:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:13","latency":"86.231µs"} +{"level":"debug","ts":"2023-08-03T06:37:15.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:18","latency":"89.522µs"} +{"level":"debug","ts":"2023-08-03T06:37:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:18","latency":"81.431µs"} +{"level":"debug","ts":"2023-08-03T06:37:20.811Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:37:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:23","latency":"93.363µs"} +{"level":"debug","ts":"2023-08-03T06:37:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:23","latency":"120.29µs"} +{"level":"debug","ts":"2023-08-03T06:37:25.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:37:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:28","latency":"70.441µs"} +{"level":"debug","ts":"2023-08-03T06:37:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:28","latency":"93.161µs"} +{"level":"debug","ts":"2023-08-03T06:37:30.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:33","latency":"93.163µs"} +{"level":"debug","ts":"2023-08-03T06:37:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:33","latency":"91.259µs"} +{"level":"debug","ts":"2023-08-03T06:37:35.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:38","latency":"74.744µs"} +{"level":"debug","ts":"2023-08-03T06:37:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:38","latency":"87.874µs"} +{"level":"debug","ts":"2023-08-03T06:37:40.814Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:43","latency":"99.551µs"} +{"level":"debug","ts":"2023-08-03T06:37:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:43","latency":"89.998µs"} +{"level":"debug","ts":"2023-08-03T06:37:45.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:48","latency":"84.672µs"} +{"level":"debug","ts":"2023-08-03T06:37:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:48","latency":"78.467µs"} +{"level":"debug","ts":"2023-08-03T06:37:50.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:53","latency":"104.408µs"} +{"level":"debug","ts":"2023-08-03T06:37:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:53","latency":"84.19µs"} +{"level":"debug","ts":"2023-08-03T06:37:55.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:37:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:58","latency":"109.674µs"} +{"level":"debug","ts":"2023-08-03T06:37:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:58","latency":"110.599µs"} +{"level":"debug","ts":"2023-08-03T06:38:00.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:03","latency":"91.035µs"} +{"level":"debug","ts":"2023-08-03T06:38:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:03","latency":"111.194µs"} +{"level":"debug","ts":"2023-08-03T06:38:05.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:08","latency":"107.618µs"} +{"level":"debug","ts":"2023-08-03T06:38:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:08","latency":"115.171µs"} +{"level":"debug","ts":"2023-08-03T06:38:10.818Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:38:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:13","latency":"91.212µs"} +{"level":"debug","ts":"2023-08-03T06:38:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:13","latency":"154.491µs"} +{"level":"debug","ts":"2023-08-03T06:38:15.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:18","latency":"91.097µs"} +{"level":"debug","ts":"2023-08-03T06:38:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:18","latency":"97.157µs"} +{"level":"debug","ts":"2023-08-03T06:38:20.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:23","latency":"91.365µs"} +{"level":"debug","ts":"2023-08-03T06:38:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:23","latency":"87.972µs"} +{"level":"debug","ts":"2023-08-03T06:38:25.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:28","latency":"92.858µs"} +{"level":"debug","ts":"2023-08-03T06:38:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:28","latency":"92.477µs"} +{"level":"info","ts":"2023-08-03T06:38:30.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} +{"level":"debug","ts":"2023-08-03T06:38:30.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:33","latency":"83.719µs"} +{"level":"debug","ts":"2023-08-03T06:38:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:33","latency":"98.476µs"} +{"level":"debug","ts":"2023-08-03T06:38:35.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:38","latency":"83.924µs"} +{"level":"debug","ts":"2023-08-03T06:38:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:38","latency":"115.55µs"} +{"level":"debug","ts":"2023-08-03T06:38:40.822Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:38:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:43","latency":"91.69µs"} +{"level":"debug","ts":"2023-08-03T06:38:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:43","latency":"75.899µs"} +{"level":"debug","ts":"2023-08-03T06:38:45.823Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:38:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:48","latency":"83.488µs"} +{"level":"debug","ts":"2023-08-03T06:38:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:48","latency":"72.409µs"} +{"level":"debug","ts":"2023-08-03T06:38:50.823Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:38:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:53","latency":"89.699µs"} +{"level":"debug","ts":"2023-08-03T06:38:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:53","latency":"89.627µs"} +{"level":"debug","ts":"2023-08-03T06:38:55.824Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:38:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:58","latency":"94.218µs"} +{"level":"debug","ts":"2023-08-03T06:38:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:58","latency":"121.207µs"} +{"level":"debug","ts":"2023-08-03T06:39:00.824Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:39:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:03","latency":"84.029µs"} +{"level":"debug","ts":"2023-08-03T06:39:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:03","latency":"86.91µs"} +{"level":"debug","ts":"2023-08-03T06:39:05.825Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:08","latency":"93.094µs"} +{"level":"debug","ts":"2023-08-03T06:39:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:08","latency":"108.274µs"} +{"level":"debug","ts":"2023-08-03T06:39:10.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:13","latency":"90.944µs"} +{"level":"debug","ts":"2023-08-03T06:39:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:13","latency":"71.738µs"} +{"level":"debug","ts":"2023-08-03T06:39:15.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:39:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:18","latency":"76.912µs"} +{"level":"debug","ts":"2023-08-03T06:39:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:18","latency":"82.164µs"} +{"level":"debug","ts":"2023-08-03T06:39:20.827Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:23","latency":"84.885µs"} +{"level":"debug","ts":"2023-08-03T06:39:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:23","latency":"84.751µs"} +{"level":"debug","ts":"2023-08-03T06:39:25.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:28","latency":"93.475µs"} +{"level":"debug","ts":"2023-08-03T06:39:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:28","latency":"81.13µs"} +{"level":"debug","ts":"2023-08-03T06:39:30.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:33","latency":"68.379µs"} +{"level":"debug","ts":"2023-08-03T06:39:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:33","latency":"88.764µs"} +{"level":"debug","ts":"2023-08-03T06:39:35.829Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:38","latency":"86.823µs"} +{"level":"debug","ts":"2023-08-03T06:39:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:38","latency":"91.887µs"} +{"level":"debug","ts":"2023-08-03T06:39:40.829Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:39:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:43","latency":"82.281µs"} +{"level":"debug","ts":"2023-08-03T06:39:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:43","latency":"87.739µs"} +{"level":"debug","ts":"2023-08-03T06:39:45.830Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:39:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:48","latency":"79.583µs"} +{"level":"debug","ts":"2023-08-03T06:39:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:48","latency":"122.889µs"} +{"level":"debug","ts":"2023-08-03T06:39:50.831Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:53","latency":"84.724µs"} +{"level":"debug","ts":"2023-08-03T06:39:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:53","latency":"82.892µs"} +{"level":"debug","ts":"2023-08-03T06:39:55.831Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:39:56.935Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:56","latency":"60.928µs"} +{"level":"debug","ts":"2023-08-03T06:39:57.141Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"54.988µs"} +{"level":"debug","ts":"2023-08-03T06:39:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:58","latency":"81.559µs"} +{"level":"debug","ts":"2023-08-03T06:39:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:58","latency":"89.53µs"} +{"level":"debug","ts":"2023-08-03T06:39:59.891Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"1.646434ms"} +{"level":"debug","ts":"2023-08-03T06:40:00.101Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_2ffebf08_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"3.288382ms"} +{"level":"debug","ts":"2023-08-03T06:40:00.312Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_2ffebf08_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"2.888829ms"} +{"level":"debug","ts":"2023-08-03T06:40:00.832Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:40:01.415Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"info","ts":"2023-08-03T06:40:01.415Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} +{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} +{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"info","ts":"2023-08-03T06:40:01.415Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} +{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} +{"level":"info","ts":"2023-08-03T06:40:01.417Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} +{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","duration":890} +{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} +{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} +{"level":"debug","ts":"2023-08-03T06:40:01.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} +{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} +{"level":"debug","ts":"2023-08-03T06:40:01.419Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"bd5acd154fcf09404be928eb881948bf9a3be4bc967e7e2a2e7827f4719910da\\\" \\n\\ntransmitterID = \\\"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_2ffebf08_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_2ffebf08_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:01","latency":"11.189088ms"} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}]} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ragedisco/v1","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3"} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0","streamName":"ragedisco/v1"} +{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:01.422Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","loaded":["12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"numLoaded":1,"queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"found":["12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"ragep2p","_id":"discoveryProtocol","numFound":1,"peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","numQueried":4} +{"level":"info","ts":"2023-08-03T06:40:01.422Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":3,"_id":"OCREndpointV2","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"PeerV2","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"]} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":3,"_id":"OCREndpointV2","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"PeerV2"} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"previousNe":0,"ne":1} +{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":1,"leader":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:02.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:02.489Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:03","latency":"87.544µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:03","latency":"97.64µs"} +{"level":"debug","ts":"2023-08-03T06:40:03.424Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:03.484Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:03.573Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:04.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:05.833Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} +{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"warn","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} +{"level":"warn","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} +{"level":"warn","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} +{"level":"info","ts":"2023-08-03T06:40:05.887Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"out","remoteAddr":"10.14.91.55:6690","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:05.888Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamName":"ragedisco/v1","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0"} +{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.620Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:06.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}"} +{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","in":"processAnnouncement"} +{"level":"debug","ts":"2023-08-03T06:40:07.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.799Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:07.799Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:08","latency":"101.263µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:08","latency":"76.539µs"} +{"level":"debug","ts":"2023-08-03T06:40:08.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:08.859Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.783Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.21.114:56696","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","direction":"in"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce"} +{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"debug","ts":"2023-08-03T06:40:09.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:09.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.833Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:10.841Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.842Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:10.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.913Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","direction":"in","remoteAddr":"10.14.3.137:54654"} +{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p"} +{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3","streamName":"ragedisco/v1"} +{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"newEpoch":2,"candidateEpochs":[2,2,3]} +{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":1,"leader":1,"e":1,"l":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:11.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.001441334} +{"level":"debug","ts":"2023-08-03T06:40:11.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.0015665} +{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":2,"leader":0,"round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:11.980Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:11.981Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","initialRound":true,"result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deviation":true,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1},"unfulfilledRequest":true,"alphaReportInfinite":false,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":2,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"sender":2,"epoch":2,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"reportEpochRound":{"Epoch":2,"Round":1},"deviates":true,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:12.951Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.951Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044811}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000662151} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.00067737} +{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0,"round":2,"observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:13.065Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.066Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:13","latency":"80.505µs"} +{"level":"debug","ts":"2023-08-03T06:40:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:13","latency":"72.907µs"} +{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"initialRound":false,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:40:11.000Z","alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"sender":0,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"sender":3,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":2,"Round":1},"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:13.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} +{"level":"info","ts":"2023-08-03T06:40:13.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.63.201:6690","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","direction":"out"} +{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","streamName":"ragedisco/v1","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3"} +{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50"} +{"level":"debug","ts":"2023-08-03T06:40:13.622Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":2,"sender":1,"msg":{"Epoch":1,"Round":1,"Query":null},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:13.622Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:13.622Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000707713} +{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000756408} +{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"leader":0} +{"level":"debug","ts":"2023-08-03T06:40:14.007Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:14.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:14.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","unfulfilledRequest":false,"alphaReportPPB":0,"deltaC":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3},"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","result":true} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":2,"round":3,"sender":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"epoch":2,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","contractEpochRound":{"Epoch":2,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":2},"deviates":true} +{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0,"round":4} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"newEpoch":3,"candidateEpochs":[3,3,3],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"e":2,"l":0,"epoch":2,"leader":0} +{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":3} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000734057} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000767308} +{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:15.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044813}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:15.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:15.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:13.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"deviation":true,"deltaC":0,"unfulfilledRequest":false,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":3,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":3,"round":1,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deviates":true,"result":true,"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":0,"epoch":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:15.834Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} +{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000730333} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000777891} +{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:16.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:16.419Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} +{"level":"info","ts":"2023-08-03T06:40:16.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","result":true,"alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"deviation":true} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":3,"epoch":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":2,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.00067501} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.0006993} +{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:17.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.256Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:17.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"deviation":true,"result":true,"unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":3,"leader":1,"round":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}}} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"sender":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"deviates":true,"reportEpochRound":{"Epoch":3,"Round":3},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":3,"Round":2}} +{"level":"info","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3} +{"level":"info","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":3,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"f413dd1c-0383-45db-a73c-80327ed1d76f","signature":"a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy"} +{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy","id":"f413dd1c-0383-45db-a73c-80327ed1d76f"} +{"level":"debug","ts":"2023-08-03T06:40:17.818Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"f413dd1c-0383-45db-a73c-80327ed1d76f","signature":"a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy"} +{"level":"debug","ts":"2023-08-03T06:40:17.818Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"f413dd1c-0383-45db-a73c-80327ed1d76f","signatures":["a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy"]} +{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":4,"messageRound":4,"roundMax":3} +{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"newEpoch":4,"candidateEpochs":[4,4,4],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"e":3,"l":1,"oid":3} +{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000639941} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000680808} +{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:18","latency":"73.983µs"} +{"level":"debug","ts":"2023-08-03T06:40:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:18","latency":"103.239µs"} +{"level":"debug","ts":"2023-08-03T06:40:18.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.311Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:18.312Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:18.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportPPB":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z"} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"epoch":4,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"deviates":true,"result":true,"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"epoch":4,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"sender":0,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000741505} +{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000736078} +{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:19.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.293Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044817}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:19.335Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:19.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"result":true,"initialRound":false,"alphaReportInfinite":false,"deviation":true,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaC":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:40:17.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":2},"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":4,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":3,"epoch":4,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":4,"Round":2,"H":[227,57,141,191,243,159,108,42,91,240,130,82,173,222,213,122,27,228,168,157,52,71,161,87,8,106,134,129,242,145,113,65],"AttestedReport":{"Report":"ZMtL0gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"kcGwJXWpR5Mz62YXjS3uTL5R0RpyrG3Kie73vzL0UsAL+RJqAkF2+VVCp+ioeQm0W3klhOq2wy3pIQaMcNSAGwE=","Signer":1},{"Signature":"X83nLJ9mOnIhxpODNMp8SVQt2xuHC6mERVsxuGnraeVtWtlGiUfeqGNYw13NLpKjZIDTlzoobF5iBe0xbjGSVAA=","Signer":3}]}},"oid":3} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"deviates":true,"result":true,"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"latestAcceptedEpochRound":{"Epoch":4,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":4,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"sender":2,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000660776} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000703755} +{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observation":"CNOXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044818}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.350Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:20.351Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:20.470Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:18.000Z","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":3},"unfulfilledRequest":false,"alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":4,"round":3,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":4,"Round":3,"H":[181,36,61,27,174,108,246,113,97,41,205,33,84,28,183,101,35,106,8,1,125,130,59,188,121,223,60,71,111,23,153,24],"AttestedReport":{"Report":"ZMtL0wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"oR2KORlVQ0wBVdEB+7t4EOfHRkfHeS4lhKdYobI85TtgFxlp/gseoIp6T5DkymCZc9WfEnZUDNNlkPwN1vNvqwA=","Signer":1},{"Signature":"fyHaVozEk0cFxbTE93pMb6UIaS3U1B2tcJ3eTP14jhw/XEpCHIY33MMgNbad5njRlfvuJ39BiZW2yB+U+nNTuQA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"result":true,"contractEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"round":3,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":4,"round":3,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:20.835Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:40:20.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","candidateEpochs":[5,5,5],"newEpoch":5,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"e":4,"l":1} +{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000636792} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000690017} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CNSXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"msgRound":1,"round":1,"sender":3,"msgEpoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","requiredObservationCount":3,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"observationCount":1} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":1,"msgEpoch":5,"msgRound":1} +{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"observationCount":2,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","msgRound":1,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"sender":2,"msgEpoch":5} +{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"oid":3} +{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"msgRound":1,"round":1,"sender":0,"msgEpoch":5} +{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:21.358Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.358Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044819}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:21.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:21.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaC":0,"alphaReportInfinite":false,"result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":1},"lastTransmissionTimestamp":"2023-08-03T06:40:19.000Z","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"deviation":true,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"initialRound":false} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":3,"epoch":5,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":5,"Round":1,"H":[243,61,202,42,224,181,183,218,241,208,244,117,159,59,51,174,3,98,247,140,142,168,220,234,218,40,96,148,2,253,44,62],"AttestedReport":{"Report":"ZMtL1AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"30Yu94e8+c++7s+1YsWJScUoofdaBDTVTowQitmiHqtp5MyTgYg6J6TrPiHOgZynpm4d4qfis/oIwz1YmZreCgA=","Signer":1},{"Signature":"YXb+BzoK0JnxcYDU6xA3aK2nPBFDNg6U1GnrRNBiQOZhiOA4vVCvZfcw96LcimOFcOP8MQSpeSPoB6pml7nKQQE=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"contractEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":0} +{"level":"debug","ts":"2023-08-03T06:40:21.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:21.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000704509} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000712494} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"observation":"CNWXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","msgEpoch":5,"msgRound":2,"round":2,"sender":3,"oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observationCount":1,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"requiredObservationCount":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","msgEpoch":5,"msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"requiredObservationCount":3,"round":2,"observationCount":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"msgRound":2,"round":2,"sender":2,"msgEpoch":5} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"observationCount":3,"requiredObservationCount":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} +{"level":"debug","ts":"2023-08-03T06:40:21.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":0,"msgEpoch":5,"msgRound":2} +{"level":"debug","ts":"2023-08-03T06:40:21.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:22.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044820}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:22.439Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:22.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaC":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","result":true,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:20.000Z","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":2},"initialRound":false,"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":5,"Round":2,"H":[9,24,59,213,110,59,8,68,170,72,213,193,39,135,1,138,175,186,31,36,28,209,54,71,6,22,178,46,143,74,83,0],"AttestedReport":{"Report":"ZMtL1QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZsWULiQqkHjwQ3dXgncTf1PEh8Ot54ynIUzLeVM+7d9Kj2/bmoBUrga8cCP43umZzPNkCxmFCTZasTH73ANwNgE=","Signer":1},{"Signature":"3WIB/MoU8M9fTdnAPrs/A9AupqaHeexO7B/T3bweu2oTIzPlQPSSVu6QkLxvdXWjKQOgTUtyNlwgoemez7S9bQA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","currentPhase":"final","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"result":true,"reportEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false} +{"level":"info","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"epoch":5,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":1,"epoch":5,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"} +{"level":"debug","ts":"2023-08-03T06:40:22.475Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e"} +{"level":"debug","ts":"2023-08-03T06:40:22.566Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"} +{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000664868} +{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.00071252} +{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observation":"CNaXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"sender":3,"msgEpoch":5,"msgRound":3,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"requiredObservationCount":3,"round":3,"observationCount":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","msgRound":3,"round":3,"sender":1,"msgEpoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"round":3,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"sender":0,"msgEpoch":5,"msgRound":3,"oid":3,"epoch":5} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":3,"observationCount":3,"requiredObservationCount":3} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"msgEpoch":5,"msgRound":3,"round":3,"sender":2,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:23","latency":"82.271µs"} +{"level":"debug","ts":"2023-08-03T06:40:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:23","latency":"82.143µs"} +{"level":"debug","ts":"2023-08-03T06:40:23.094Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"} +{"level":"debug","ts":"2023-08-03T06:40:23.094Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e","signatures":["4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"]} +{"level":"debug","ts":"2023-08-03T06:40:23.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:23.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044821}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:23.451Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:23.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:23.473Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:40:21.000Z","alphaReportInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":3},"unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deviation":true,"deltaC":0,"deltaCTimeout":true,"result":true} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":3,"currentPhase":"final"} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"currentPhase":"final","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":5,"Round":3,"H":[206,10,102,211,94,46,53,54,160,208,1,190,82,9,82,0,67,232,24,141,115,142,233,76,161,174,149,241,139,68,91,22],"AttestedReport":{"Report":"ZMtL1gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"wCwtYwuDAQL1SuYSl5Gx/6NIBoMoicnfTXUn0Jc1cXtc5zmEa/AGJt+PgSibS1uV//fZx5SxGxhFviKOiV5qggE=","Signer":1},{"Signature":"QjmlxdpCkNOgnF2Ho2LRsrplpzHGN8G1cuOpRrccg7ZEYfqk6Npid3xt8OaT71xsjIuczdBBogwTfyucV6PO2AA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":3,"epoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","latestAcceptedEpochRound":{"Epoch":5,"Round":2},"reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":5,"Round":3},"contractEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0,"deviates":true} +{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":3,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":3,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:23.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","roundMax":3,"oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":4,"messageRound":4} +{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"newEpoch":6,"candidateEpochs":[6,6,6]} +{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"e":5,"l":3} +{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000628849} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000749066} +{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":6,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CNeXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} +{"level":"debug","ts":"2023-08-03T06:40:24.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:24.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044822}","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:24.475Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":1},"deltaCTimeout":true,"deviation":true,"alphaReportInfinite":false,"deltaC":0,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","result":true,"alphaReportPPB":0} +{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"leader":0,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"round":1,"epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":6,"Round":1,"H":[244,15,111,137,250,135,131,135,57,90,142,230,115,72,200,82,209,144,198,249,55,197,244,193,147,100,71,25,50,26,111,154],"AttestedReport":{"Report":"ZMtL1wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"knjjpTh9l8tAEyTuDt+dkqgTNuqEKHogYxpdJlXDn4Fhs7AL+CU2wAvtRCpiFp38YoiIrahj+WRQRrHt7FiDzgE=","Signer":0},{"Signature":"KWlkh7TOU0KwcC9sSc6opF+P0H6IIbVGvO2L4lgI2LFmTydggb7Crmx23p7dQ03T3TCZIDx5kOyiRe8tC55jSwE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":5,"Round":2},"result":true,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":6,"Round":1}} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"sender":2} +{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"sender":1,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:40:24.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:24.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000748644} +{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.001050142} +{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"leader":0,"round":2,"observation":"CNiXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"info","ts":"2023-08-03T06:40:25.474Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":2},"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":false,"result":true,"alphaReportPPB":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"leader":0,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"epoch":6} +{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":6,"Round":2,"H":[38,148,213,49,227,64,117,63,131,130,132,239,183,36,175,40,250,10,156,19,9,56,1,120,11,158,42,227,38,215,82,129],"AttestedReport":{"Report":"ZMtL2AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"S8ReeuNDPqeylRH8qo7M+W/JowNfCQiXNQpfNDCQUJBjX3XnBj0hfXrvaPru4uV0+YbBJbQ/jlbZWW0lv6lD7gE=","Signer":0},{"Signature":"K+YE4vsQyAFd3jxGBb8NnPNCVDqEGqa7u5ThUpnWRpdrQoU3ETZPTNQ8rlyOIYbLsV5A2hYIyZAc2Uq9JTgC8wE=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"round":2,"sender":0,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"reportEpochRound":{"Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","latestAcceptedEpochRound":{"Epoch":6,"Round":1},"deviates":true,"contractEpochRound":{"Epoch":5,"Round":3}} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":6,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:25.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044823}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.512Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.513Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:25.835Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} +{"level":"debug","ts":"2023-08-03T06:40:25.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:25.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:25.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000792154} +{"level":"debug","ts":"2023-08-03T06:40:25.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000791896} +{"level":"debug","ts":"2023-08-03T06:40:25.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":6,"leader":0,"round":3,"observation":"CNmXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"info","ts":"2023-08-03T06:40:26.475Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaReportInfinite":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:23.000Z","result":true,"unfulfilledRequest":false,"initialRound":false,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":3},"alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"leader":0,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":6,"Round":3,"H":[82,253,131,20,85,148,188,36,241,216,247,49,2,170,75,136,61,243,104,162,34,98,30,200,213,98,88,150,160,203,161,84],"AttestedReport":{"Report":"ZMtL2QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"NAicaAGSR8AHFiF99I/6FgEdTGzdiSGs7jheyWW+PPwmKSKIeXH21A6EpmzNB7u+ODiPzR2wC0GbRcyXjc0kOQE=","Signer":0},{"Signature":"UuWxT4lpeWVm+IczNcOr9fnPgboKuaqzploLQAbkUBRj+w5Z6OHJYaJf5bEwzL4KMcenYh2jbDlL8jSrUL7BRQA=","Signer":2}]}}} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":0,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","result":true,"reportEpochRound":{"Epoch":6,"Round":3},"latestAcceptedEpochRound":{"Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:26.477Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:26.477Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} +{"level":"debug","ts":"2023-08-03T06:40:26.477Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"6451db72-3a72-46fa-8442-0c9591da4369","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"} +{"level":"debug","ts":"2023-08-03T06:40:26.477Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc","id":"6451db72-3a72-46fa-8442-0c9591da4369"} +{"level":"debug","ts":"2023-08-03T06:40:26.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:26.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044824}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:26.535Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:26.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:26.695Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"} +{"level":"debug","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"leader":0,"round":4} +{"level":"debug","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","newEpoch":7,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"candidateEpochs":[7,7,7]} +{"level":"info","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","l":0,"oid":3,"epoch":6,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":6} +{"level":"info","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"leader":1} +{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000694689} +{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000731119} +{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"round":1,"observation":"CNqXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:40:27.240Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"6451db72-3a72-46fa-8442-0c9591da4369","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"} +{"level":"debug","ts":"2023-08-03T06:40:27.241Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"6451db72-3a72-46fa-8442-0c9591da4369","signatures":["5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"]} +{"level":"info","ts":"2023-08-03T06:40:27.477Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":7,"Round":1},"alphaReportInfinite":false,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:40:24.000Z","unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"deltaC":0} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"leader":1,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":7,"round":1,"sender":3} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"sender":1,"epoch":7,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","event":{"Epoch":7,"Round":1,"H":[56,221,132,73,59,212,227,223,30,232,58,85,172,13,45,89,199,184,106,108,236,70,8,83,11,66,50,246,135,183,12,178],"AttestedReport":{"Report":"ZMtL2gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"K8Jg616KS6+Xo5r+CT37ZVoTtoPCvZng1JzxzUwxMWtlrjpK1dxsDdSl8kkjisUXlXi/yADgyCXkuTBns4NfAAE=","Signer":0},{"Signature":"Vb9MF2XyZuEciZ6DBpROrVPr8iZS9T2aUmLe1BvtvKds95vF3+3EBiH+ZbLADrfJm/7oYrnuNXLa///3OBMHOwA=","Signer":1}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportEpochRound":{"Epoch":7,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","latestAcceptedEpochRound":{"Epoch":6,"Round":3},"result":true,"deviates":true,"contractEpochRound":{"Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} +{"level":"info","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"round":1,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"info","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"round":1} +{"level":"debug","ts":"2023-08-03T06:40:27.483Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"fd689a59-930d-4274-b009-80f72d3b1fe1","signature":"JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf"} +{"level":"debug","ts":"2023-08-03T06:40:27.483Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf","id":"fd689a59-930d-4274-b009-80f72d3b1fe1"} +{"level":"debug","ts":"2023-08-03T06:40:27.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:27.614Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044825}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:27.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:27.621Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:27.778Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"fd689a59-930d-4274-b009-80f72d3b1fe1","signature":"JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf"} +{"level":"debug","ts":"2023-08-03T06:40:27.778Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"fd689a59-930d-4274-b009-80f72d3b1fe1","signatures":["JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf"]} +{"level":"debug","ts":"2023-08-03T06:40:27.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} +{"level":"debug","ts":"2023-08-03T06:40:27.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} +{"level":"debug","ts":"2023-08-03T06:40:27.975Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000643248} +{"level":"debug","ts":"2023-08-03T06:40:27.975Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.00064988} +{"level":"debug","ts":"2023-08-03T06:40:27.975Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"leader":1,"round":2,"observation":"CNuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:28","latency":"83.16µs"} +{"level":"debug","ts":"2023-08-03T06:40:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:28","latency":"66.081µs"} +{"level":"info","ts":"2023-08-03T06:40:28.477Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","lastTransmissionTimestamp":"2023-08-03T06:40:25.000Z","alphaReportInfinite":false,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":7,"Round":2},"initialRound":false,"alphaReportPPB":0,"deviation":true,"result":true,"deltaC":0,"reportingPlugin":"NumericalMedian"} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":7,"round":2,"sender":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":7,"round":2,"sender":1} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":7,"Round":2,"H":[245,210,210,199,175,77,41,38,11,121,154,193,87,99,89,121,75,27,78,160,252,166,181,69,243,100,80,131,61,100,147,54],"AttestedReport":{"Report":"ZMtL2wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZYXEUZXqvDSnRrxY0R6XApyzqlOyvyU6b/Y+G57hT041UccLvTptPKDJFSrfscnpDHtXTvRWRnM+VGdgbDtb8gE=","Signer":1},{"Signature":"Brn4kfRxPWdKI3wt7dJQyPthSgmESCfY2+6MP2oEgDJyxdFAzohEF2+qs18opYyI88MKEXHvRwffG4AnSJZh8gA=","Signer":3}]}}} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true} +{"level":"info","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"round":2} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"round":2,"sender":0} +{"level":"info","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} +{"level":"debug","ts":"2023-08-03T06:40:28.480Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":2,"epoch":7} +{"level":"debug","ts":"2023-08-03T06:40:28.480Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"e93f1362-cb60-4ee7-bd0b-693149f7a1df","signature":"bDGT85rVPXj3dBYdZ3xYAKGCb62heN8CBGZhKHEtSAheM3hyNRsJESvPcipxgSQgt85nKActBjUXdg9C9AqyGTn"} +{"level":"debug","ts":"2023-08-03T06:40:28.480Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"bDGT85rVPXj3dBYdZ3xYAKGCb62heN8CBGZhKHEtSAheM3hyNRsJESvPcipxgSQgt85nKActBjUXdg9C9AqyGTn","id":"e93f1362-cb60-4ee7-bd0b-693149f7a1df"} +{"level":"debug","ts":"2023-08-03T06:40:28.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:28.633Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044826}","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:28.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} +{"level":"debug","ts":"2023-08-03T06:40:28.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log new file mode 100644 index 000000000..6d042a066 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log @@ -0,0 +1,244 @@ +6:33AM INF Starting external adapter Port=:6060 +6:33AM INF Index Endpoint=/ +6:33AM INF Index Endpoint=/ +6:33AM INF Index Endpoint=/ +6:33AM INF Index Endpoint=/ +6:33AM INF Index Endpoint=/ +6:33AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:34AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:35AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:36AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:37AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:38AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:39AM INF Index Endpoint=/ +6:40AM INF Index Endpoint=/ +6:40AM INF Index Endpoint=/ +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Index Endpoint=/ +6:40AM INF Index Endpoint=/ +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Index Endpoint=/ +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Index Endpoint=/ +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Index Endpoint=/ +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 +6:40AM INF Five Endpoint=/five Result=5 diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log new file mode 100644 index 000000000..40b6aaf93 --- /dev/null +++ b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log @@ -0,0 +1,1801 @@ +Ledger location: test-ledger +Log: test-ledger/validator.log +Initializing... +Waiting for fees to stabilize 1... +Waiting for fees to stabilize 2... +Connecting... +Identity: 6dJ2tBjAW2CVGrJMa4H3MNTLftm3dLDuPSPet9mbF6Zj +Genesis Hash: 59rFUDYE1gzyEbtdraEWpMSqEiVmpUQZpbnSMWYi2h4s +Version: 1.13.3 +Shred Version: 30490 +Gossip Address: 127.0.0.1:1024 +TPU Address: 127.0.0.1:1027 +JSON RPC URL: http://127.0.0.1:8899 +00:00:02 | Processed Slot: 1 | Confirmed Slot: 1 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 0 | ◎500.000000000 +00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 +00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 +00:00:02 | Processed Slot: 3 | Confirmed Slot: 3 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 2 | ◎499.999990000 +00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 +00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 +00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 +00:00:03 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 +00:00:04 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 +00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 +00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 +00:00:04 | Processed Slot: 8 | Confirmed Slot: 8 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 7 | ◎499.999965000 +00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 +00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 +00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 +00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 +00:00:06 | Processed Slot: 11 | Confirmed Slot: 11 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999950000 +00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 +00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 +00:00:06 | Processed Slot: 13 | Confirmed Slot: 13 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 12 | ◎499.999940000 +00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 +00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 +00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 +00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 +00:00:08 | Processed Slot: 16 | Confirmed Slot: 16 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 15 | ◎499.999925000 +00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 +00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 +00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 +00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 +00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 +00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 +00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 +00:00:10 | Processed Slot: 21 | Confirmed Slot: 21 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 20 | ◎499.999900000 +00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 +00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 +00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 +00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 +00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 +00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 +00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 +00:00:12 | Processed Slot: 26 | Confirmed Slot: 26 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 25 | ◎499.999875000 +00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 +00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 +00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 +00:00:13 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 +00:00:13 | Processed Slot: 29 | Confirmed Slot: 29 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 28 | ◎499.999860000 +00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 +00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 +00:00:14 | Processed Slot: 31 | Confirmed Slot: 31 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 30 | ◎499.999850000 +00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 +00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 +00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 +00:00:15 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 +00:00:15 | Processed Slot: 34 | Confirmed Slot: 34 | Finalized Slot: 2 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 33 | ◎499.999835000 +00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 +00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 +00:00:16 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 +00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 +00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 +00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 +00:00:17 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 +00:00:17 | Processed Slot: 39 | Confirmed Slot: 39 | Finalized Slot: 7 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 38 | ◎499.999810000 +00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 +00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 +00:00:18 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 +00:00:18 | Processed Slot: 42 | Confirmed Slot: 41 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999800000 +00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 +00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 +00:00:19 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 +00:00:19 | Processed Slot: 44 | Confirmed Slot: 44 | Finalized Slot: 12 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 43 | ◎499.999785000 +00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 +00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 +00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 +00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 +00:00:20 | Processed Slot: 47 | Confirmed Slot: 47 | Finalized Slot: 15 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 46 | ◎499.999770000 +00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 +00:00:21 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 +00:00:21 | Processed Slot: 49 | Confirmed Slot: 49 | Finalized Slot: 17 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 48 | ◎499.999760000 +00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 +00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 +00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 +00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 +00:00:22 | Processed Slot: 52 | Confirmed Slot: 52 | Finalized Slot: 20 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 51 | ◎499.999745000 +00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 +00:00:23 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 +00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 +00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 +00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 +00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 +00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 +00:00:24 | Processed Slot: 57 | Confirmed Slot: 57 | Finalized Slot: 25 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 56 | ◎499.999720000 +00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 +00:00:25 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 +00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 +00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 +00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 +00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 +00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 +00:00:26 | Processed Slot: 62 | Confirmed Slot: 62 | Finalized Slot: 30 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 61 | ◎499.999695000 +00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 +00:00:27 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 +00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 +00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 +00:00:27 | Processed Slot: 65 | Confirmed Slot: 65 | Finalized Slot: 33 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 64 | ◎499.999680000 +00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 +00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 +00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 +00:00:28 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 +00:00:29 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 +00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 +00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 +00:00:29 | Processed Slot: 70 | Confirmed Slot: 70 | Finalized Slot: 38 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 69 | ◎499.999655000 +00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 +00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 +00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 +00:00:30 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 +00:00:31 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 +00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 +00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 +00:00:31 | Processed Slot: 75 | Confirmed Slot: 75 | Finalized Slot: 43 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 74 | ◎499.999630000 +00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 +00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 +00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 +00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 +00:00:33 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 +00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 +00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 +00:00:33 | Processed Slot: 80 | Confirmed Slot: 80 | Finalized Slot: 48 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 79 | ◎499.999605000 +00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 +00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 +00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 +00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 +00:00:35 | Processed Slot: 83 | Confirmed Slot: 83 | Finalized Slot: 51 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 82 | ◎499.999590000 +00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 +00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 +00:00:35 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 +00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 +00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 +00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 +00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 +00:00:37 | Processed Slot: 88 | Confirmed Slot: 88 | Finalized Slot: 56 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 87 | ◎499.999565000 +00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 +00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 +00:00:37 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 +00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 +00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 +00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 +00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 +00:00:39 | Processed Slot: 93 | Confirmed Slot: 93 | Finalized Slot: 61 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 92 | ◎499.999540000 +00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 +00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 +00:00:39 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 +00:00:40 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 +00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 +00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 +00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 +00:00:41 | Processed Slot: 98 | Confirmed Slot: 98 | Finalized Slot: 66 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 97 | ◎499.999515000 +00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 +00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 +00:00:41 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 +00:00:42 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 +00:00:42 | Processed Slot: 101 | Confirmed Slot: 101 | Finalized Slot: 69 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 100 | ◎499.999500000 +00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 +00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 +00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 +00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 +00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 +00:00:43 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 +00:00:44 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 +00:00:44 | Processed Slot: 106 | Confirmed Slot: 106 | Finalized Slot: 74 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 105 | ◎499.999475000 +00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 +00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 +00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 +00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 +00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 +00:00:45 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 +00:00:46 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 +00:00:46 | Processed Slot: 111 | Confirmed Slot: 111 | Finalized Slot: 79 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 110 | ◎499.999450000 +00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 +00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 +00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 +00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 +00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 +00:00:47 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 +00:00:48 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 +00:00:48 | Processed Slot: 116 | Confirmed Slot: 116 | Finalized Slot: 84 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 115 | ◎499.999425000 +00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 +00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 +00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 +00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 +00:00:49 | Processed Slot: 119 | Confirmed Slot: 119 | Finalized Slot: 87 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 118 | ◎499.999410000 +00:00:49 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 +00:00:50 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 +00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 +00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 +00:00:51 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 +00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 +00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 +00:00:51 | Processed Slot: 124 | Confirmed Slot: 124 | Finalized Slot: 92 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 123 | ◎499.999385000 +00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 +00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 +00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 +00:00:52 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 +00:00:53 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 +00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 +00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 +00:00:53 | Processed Slot: 129 | Confirmed Slot: 129 | Finalized Slot: 97 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 128 | ◎499.999360000 +00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 +00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 +00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 +00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 +00:00:55 | Processed Slot: 132 | Confirmed Slot: 132 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999345000 +00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 +00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 +00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 133 | ◎499.999335000 +00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 +00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 +00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 +00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 +00:00:57 | Processed Slot: 137 | Confirmed Slot: 137 | Finalized Slot: 105 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 136 | ◎499.999320000 +00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 +00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 +00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 138 | ◎499.999310000 +00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999305000 +00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999305000 +00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999300000 +00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999300000 +00:00:59 | Processed Slot: 142 | Confirmed Slot: 142 | Finalized Slot: 110 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 141 | ◎499.999295000 +00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999290000 +00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999290000 +00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999285000 +00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999280000 +00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999280000 +00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999275000 +00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999275000 +00:01:01 | Processed Slot: 147 | Confirmed Slot: 147 | Finalized Slot: 115 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999270000 +00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999265000 +00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999265000 +00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999260000 +00:01:02 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999260000 +00:01:02 | Processed Slot: 150 | Confirmed Slot: 150 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999255000 +00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999250000 +00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999250000 +00:01:03 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999247500 +00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999247500 +00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999247500 +00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 +00:01:04 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 +00:01:04 | Processed Slot: 155 | Confirmed Slot: 155 | Finalized Slot: 123 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 158 | ◎499.999240000 +00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 +00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 +00:01:05 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 +00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 +00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 +00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 +00:01:06 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 +00:01:06 | Processed Slot: 160 | Confirmed Slot: 160 | Finalized Slot: 128 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 163 | ◎499.999215000 +00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 +00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 +00:01:07 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 +00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 +00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 +00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 +00:01:08 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 +00:01:08 | Processed Slot: 165 | Confirmed Slot: 165 | Finalized Slot: 133 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 168 | ◎499.999190000 +00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 +00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 +00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 +00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 +00:01:09 | Processed Slot: 168 | Confirmed Slot: 168 | Finalized Slot: 136 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 171 | ◎499.999175000 +00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 +00:01:10 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 +00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 +00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 +00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 +00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 +00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 +00:01:11 | Processed Slot: 173 | Confirmed Slot: 173 | Finalized Slot: 141 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 176 | ◎499.999150000 +00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 +00:01:12 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 +00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 +00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 +00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 +00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 +00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 +00:01:13 | Processed Slot: 178 | Confirmed Slot: 178 | Finalized Slot: 146 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 181 | ◎499.999125000 +00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 +00:01:14 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 +00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 +00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 +00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 +00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 +00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 +00:01:15 | Processed Slot: 183 | Confirmed Slot: 183 | Finalized Slot: 151 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 186 | ◎499.999100000 +00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 +00:01:16 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 +00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 +00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 +00:01:16 | Processed Slot: 186 | Confirmed Slot: 186 | Finalized Slot: 154 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 189 | ◎499.999085000 +00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 +00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 +00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 +00:01:17 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 +00:01:18 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 +00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 +00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 +00:01:18 | Processed Slot: 191 | Confirmed Slot: 191 | Finalized Slot: 159 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 194 | ◎499.999060000 +00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 +00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 +00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 +00:01:19 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 +00:01:20 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 +00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 +00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 +00:01:20 | Processed Slot: 196 | Confirmed Slot: 196 | Finalized Slot: 164 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 199 | ◎499.999035000 +00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 +00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 +00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 +00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 +00:01:22 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 +00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 +00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 +00:01:22 | Processed Slot: 201 | Confirmed Slot: 201 | Finalized Slot: 169 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 204 | ◎499.999010000 +00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 +00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 +00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 +00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 +00:01:24 | Processed Slot: 204 | Confirmed Slot: 204 | Finalized Slot: 172 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 207 | ◎499.998995000 +00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 +00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 +00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 +00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 +00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 +00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 +00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 +00:01:26 | Processed Slot: 209 | Confirmed Slot: 209 | Finalized Slot: 177 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 212 | ◎499.998970000 +00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 +00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 +00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 +00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 +00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 +00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 +00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 +00:01:28 | Processed Slot: 214 | Confirmed Slot: 214 | Finalized Slot: 182 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 217 | ◎499.998945000 +00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 +00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 +00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 +00:01:29 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 +00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 +00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 +00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 +00:01:30 | Processed Slot: 219 | Confirmed Slot: 219 | Finalized Slot: 187 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 222 | ◎499.998920000 +00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 +00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 +00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 +00:01:31 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 +00:01:31 | Processed Slot: 222 | Confirmed Slot: 222 | Finalized Slot: 190 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 225 | ◎499.998905000 +00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 +00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 +00:01:32 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 +00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 +00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 +00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 +00:01:33 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 +00:01:33 | Processed Slot: 227 | Confirmed Slot: 227 | Finalized Slot: 195 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 230 | ◎499.998880000 +00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 +00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 +00:01:34 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 +00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 +00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 +00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 +00:01:35 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 +00:01:35 | Processed Slot: 232 | Confirmed Slot: 232 | Finalized Slot: 200 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 235 | ◎499.998855000 +00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 +00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 +00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 +00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 +00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 +00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 +00:01:37 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 +00:01:37 | Processed Slot: 237 | Confirmed Slot: 237 | Finalized Slot: 205 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 243 | ◎499.998845000 +00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998840000 +00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998840000 +00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998835000 +00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998835000 +00:01:38 | Processed Slot: 240 | Confirmed Slot: 240 | Finalized Slot: 208 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998830000 +00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998825000 +00:01:39 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998825000 +00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 248 | ◎499.998820000 +00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998815000 +00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998815000 +00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998810000 +00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998810000 +00:01:40 | Processed Slot: 245 | Confirmed Slot: 245 | Finalized Slot: 213 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998805000 +00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998800000 +00:01:41 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998800000 +00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 253 | ◎499.998795000 +00:01:41 | Processed Slot: 248 | Confirmed Slot: 247 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998790000 +00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998790000 +00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998785000 +00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998785000 +00:01:42 | Processed Slot: 250 | Confirmed Slot: 250 | Finalized Slot: 218 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998780000 +00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998775000 +00:01:43 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998775000 +00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998770000 +00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998770000 +00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998765000 +00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998760000 +00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998760000 +00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 261 | ◎499.998755000 +00:01:44 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998750000 +00:01:45 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998750000 +00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998745000 +00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998745000 +00:01:45 | Processed Slot: 258 | Confirmed Slot: 258 | Finalized Slot: 226 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998740000 +00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998735000 +00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998735000 +00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 266 | ◎499.998730000 +00:01:46 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998725000 +00:01:47 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998725000 +00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998720000 +00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998720000 +00:01:47 | Processed Slot: 263 | Confirmed Slot: 263 | Finalized Slot: 231 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998715000 +00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998710000 +00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998710000 +00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 271 | ◎499.998705000 +00:01:48 | Processed Slot: 266 | Confirmed Slot: 265 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998705000 +00:01:49 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998700000 +00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998695000 +00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998695000 +00:01:49 | Processed Slot: 268 | Confirmed Slot: 268 | Finalized Slot: 236 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998690000 +00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998685000 +00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998685000 +00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998845000 +00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998845000 +00:01:51 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.999010000 +00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.999225000 +00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.999225000 +00:01:51 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.999435000 +00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.999615000 +00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.999615000 +00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.999790000 +00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.999790000 +00:01:53 | Processed Slot: 276 | Confirmed Slot: 276 | Finalized Slot: 244 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.999965000 +00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 577 | ◎500.000115000 +00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 577 | ◎500.000115000 +00:01:53 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 606 | ◎500.000250000 +00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 633 | ◎500.000375000 +00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 633 | ◎500.000375000 +00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 665 | ◎500.000525000 +00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 665 | ◎500.000525000 +00:01:55 | Processed Slot: 281 | Confirmed Slot: 281 | Finalized Slot: 249 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 701 | ◎500.000695000 +00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 734 | ◎500.000850000 +00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 734 | ◎500.000850000 +00:01:55 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 764 | ◎500.000990000 +00:01:56 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 764 | ◎500.000990000 +00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 783 | ◎500.001075000 +00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 784 | ◎500.001070000 +00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 784 | ◎500.001070000 +00:01:57 | Processed Slot: 286 | Confirmed Slot: 286 | Finalized Slot: 254 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 790 | ◎500.001090000 +00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 801 | ◎500.001135000 +00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 801 | ◎500.001135000 +00:01:57 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 805 | ◎500.001145000 +00:01:58 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 805 | ◎500.001145000 +00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 813 | ◎500.001175000 +00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 823 | ◎500.001215000 +00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 823 | ◎500.001215000 +00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 830 | ◎500.001240000 +00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 831 | ◎500.001235000 +00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 831 | ◎500.001235000 +00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 832 | ◎500.001230000 +00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 832 | ◎500.001230000 +00:02:00 | Processed Slot: 294 | Confirmed Slot: 294 | Finalized Slot: 262 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 834 | ◎500.001230000 +00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 842 | ◎500.001260000 +00:02:01 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 842 | ◎500.001260000 +00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 850 | ◎500.001290000 +00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 855 | ◎500.001305000 +00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 855 | ◎500.001305000 +00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 865 | ◎500.001345000 +00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 865 | ◎500.001345000 +00:02:02 | Processed Slot: 299 | Confirmed Slot: 299 | Finalized Slot: 267 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 872 | ◎500.001370000 +00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 884 | ◎500.001420000 +00:02:03 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 884 | ◎500.001420000 +00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 886 | ◎500.001420000 +00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 886 | ◎500.001420000 +00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 901 | ◎500.001485000 +00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 921 | ◎500.001575000 +00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 921 | ◎500.001575000 +00:02:04 | Processed Slot: 304 | Confirmed Slot: 304 | Finalized Slot: 272 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 939 | ◎500.001655000 +00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 952 | ◎500.001710000 +00:02:05 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 952 | ◎500.001710000 +00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 961 | ◎500.001745000 +00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 961 | ◎500.001745000 +00:02:05 | Processed Slot: 307 | Confirmed Slot: 307 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 975 | ◎500.001805000 +00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 984 | ◎500.001840000 +00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 984 | ◎500.001840000 +00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 986 | ◎500.001840000 +00:02:06 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 987 | ◎500.001835000 +00:02:07 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 987 | ◎500.001835000 +00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 988 | ◎500.001830000 +00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 988 | ◎500.001830000 +00:02:07 | Processed Slot: 312 | Confirmed Slot: 312 | Finalized Slot: 280 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 989 | ◎500.001825000 +00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 990 | ◎500.001820000 +00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 990 | ◎500.001820000 +00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 991 | ◎500.001815000 +00:02:08 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 992 | ◎500.001810000 +00:02:09 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 992 | ◎500.001810000 +00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 993 | ◎500.001805000 +00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 993 | ◎500.001805000 +00:02:09 | Processed Slot: 317 | Confirmed Slot: 317 | Finalized Slot: 285 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 996 | ◎500.001810000 +00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎500.001835000 +00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎500.001835000 +00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎500.001885000 +00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎500.001885000 +00:02:11 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎500.001960000 +00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎500.002040000 +00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎500.002040000 +00:02:11 | Processed Slot: 322 | Confirmed Slot: 322 | Finalized Slot: 290 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎500.002055000 +00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎500.002050000 +00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎500.002050000 +00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎500.002045000 +00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎500.002045000 +00:02:13 | Processed Slot: 325 | Confirmed Slot: 325 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎500.002040000 +00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎500.002035000 +00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎500.002035000 +00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎500.002030000 +00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎500.002025000 +00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎500.002025000 +00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎500.002020000 +00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎500.002020000 +00:02:15 | Processed Slot: 330 | Confirmed Slot: 330 | Finalized Slot: 298 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎500.002015000 +00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎500.002010000 +00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎500.002010000 +00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎500.002025000 +00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎500.002040000 +00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎500.002040000 +00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎500.002055000 +00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎500.002055000 +00:02:17 | Processed Slot: 335 | Confirmed Slot: 335 | Finalized Slot: 303 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎500.002055000 +00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎500.002050000 +00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎500.002050000 +00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎500.002045000 +00:02:18 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎500.002045000 +00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎500.002040000 +00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎500.002035000 +00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎500.002035000 +00:02:19 | Processed Slot: 340 | Confirmed Slot: 340 | Finalized Slot: 308 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎500.002030000 +00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎500.002025000 +00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎500.002025000 +00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎500.002020000 +00:02:20 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎500.002020000 +00:02:20 | Processed Slot: 343 | Confirmed Slot: 343 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎500.002015000 +00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎500.002010000 +00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎500.002010000 +00:02:21 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎500.002045000 +00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎500.002080000 +00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎500.002080000 +00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎500.002100000 +00:02:22 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎500.002100000 +00:02:22 | Processed Slot: 348 | Confirmed Slot: 348 | Finalized Slot: 316 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎500.002095000 +00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎500.002090000 +00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎500.002090000 +00:02:23 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎500.002085000 +00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎500.002080000 +00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎500.002080000 +00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎500.002075000 +00:02:24 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎500.002075000 +00:02:24 | Processed Slot: 353 | Confirmed Slot: 353 | Finalized Slot: 321 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎500.002070000 +00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎500.002065000 +00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎500.002065000 +00:02:25 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎500.002060000 +00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎500.002065000 +00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎500.002065000 +00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎500.002075000 +00:02:26 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎500.002075000 +00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎500.002090000 +00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎500.002095000 +00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎500.002095000 +00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎500.002090000 +00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎500.002090000 +00:02:27 | Processed Slot: 361 | Confirmed Slot: 361 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎500.002085000 +00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎500.002080000 +00:02:28 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎500.002080000 +00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎500.002075000 +00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎500.002070000 +00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎500.002070000 +00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎500.002065000 +00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎500.002065000 +00:02:29 | Processed Slot: 366 | Confirmed Slot: 366 | Finalized Slot: 334 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎500.002060000 +00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎500.002055000 +00:02:30 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎500.002055000 +00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎500.002050000 +00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎500.002065000 +00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎500.002065000 +00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎500.002075000 +00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎500.002075000 +00:02:31 | Processed Slot: 371 | Confirmed Slot: 371 | Finalized Slot: 339 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎500.002070000 +00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎500.002065000 +00:02:32 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎500.002065000 +00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎500.002060000 +00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎500.002055000 +00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎500.002055000 +00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎500.002050000 +00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎500.002050000 +00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎500.002045000 +00:02:33 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎500.002040000 +00:02:34 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎500.002040000 +00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎500.002035000 +00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎500.002035000 +00:02:34 | Processed Slot: 379 | Confirmed Slot: 379 | Finalized Slot: 347 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎500.002030000 +00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎500.002040000 +00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎500.002040000 +00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎500.002065000 +00:02:35 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎500.002060000 +00:02:36 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎500.002060000 +00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎500.002055000 +00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎500.002055000 +00:02:36 | Processed Slot: 384 | Confirmed Slot: 384 | Finalized Slot: 352 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎500.002050000 +00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎500.002045000 +00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎500.002045000 +00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎500.002040000 +00:02:37 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎500.002035000 +00:02:38 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎500.002035000 +00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎500.002030000 +00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎500.002030000 +00:02:38 | Processed Slot: 389 | Confirmed Slot: 389 | Finalized Slot: 357 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎500.002025000 +00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎500.002020000 +00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎500.002020000 +00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎500.002020000 +00:02:39 | Processed Slot: 392 | Confirmed Slot: 391 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎500.002015000 +00:02:40 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎500.002015000 +00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎500.002010000 +00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎500.002010000 +00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎500.002005000 +00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎500.002000000 +00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎500.002000000 +00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎500.001995000 +00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎500.001995000 +00:02:42 | Processed Slot: 397 | Confirmed Slot: 397 | Finalized Slot: 365 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎500.001990000 +00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎500.001985000 +00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎500.001985000 +00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎500.001980000 +00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎500.001975000 +00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎500.001975000 +00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎500.001970000 +00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎500.001970000 +00:02:44 | Processed Slot: 402 | Confirmed Slot: 402 | Finalized Slot: 370 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎500.001965000 +00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎500.001960000 +00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎500.001960000 +00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎500.001955000 +00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎500.001950000 +00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎500.001950000 +00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎500.001945000 +00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎500.001945000 +00:02:46 | Processed Slot: 407 | Confirmed Slot: 407 | Finalized Slot: 375 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎500.001940000 +00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎500.001935000 +00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎500.001935000 +00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎500.001930000 +00:02:47 | Processed Slot: 410 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎500.001930000 +00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎500.001925000 +00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎500.001920000 +00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎500.001920000 +00:02:48 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎500.001915000 +00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎500.001910000 +00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎500.001910000 +00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎500.001905000 +00:02:49 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎500.001905000 +00:02:49 | Processed Slot: 415 | Confirmed Slot: 415 | Finalized Slot: 383 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎500.001900000 +00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎500.001895000 +00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎500.001895000 +00:02:50 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎500.001890000 +00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎500.001885000 +00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎500.001885000 +00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎500.001880000 +00:02:51 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎500.001880000 +00:02:51 | Processed Slot: 420 | Confirmed Slot: 420 | Finalized Slot: 388 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎500.001875000 +00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎500.001870000 +00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎500.001870000 +00:02:52 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎500.001865000 +00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎500.001860000 +00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎500.001860000 +00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎500.001855000 +00:02:53 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎500.001855000 +00:02:53 | Processed Slot: 425 | Confirmed Slot: 425 | Finalized Slot: 393 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎500.001850000 +00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎500.001845000 +00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎500.001845000 +00:02:54 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎500.001840000 +00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎500.001835000 +00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎500.001835000 +00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎500.001830000 +00:02:55 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎500.001830000 +00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎500.001825000 +00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎500.001820000 +00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎500.001820000 +00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎500.001815000 +00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎500.001815000 +00:02:56 | Processed Slot: 433 | Confirmed Slot: 433 | Finalized Slot: 401 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎500.001810000 +00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎500.001805000 +00:02:57 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎500.001805000 +00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎500.001800000 +00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎500.001795000 +00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎500.001795000 +00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎500.001790000 +00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎500.001790000 +00:02:58 | Processed Slot: 438 | Confirmed Slot: 438 | Finalized Slot: 406 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎500.001785000 +00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎500.001780000 +00:02:59 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎500.001780000 +00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎500.001775000 +00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎500.001770000 +00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎500.001770000 +00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎500.001765000 +00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎500.001765000 +00:03:00 | Processed Slot: 443 | Confirmed Slot: 443 | Finalized Slot: 411 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎500.001760000 +00:03:00 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎500.001755000 +00:03:01 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎500.001755000 +00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎500.001750000 +00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎500.001745000 +00:03:02 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎500.001745000 +00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎500.001740000 +00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎500.001740000 +00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎500.001735000 +00:03:03 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎500.001730000 +00:03:03 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎500.001730000 +00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎500.001725000 +00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎500.001725000 +00:03:04 | Processed Slot: 451 | Confirmed Slot: 451 | Finalized Slot: 419 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎500.001720000 +00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎500.001715000 +00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎500.001715000 +00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎500.001710000 +00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎500.001705000 +00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎500.001705000 +00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎500.001700000 +00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎500.001700000 +00:03:06 | Processed Slot: 456 | Confirmed Slot: 456 | Finalized Slot: 424 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎500.001695000 +00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎500.001690000 +00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎500.001690000 +00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎500.001685000 +00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎500.001680000 +00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎500.001680000 +00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎500.001675000 +00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎500.001675000 +00:03:08 | Processed Slot: 461 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎500.001670000 +00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎500.001665000 +00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎500.001665000 +00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎500.001660000 +00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎500.001655000 +00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎500.001655000 +00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎500.001650000 +00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎500.001650000 +00:03:10 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎500.001645000 +00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎500.001640000 +00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎500.001640000 +00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎500.001635000 +00:03:11 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎500.001635000 +00:03:11 | Processed Slot: 469 | Confirmed Slot: 469 | Finalized Slot: 437 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎500.001630000 +00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎500.001625000 +00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎500.001625000 +00:03:12 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎500.001620000 +00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎500.001615000 +00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎500.001615000 +00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎500.001610000 +00:03:13 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎500.001610000 +00:03:13 | Processed Slot: 474 | Confirmed Slot: 474 | Finalized Slot: 442 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎500.001605000 +00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎500.001600000 +00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎500.001600000 +00:03:14 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎500.001595000 +00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎500.001590000 +00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎500.001590000 +00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎500.001585000 +00:03:15 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎500.001585000 +00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎500.001580000 +00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎500.001575000 +00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎500.001575000 +00:03:16 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎500.001570000 +00:03:16 | Processed Slot: 482 | Confirmed Slot: 481 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎500.001570000 +00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎500.001565000 +00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎500.001560000 +00:03:17 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎500.001560000 +00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎500.001555000 +00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎500.001550000 +00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎500.001550000 +00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎500.001545000 +00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎500.001545000 +00:03:18 | Processed Slot: 487 | Confirmed Slot: 487 | Finalized Slot: 455 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎500.001540000 +00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎500.001535000 +00:03:19 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎500.001535000 +00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎500.001530000 +00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎500.001525000 +00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎500.001525000 +00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎500.001520000 +00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎500.001520000 +00:03:20 | Processed Slot: 492 | Confirmed Slot: 492 | Finalized Slot: 460 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎500.001515000 +00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎500.001510000 +00:03:21 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎500.001510000 +00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎500.001505000 +00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎500.001500000 +00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎500.001500000 +00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎500.001495000 +00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎500.001495000 +00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎500.001490000 +00:03:22 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎500.001485000 +00:03:23 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎500.001485000 +00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎500.001480000 +00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎500.001480000 +00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎500.001475000 +00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎500.001470000 +00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎500.001470000 +00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎500.001465000 +00:03:24 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎500.001460000 +00:03:25 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎500.001460000 +00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎500.001455000 +00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎500.001455000 +00:03:25 | Processed Slot: 505 | Confirmed Slot: 505 | Finalized Slot: 473 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎500.001450000 +00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎500.001445000 +00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎500.001445000 +00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎500.001440000 +00:03:26 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎500.001435000 +00:03:27 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎500.001435000 +00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎500.001430000 +00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎500.001430000 +00:03:27 | Processed Slot: 510 | Confirmed Slot: 510 | Finalized Slot: 478 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎500.001425000 +00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎500.001420000 +00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎500.001420000 +00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎500.001415000 +00:03:28 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎500.001410000 +00:03:29 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎500.001410000 +00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎500.001405000 +00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎500.001405000 +00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎500.001400000 +00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎500.001395000 +00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎500.001395000 +00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎500.001390000 +00:03:30 | Processed Slot: 518 | Confirmed Slot: 517 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎500.001390000 +00:03:31 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎500.001385000 +00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎500.001380000 +00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎500.001380000 +00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎500.001375000 +00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎500.001370000 +00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎500.001370000 +00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎500.001365000 +00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎500.001365000 +00:03:33 | Processed Slot: 523 | Confirmed Slot: 523 | Finalized Slot: 491 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎500.001360000 +00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎500.001355000 +00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎500.001355000 +00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎500.001350000 +00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎500.001345000 +00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎500.001345000 +00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎500.001340000 +00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎500.001340000 +00:03:35 | Processed Slot: 528 | Confirmed Slot: 528 | Finalized Slot: 496 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎500.001335000 +00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎500.001330000 +00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎500.001330000 +00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎500.001325000 +00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎500.001320000 +00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎500.001320000 +00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎500.001315000 +00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎500.001315000 +00:03:37 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎500.001310000 +00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎500.001305000 +00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎500.001305000 +00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎500.001300000 +00:03:38 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎500.001300000 +00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎500.001295000 +00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎500.001290000 +00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎500.001290000 +00:03:39 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎500.001285000 +00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎500.001280000 +00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎500.001280000 +00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎500.001275000 +00:03:40 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎500.001275000 +00:03:40 | Processed Slot: 541 | Confirmed Slot: 541 | Finalized Slot: 509 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎500.001270000 +00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎500.001265000 +00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎500.001265000 +00:03:41 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎500.001260000 +00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎500.001255000 +00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎500.001255000 +00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎500.001250000 +00:03:42 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎500.001250000 +00:03:42 | Processed Slot: 546 | Confirmed Slot: 546 | Finalized Slot: 514 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎500.001245000 +00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎500.001240000 +00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎500.001240000 +00:03:43 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎500.001235000 +00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎500.001230000 +00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎500.001230000 +00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎500.001225000 +00:03:44 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎500.001225000 +00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎500.001220000 +00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎500.001215000 +00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎500.001215000 +00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎500.001210000 +00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎500.001210000 +00:03:45 | Processed Slot: 554 | Confirmed Slot: 554 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎500.001205000 +00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎500.001200000 +00:03:46 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎500.001200000 +00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎500.001195000 +00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎500.001190000 +00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎500.001190000 +00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎500.001185000 +00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎500.001185000 +00:03:47 | Processed Slot: 559 | Confirmed Slot: 559 | Finalized Slot: 527 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎500.001180000 +00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎500.001175000 +00:03:48 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎500.001175000 +00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎500.001170000 +00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎500.001165000 +00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎500.001165000 +00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎500.001160000 +00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎500.001160000 +00:03:49 | Processed Slot: 564 | Confirmed Slot: 564 | Finalized Slot: 532 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎500.001155000 +00:03:49 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎500.001150000 +00:03:50 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎500.001150000 +00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎500.001145000 +00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎500.001140000 +00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎500.001140000 +00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎500.001135000 +00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎500.001135000 +00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎500.001130000 +00:03:51 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎500.001125000 +00:03:52 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎500.001125000 +00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎500.001120000 +00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎500.001120000 +00:03:52 | Processed Slot: 572 | Confirmed Slot: 572 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎500.001160000 +00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎500.001155000 +00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎500.001155000 +00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎500.001150000 +00:03:53 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎500.001145000 +00:03:54 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎500.001145000 +00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎500.001140000 +00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎500.001140000 +00:03:54 | Processed Slot: 577 | Confirmed Slot: 577 | Finalized Slot: 545 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎500.001135000 +00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎500.001130000 +00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎500.001130000 +00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎500.001125000 +00:03:55 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1399 | ◎500.001195000 +00:03:56 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1399 | ◎500.001195000 +00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1417 | ◎500.001275000 +00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1417 | ◎500.001275000 +00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1441 | ◎500.001385000 +00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1464 | ◎500.001490000 +00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1464 | ◎500.001490000 +00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1486 | ◎500.001590000 +00:03:57 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1504 | ◎500.001670000 +00:03:58 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1504 | ◎500.001670000 +00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1523 | ◎500.001755000 +00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1523 | ◎500.001755000 +00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1548 | ◎500.001870000 +00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1568 | ◎500.001960000 +00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1568 | ◎500.001960000 +00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1569 | ◎500.001955000 +00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1569 | ◎500.001955000 +00:04:00 | Processed Slot: 590 | Confirmed Slot: 590 | Finalized Slot: 558 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1570 | ◎500.001950000 +00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1571 | ◎500.001945000 +00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1571 | ◎500.001945000 +00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1576 | ◎500.001960000 +00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1577 | ◎500.001955000 +00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1577 | ◎500.001955000 +00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1578 | ◎500.001950000 +00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1578 | ◎500.001950000 +00:04:02 | Processed Slot: 595 | Confirmed Slot: 595 | Finalized Slot: 563 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1579 | ◎500.001945000 +00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1580 | ◎500.001940000 +00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1580 | ◎500.001940000 +00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1581 | ◎500.001935000 +00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1582 | ◎500.001930000 +00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1582 | ◎500.001930000 +00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1591 | ◎500.001965000 +00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1591 | ◎500.001965000 +00:04:04 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1602 | ◎500.002010000 +00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1608 | ◎500.002030000 +00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1608 | ◎500.002030000 +00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1618 | ◎500.002070000 +00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1629 | ◎500.002115000 +00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1629 | ◎500.002115000 +00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1640 | ◎500.002160000 +00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1640 | ◎500.002160000 +00:04:06 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1651 | ◎500.002205000 +00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1658 | ◎500.002230000 +00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1658 | ◎500.002230000 +00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1665 | ◎500.002255000 +00:04:07 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1665 | ◎500.002255000 +00:04:07 | Processed Slot: 608 | Confirmed Slot: 608 | Finalized Slot: 576 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1666 | ◎500.002250000 +00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1667 | ◎500.002245000 +00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1667 | ◎500.002245000 +00:04:08 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1668 | ◎500.002240000 +00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1669 | ◎500.002235000 +00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1669 | ◎500.002235000 +00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1670 | ◎500.002230000 +00:04:09 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1670 | ◎500.002230000 +00:04:09 | Processed Slot: 613 | Confirmed Slot: 613 | Finalized Slot: 581 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1672 | ◎500.002230000 +00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1673 | ◎500.002225000 +00:04:10 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1673 | ◎500.002225000 +00:04:10 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1674 | ◎500.002220000 +00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1675 | ◎500.002215000 +00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1675 | ◎500.002215000 +00:04:11 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1676 | ◎500.002210000 +00:04:11 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1676 | ◎500.002210000 +00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1693 | ◎500.002285000 +00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1703 | ◎500.002325000 +00:04:12 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1703 | ◎500.002325000 +00:04:12 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1711 | ◎500.002355000 +00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1719 | ◎500.002385000 +00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1719 | ◎500.002385000 +00:04:13 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1725 | ◎500.002405000 +00:04:13 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1725 | ◎500.002405000 +00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1731 | ◎500.002425000 +00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1733 | ◎500.002425000 +00:04:14 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1733 | ◎500.002425000 +00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1734 | ◎500.002420000 +00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1734 | ◎500.002420000 +00:04:14 | Processed Slot: 626 | Confirmed Slot: 626 | Finalized Slot: 594 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1735 | ◎500.002415000 +00:04:15 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1736 | ◎500.002410000 +00:04:15 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1736 | ◎500.002410000 +00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1737 | ◎500.002405000 +00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1738 | ◎500.002400000 +00:04:16 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1738 | ◎500.002400000 +00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1739 | ◎500.002395000 +00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1739 | ◎500.002395000 +00:04:16 | Processed Slot: 631 | Confirmed Slot: 631 | Finalized Slot: 599 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1740 | ◎500.002390000 +00:04:17 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1741 | ◎500.002385000 +00:04:17 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1741 | ◎500.002385000 +00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1742 | ◎500.002380000 +00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1752 | ◎500.002420000 +00:04:18 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1752 | ◎500.002420000 +00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1760 | ◎500.002450000 +00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1760 | ◎500.002450000 +00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1763 | ◎500.002455000 +00:04:19 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1772 | ◎500.002490000 +00:04:19 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1772 | ◎500.002490000 +00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1773 | ◎500.002485000 +00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1774 | ◎500.002480000 +00:04:20 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1774 | ◎500.002480000 +00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1775 | ◎500.002475000 +00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1775 | ◎500.002475000 +00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1776 | ◎500.002470000 +00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1777 | ◎500.002465000 +00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1777 | ◎500.002465000 +00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1778 | ◎500.002460000 +00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1778 | ◎500.002460000 +00:04:22 | Processed Slot: 644 | Confirmed Slot: 644 | Finalized Slot: 612 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1779 | ◎500.002455000 +00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1780 | ◎500.002450000 +00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1780 | ◎500.002450000 +00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1781 | ◎500.002445000 +00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1783 | ◎500.002445000 +00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1783 | ◎500.002445000 +00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1787 | ◎500.002455000 +00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1787 | ◎500.002455000 +00:04:24 | Processed Slot: 649 | Confirmed Slot: 649 | Finalized Slot: 617 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1798 | ◎500.002500000 +00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1802 | ◎500.002510000 +00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1802 | ◎500.002510000 +00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1803 | ◎500.002505000 +00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1804 | ◎500.002500000 +00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1804 | ◎500.002500000 +00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1805 | ◎500.002495000 +00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1805 | ◎500.002495000 +00:04:26 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1806 | ◎500.002490000 +00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1807 | ◎500.002485000 +00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1807 | ◎500.002485000 +00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1808 | ◎500.002480000 +00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1809 | ◎500.002475000 +00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1809 | ◎500.002475000 +00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1810 | ◎500.002470000 +00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1810 | ◎500.002470000 +00:04:28 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1811 | ◎500.002465000 +00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1819 | ◎500.002495000 +00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1819 | ◎500.002495000 +00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1820 | ◎500.002490000 +00:04:29 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1820 | ◎500.002490000 +00:04:29 | Processed Slot: 662 | Confirmed Slot: 662 | Finalized Slot: 630 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1821 | ◎500.002485000 +00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1822 | ◎500.002480000 +00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1822 | ◎500.002480000 +00:04:30 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1823 | ◎500.002475000 +00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1824 | ◎500.002470000 +00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1824 | ◎500.002470000 +00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1825 | ◎500.002465000 +00:04:31 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1825 | ◎500.002465000 +00:04:31 | Processed Slot: 667 | Confirmed Slot: 667 | Finalized Slot: 635 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1826 | ◎500.002460000 +00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1827 | ◎500.002455000 +00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1827 | ◎500.002455000 +00:04:32 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1828 | ◎500.002450000 +00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1829 | ◎500.002445000 +00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1829 | ◎500.002445000 +00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1830 | ◎500.002440000 +00:04:33 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1830 | ◎500.002440000 +00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1831 | ◎500.002435000 +00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1832 | ◎500.002430000 +00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1832 | ◎500.002430000 +00:04:34 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1833 | ◎500.002425000 +00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1834 | ◎500.002420000 +00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1834 | ◎500.002420000 +00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1835 | ◎500.002415000 +00:04:35 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1835 | ◎500.002415000 +00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1836 | ◎500.002410000 +00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1837 | ◎500.002405000 +00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1837 | ◎500.002405000 +00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1838 | ◎500.002400000 +00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1838 | ◎500.002400000 +00:04:36 | Processed Slot: 680 | Confirmed Slot: 680 | Finalized Slot: 648 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1839 | ◎500.002395000 +00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1840 | ◎500.002390000 +00:04:37 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1840 | ◎500.002390000 +00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1841 | ◎500.002385000 +00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1842 | ◎500.002380000 +00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1842 | ◎500.002380000 +00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1843 | ◎500.002375000 +00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1843 | ◎500.002375000 +00:04:38 | Processed Slot: 685 | Confirmed Slot: 685 | Finalized Slot: 653 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1844 | ◎500.002370000 +00:04:38 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1845 | ◎500.002365000 +00:04:39 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1845 | ◎500.002365000 +00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1846 | ◎500.002360000 +00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1847 | ◎500.002355000 +00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1847 | ◎500.002355000 +00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1848 | ◎500.002350000 +00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1848 | ◎500.002350000 +00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1849 | ◎500.002345000 +00:04:40 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1850 | ◎500.002340000 +00:04:41 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1850 | ◎500.002340000 +00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1851 | ◎500.002335000 +00:04:41 | Processed Slot: 693 | Confirmed Slot: 692 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1852 | ◎500.002335000 +00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1852 | ◎500.002330000 +00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1853 | ◎500.002325000 +00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1853 | ◎500.002325000 +00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1855 | ◎500.002325000 +00:04:42 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1856 | ◎500.002320000 +00:04:43 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1856 | ◎500.002320000 +00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1857 | ◎500.002315000 +00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1857 | ◎500.002315000 +00:04:43 | Processed Slot: 698 | Confirmed Slot: 698 | Finalized Slot: 666 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1858 | ◎500.002310000 +00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1859 | ◎500.002305000 +00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1859 | ◎500.002305000 +00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1860 | ◎500.002300000 +00:04:44 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1861 | ◎500.002295000 +00:04:45 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1861 | ◎500.002295000 +00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1862 | ◎500.002290000 +00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1862 | ◎500.002290000 +00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1863 | ◎500.002285000 +00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1864 | ◎500.002280000 +00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1864 | ◎500.002280000 +00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1865 | ◎500.002275000 +00:04:46 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1866 | ◎500.002270000 +00:04:47 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1866 | ◎500.002270000 +00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1867 | ◎500.002265000 +00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1867 | ◎500.002265000 +00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1868 | ◎500.002260000 +00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1869 | ◎500.002255000 +00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1869 | ◎500.002255000 +00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1870 | ◎500.002250000 +00:04:48 | Processed Slot: 711 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1871 | ◎500.002250000 +00:04:49 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1871 | ◎500.002245000 +00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1872 | ◎500.002240000 +00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1872 | ◎500.002240000 +00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1873 | ◎500.002235000 +00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1874 | ◎500.002230000 +00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1874 | ◎500.002230000 +00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1875 | ◎500.002225000 +00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1875 | ◎500.002225000 +00:04:51 | Processed Slot: 716 | Confirmed Slot: 716 | Finalized Slot: 684 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1876 | ◎500.002220000 +00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1877 | ◎500.002215000 +00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1877 | ◎500.002215000 +00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1878 | ◎500.002210000 +00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1879 | ◎500.002205000 +00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1879 | ◎500.002205000 +00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1880 | ◎500.002200000 +00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1880 | ◎500.002200000 +00:04:53 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1881 | ◎500.002195000 +00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1882 | ◎500.002190000 +00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1882 | ◎500.002190000 +00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1883 | ◎500.002185000 +00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1884 | ◎500.002180000 +00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1884 | ◎500.002180000 +00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1885 | ◎500.002175000 +00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1885 | ◎500.002175000 +00:04:55 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1886 | ◎500.002170000 +00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1887 | ◎500.002165000 +00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1887 | ◎500.002165000 +00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1888 | ◎500.002160000 +00:04:56 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1888 | ◎500.002160000 +00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1890 | ◎500.002160000 +00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1893 | ◎500.002160000 +00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1893 | ◎500.002160000 +00:04:57 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1896 | ◎500.002160000 +00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1898 | ◎500.002157500 +00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1898 | ◎500.002157500 +00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1900 | ◎500.002157500 +00:04:58 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1900 | ◎500.002157500 +00:04:58 | Processed Slot: 734 | Confirmed Slot: 734 | Finalized Slot: 702 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1901 | ◎500.002152500 +00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1903 | ◎500.002152500 +00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1903 | ◎500.002152500 +00:04:59 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1904 | ◎500.002147500 +00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1906 | ◎500.002147500 +00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1906 | ◎500.002147500 +00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1907 | ◎500.002142500 +00:05:00 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1907 | ◎500.002142500 +00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1908 | ◎500.002137500 +00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1910 | ◎500.002137500 +00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1910 | ◎500.002137500 +00:05:01 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1911 | ◎500.002132500 +00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1912 | ◎500.002127500 +00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1912 | ◎500.002127500 +00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1913 | ◎500.002122500 +00:05:02 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1913 | ◎500.002122500 +00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1914 | ◎500.002117500 +00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1915 | ◎500.002112500 +00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1915 | ◎500.002112500 +00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1916 | ◎500.002107500 +00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1916 | ◎500.002107500 +00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1917 | ◎500.002102500 +00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1918 | ◎500.002097500 +00:05:04 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1918 | ◎500.002097500 +00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1919 | ◎500.002092500 +00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1920 | ◎500.002087500 +00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1920 | ◎500.002087500 +00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1921 | ◎500.002082500 +00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1921 | ◎500.002082500 +00:05:05 | Processed Slot: 752 | Confirmed Slot: 752 | Finalized Slot: 720 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1922 | ◎500.002077500 +00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1923 | ◎500.002072500 +00:05:06 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1923 | ◎500.002072500 +00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1924 | ◎500.002067500 +00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1925 | ◎500.002062500 +00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1925 | ◎500.002062500 +00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1926 | ◎500.002057500 +00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1926 | ◎500.002057500 +00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1927 | ◎500.002052500 +00:05:07 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1928 | ◎500.002047500 +00:05:08 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1928 | ◎500.002047500 +00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1929 | ◎500.002042500 +00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1930 | ◎500.002037500 +00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1930 | ◎500.002037500 +00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1931 | ◎500.002032500 +00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1931 | ◎500.002032500 +00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1932 | ◎500.002027500 +00:05:09 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1933 | ◎500.002022500 +00:05:10 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1933 | ◎500.002022500 +00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1934 | ◎500.002017500 +00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1934 | ◎500.002017500 +00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1935 | ◎500.002012500 +00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1936 | ◎500.002007500 +00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1936 | ◎500.002007500 +00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1937 | ◎500.002002500 +00:05:11 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1938 | ◎500.001997500 +00:05:12 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1938 | ◎500.001997500 +00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1939 | ◎500.001992500 +00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1939 | ◎500.001992500 +00:05:12 | Processed Slot: 770 | Confirmed Slot: 770 | Finalized Slot: 738 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1940 | ◎500.001987500 +00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1941 | ◎500.001982500 +00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1941 | ◎500.001982500 +00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1942 | ◎500.001977500 +00:05:13 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1943 | ◎500.001972500 +00:05:14 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1943 | ◎500.001972500 +00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1944 | ◎500.001967500 +00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1944 | ◎500.001967500 +00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1946 | ◎500.001965000 +00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1947 | ◎500.001960000 +00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1947 | ◎500.001960000 +00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1948 | ◎500.001955000 +00:05:15 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1949 | ◎500.001950000 +00:05:16 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1949 | ◎500.001950000 +00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1950 | ◎500.001945000 +00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1950 | ◎500.001945000 +00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1951 | ◎500.001940000 +00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1952 | ◎500.001935000 +00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1952 | ◎500.001935000 +00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1953 | ◎500.001930000 +00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1953 | ◎500.001930000 +00:05:18 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1954 | ◎500.001925000 +00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1955 | ◎500.001920000 +00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1955 | ◎500.001920000 +00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1956 | ◎500.001915000 +00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1957 | ◎500.001910000 +00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1957 | ◎500.001910000 +00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1958 | ◎500.001905000 +00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1958 | ◎500.001905000 +00:05:20 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1959 | ◎500.001900000 +00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1960 | ◎500.001895000 +00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1960 | ◎500.001895000 +00:05:21 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1961 | ◎500.001890000 +00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1962 | ◎500.001885000 +00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1962 | ◎500.001885000 +00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1963 | ◎500.001880000 +00:05:22 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1963 | ◎500.001880000 +00:05:22 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1964 | ◎500.001875000 +00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1965 | ◎500.001870000 +00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1965 | ◎500.001870000 +00:05:23 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1966 | ◎500.001865000 +00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1967 | ◎500.001860000 +00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1967 | ◎500.001860000 +00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1968 | ◎500.001855000 +00:05:24 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1968 | ◎500.001855000 +00:05:24 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1969 | ◎500.001850000 +00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1970 | ◎500.001845000 +00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1970 | ◎500.001845000 +00:05:25 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1971 | ◎500.001840000 +00:05:25 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1971 | ◎500.001840000 +00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1972 | ◎500.001835000 +00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1973 | ◎500.001830000 +00:05:26 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1973 | ◎500.001830000 +00:05:26 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1974 | ◎500.001825000 +00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1975 | ◎500.001820000 +00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1975 | ◎500.001820000 +00:05:27 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1976 | ◎500.001815000 +00:05:27 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1976 | ◎500.001815000 +00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1977 | ◎500.001810000 +00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1978 | ◎500.001805000 +00:05:28 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1978 | ◎500.001805000 +00:05:28 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1979 | ◎500.001800000 +00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1981 | ◎500.001800000 +00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1981 | ◎500.001800000 +00:05:29 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1982 | ◎500.001795000 +00:05:29 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1982 | ◎500.001795000 +00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1983 | ◎500.001790000 +00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1984 | ◎500.001785000 +00:05:30 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1984 | ◎500.001785000 +00:05:30 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1985 | ◎500.001780000 +00:05:30 | Processed Slot: 814 | Confirmed Slot: 813 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1986 | ◎500.001780000 +00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1986 | ◎500.001775000 +00:05:31 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1987 | ◎500.001770000 +00:05:31 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1987 | ◎500.001770000 +00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1988 | ◎500.001765000 +00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1989 | ◎500.001760000 +00:05:32 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1989 | ◎500.001760000 +00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1990 | ◎500.001755000 +00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1990 | ◎500.001755000 +00:05:32 | Processed Slot: 819 | Confirmed Slot: 819 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1991 | ◎500.001750000 +00:05:33 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1992 | ◎500.001745000 +00:05:33 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1992 | ◎500.001745000 +00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1993 | ◎500.001740000 +00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1994 | ◎500.001735000 +00:05:34 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1994 | ◎500.001735000 +00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1995 | ◎500.001730000 +00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1995 | ◎500.001730000 +00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1996 | ◎500.001725000 +00:05:35 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1997 | ◎500.001720000 +00:05:35 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1997 | ◎500.001720000 +00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1998 | ◎500.001715000 +00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1999 | ◎500.001710000 +00:05:36 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1999 | ◎500.001710000 +00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2000 | ◎500.001705000 +00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2000 | ◎500.001705000 +00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2001 | ◎500.001700000 +00:05:37 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2002 | ◎500.001695000 +00:05:37 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2002 | ◎500.001695000 +00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2003 | ◎500.001690000 +00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2003 | ◎500.001690000 +00:05:38 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2004 | ◎500.001685000 +00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2005 | ◎500.001680000 +00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2005 | ◎500.001680000 +00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2006 | ◎500.001675000 +00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2007 | ◎500.001670000 +00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2007 | ◎500.001670000 +00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2008 | ◎500.001665000 +00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2008 | ◎500.001665000 +00:05:40 | Processed Slot: 837 | Confirmed Slot: 837 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2009 | ◎500.001660000 +00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2010 | ◎500.001655000 +00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2010 | ◎500.001655000 +00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2011 | ◎500.001650000 +00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2012 | ◎500.001645000 +00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2012 | ◎500.001645000 +00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2013 | ◎500.001640000 +00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2013 | ◎500.001640000 +00:05:42 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2014 | ◎500.001635000 +00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2016 | ◎500.001632500 +00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2016 | ◎500.001632500 +00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2017 | ◎500.001627500 +00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2019 | ◎500.001625000 +00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2019 | ◎500.001625000 +00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2021 | ◎500.001622500 +00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2021 | ◎500.001622500 +00:05:44 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2022 | ◎500.001617500 +00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2024 | ◎500.001617500 +00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2024 | ◎500.001617500 +00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2025 | ◎500.001612500 +00:05:45 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2025 | ◎500.001612500 +00:05:45 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2026 | ◎500.001607500 +00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2027 | ◎500.001602500 +00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2027 | ◎500.001602500 +00:05:46 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2028 | ◎500.001597500 +00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2029 | ◎500.001592500 +00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2029 | ◎500.001592500 +00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2030 | ◎500.001587500 +00:05:47 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2030 | ◎500.001587500 +00:05:47 | Processed Slot: 855 | Confirmed Slot: 855 | Finalized Slot: 823 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2031 | ◎500.001582500 +00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2032 | ◎500.001577500 +00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2032 | ◎500.001577500 +00:05:48 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2033 | ◎500.001572500 +00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2034 | ◎500.001567500 +00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2034 | ◎500.001567500 +00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2035 | ◎500.001562500 +00:05:49 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2035 | ◎500.001562500 +00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2036 | ◎500.001557500 +00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2037 | ◎500.001552500 +00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2037 | ◎500.001552500 +00:05:50 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2038 | ◎500.001547500 +00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2039 | ◎500.001542500 +00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2039 | ◎500.001542500 +00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2040 | ◎500.001537500 +00:05:51 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2040 | ◎500.001537500 +00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2041 | ◎500.001532500 +00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2042 | ◎500.001527500 +00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2042 | ◎500.001527500 +00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2043 | ◎500.001522500 +00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2043 | ◎500.001522500 +00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2044 | ◎500.001517500 +00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2045 | ◎500.001512500 +00:05:53 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2045 | ◎500.001512500 +00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2046 | ◎500.001507500 +00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2047 | ◎500.001502500 +00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2047 | ◎500.001502500 +00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2048 | ◎500.001497500 +00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2048 | ◎500.001497500 +00:05:54 | Processed Slot: 873 | Confirmed Slot: 873 | Finalized Slot: 841 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2049 | ◎500.001492500 +00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2050 | ◎500.001487500 +00:05:55 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2050 | ◎500.001487500 +00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2051 | ◎500.001482500 +00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2052 | ◎500.001477500 +00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2052 | ◎500.001477500 +00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2053 | ◎500.001472500 +00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2053 | ◎500.001472500 +00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2054 | ◎500.001467500 +00:05:56 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2055 | ◎500.001462500 +00:05:57 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2055 | ◎500.001462500 +00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2056 | ◎500.001457500 +00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2057 | ◎500.001452500 +00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2057 | ◎500.001452500 +00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2059 | ◎500.001450000 +00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2059 | ◎500.001450000 +00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2060 | ◎500.001445000 +00:05:58 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2061 | ◎500.001440000 +00:05:59 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2061 | ◎500.001440000 +00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2062 | ◎500.001435000 +00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2062 | ◎500.001435000 +00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2063 | ◎500.001430000 +00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2064 | ◎500.001425000 +00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2064 | ◎500.001425000 +00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2065 | ◎500.001420000 +00:06:00 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2066 | ◎500.001415000 +00:06:01 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2066 | ◎500.001415000 +00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2067 | ◎500.001410000 +00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2067 | ◎500.001410000 +00:06:01 | Processed Slot: 891 | Confirmed Slot: 891 | Finalized Slot: 859 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2068 | ◎500.001405000 +00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2069 | ◎500.001400000 +00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2069 | ◎500.001400000 +00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2070 | ◎500.001395000 +00:06:02 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2071 | ◎500.001390000 +00:06:03 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2071 | ◎500.001390000 +00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2072 | ◎500.001385000 +00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2072 | ◎500.001385000 +00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2073 | ◎500.001380000 +00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2074 | ◎500.001375000 +00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2074 | ◎500.001375000 +00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2075 | ◎500.001370000 +00:06:04 | Processed Slot: 899 | Confirmed Slot: 898 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2076 | ◎500.001370000 +00:06:05 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2076 | ◎500.001365000 +00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2077 | ◎500.001360000 +00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2077 | ◎500.001360000 +00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2078 | ◎500.001355000 +00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2079 | ◎500.001350000 +00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2079 | ◎500.001350000 +00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2080 | ◎500.001345000 +00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2080 | ◎500.001345000 +00:06:07 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2081 | ◎500.001340000 +00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2082 | ◎500.001335000 +00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2082 | ◎500.001335000 +00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2083 | ◎500.001330000 +00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2084 | ◎500.001325000 +00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2084 | ◎500.001325000 +00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2085 | ◎500.001320000 +00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2085 | ◎500.001320000 +00:06:09 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2086 | ◎500.001315000 +00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2087 | ◎500.001310000 +00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2087 | ◎500.001310000 +00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2088 | ◎500.001305000 +00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2089 | ◎500.001300000 +00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2089 | ◎500.001300000 +00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2090 | ◎500.001295000 +00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2090 | ◎500.001295000 +00:06:11 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2091 | ◎500.001290000 +00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2092 | ◎500.001285000 +00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2092 | ◎500.001285000 +00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2094 | ◎500.001285000 +00:06:12 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2094 | ◎500.001285000 +00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2095 | ◎500.001280000 +00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2096 | ◎500.001275000 +00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2096 | ◎500.001275000 +00:06:13 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2097 | ◎500.001270000 +00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2098 | ◎500.001265000 +00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2098 | ◎500.001265000 +00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2099 | ◎500.001260000 +00:06:14 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2099 | ◎500.001260000 +00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2100 | ◎500.001255000 +00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2101 | ◎500.001250000 +00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2101 | ◎500.001250000 +00:06:15 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2102 | ◎500.001245000 +00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2103 | ◎500.001240000 +00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2103 | ◎500.001240000 +00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2104 | ◎500.001235000 +00:06:16 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2104 | ◎500.001235000 +00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2105 | ◎500.001230000 +00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2106 | ◎500.001225000 +00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2106 | ◎500.001225000 +00:06:17 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2107 | ◎500.001220000 +00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2108 | ◎500.001215000 +00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2108 | ◎500.001215000 +00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2109 | ◎500.001210000 +00:06:18 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2109 | ◎500.001210000 +00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2110 | ◎500.001205000 +00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2111 | ◎500.001200000 +00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2111 | ◎500.001200000 +00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2112 | ◎500.001195000 +00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2112 | ◎500.001195000 +00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2113 | ◎500.001190000 +00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2114 | ◎500.001185000 +00:06:20 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2114 | ◎500.001185000 +00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2115 | ◎500.001180000 +00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2116 | ◎500.001175000 +00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2116 | ◎500.001175000 +00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2117 | ◎500.001170000 +00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2117 | ◎500.001170000 +00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2118 | ◎500.001165000 +00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2119 | ◎500.001160000 +00:06:22 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2119 | ◎500.001160000 +00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2120 | ◎500.001155000 +00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2121 | ◎500.001150000 +00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2121 | ◎500.001150000 +00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2122 | ◎500.001145000 +00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2122 | ◎500.001145000 +00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2123 | ◎500.001140000 +00:06:23 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2124 | ◎500.001135000 +00:06:24 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2124 | ◎500.001135000 +00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2125 | ◎500.001130000 +00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2126 | ◎500.001125000 +00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2126 | ◎500.001125000 +00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2127 | ◎500.001120000 +00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2127 | ◎500.001120000 +00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2129 | ◎500.001117500 +00:06:25 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2130 | ◎500.001112500 +00:06:26 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2130 | ◎500.001112500 +00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2131 | ◎500.001107500 +00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2131 | ◎500.001107500 +00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2132 | ◎500.001102500 +00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2133 | ◎500.001097500 +00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2133 | ◎500.001097500 +00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2134 | ◎500.001092500 +00:06:27 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2135 | ◎500.001087500 +00:06:28 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2135 | ◎500.001087500 +00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2136 | ◎500.001082500 +00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2136 | ◎500.001082500 +00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2137 | ◎500.001077500 +00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2138 | ◎500.001072500 +00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2138 | ◎500.001072500 +00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2139 | ◎500.001067500 +00:06:29 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2140 | ◎500.001062500 +00:06:30 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2140 | ◎500.001062500 +00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2141 | ◎500.001057500 +00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2141 | ◎500.001057500 +00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2142 | ◎500.001052500 +00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2143 | ◎500.001047500 +00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2143 | ◎500.001047500 +00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2144 | ◎500.001042500 +00:06:31 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2145 | ◎500.001037500 +00:06:32 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2145 | ◎500.001037500 +00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2146 | ◎500.001032500 +00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2146 | ◎500.001032500 +00:06:33 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2147 | ◎500.001027500 +00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2148 | ◎500.001022500 +00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2148 | ◎500.001022500 +00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2149 | ◎500.001017500 +00:06:34 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2149 | ◎500.001017500 +00:06:34 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2150 | ◎500.001012500 +00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2151 | ◎500.001007500 +00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2151 | ◎500.001007500 +00:06:35 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2152 | ◎500.001002500 +00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2153 | ◎500.000997500 +00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2153 | ◎500.000997500 +00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2154 | ◎500.000992500 +00:06:36 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2154 | ◎500.000992500 +00:06:36 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2155 | ◎500.000987500 +00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2156 | ◎500.000982500 +00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2156 | ◎500.000982500 +00:06:37 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2157 | ◎500.000977500 +00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2158 | ◎500.000972500 +00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2158 | ◎500.000972500 +00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2159 | ◎500.000967500 +00:06:38 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2159 | ◎500.000967500 +00:06:38 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2160 | ◎500.000962500 +00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2161 | ◎500.000957500 +00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2161 | ◎500.000957500 +00:06:39 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2162 | ◎500.000952500 +00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2164 | ◎500.000950000 +00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2164 | ◎500.000950000 +00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2165 | ◎500.000945000 +00:06:40 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2165 | ◎500.000945000 +00:06:40 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2166 | ◎500.000940000 +00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2167 | ◎500.000935000 +00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2167 | ◎500.000935000 +00:06:41 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2168 | ◎500.000930000 +00:06:41 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2168 | ◎500.000930000 +00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2169 | ◎500.000925000 +00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2170 | ◎500.000920000 +00:06:42 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2170 | ◎500.000920000 +00:06:42 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2171 | ◎500.000915000 +00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2172 | ◎500.000910000 +00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2172 | ◎500.000910000 +00:06:43 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2173 | ◎500.000905000 +00:06:43 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2173 | ◎500.000905000 +00:06:43 | Processed Slot: 994 | Confirmed Slot: 994 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2174 | ◎500.000900000 +00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2175 | ◎500.000895000 +00:06:44 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2175 | ◎500.000895000 +00:06:44 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2176 | ◎500.000890000 +00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2177 | ◎500.000885000 +00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2177 | ◎500.000885000 +00:06:45 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2178 | ◎500.000880000 +00:06:45 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2178 | ◎500.000880000 +00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2179 | ◎500.000875000 +00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2180 | ◎500.000870000 +00:06:46 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2180 | ◎500.000870000 +00:06:46 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2181 | ◎500.000865000 +00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2182 | ◎500.000860000 +00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2182 | ◎500.000860000 +00:06:47 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2183 | ◎500.000855000 +00:06:47 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2183 | ◎500.000855000 +00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2184 | ◎500.000850000 +00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2185 | ◎500.000845000 +00:06:48 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2185 | ◎500.000845000 +00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2186 | ◎500.000840000 +00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2186 | ◎500.000840000 +00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2187 | ◎500.000835000 +00:06:49 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2188 | ◎500.000830000 +00:06:49 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2188 | ◎500.000830000 +00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2189 | ◎500.000825000 +00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2190 | ◎500.000820000 +00:06:50 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2190 | ◎500.000820000 +00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2191 | ◎500.000815000 +00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2191 | ◎500.000815000 +00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2192 | ◎500.000810000 +00:06:51 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2193 | ◎500.000805000 +00:06:51 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2193 | ◎500.000805000 +00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2194 | ◎500.000800000 +00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2195 | ◎500.000795000 +00:06:52 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2195 | ◎500.000795000 +00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2196 | ◎500.000790000 +00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2196 | ◎500.000790000 +00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2197 | ◎500.000785000 +00:06:53 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2199 | ◎500.000782500 +00:06:53 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2199 | ◎500.000782500 +00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2200 | ◎500.000777500 +00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1019 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2201 | ◎500.000777500 +00:06:54 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2201 | ◎500.000772500 +00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2202 | ◎500.000767500 +00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2202 | ◎500.000767500 +00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2203 | ◎500.000762500 +00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2204 | ◎500.000757500 +00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2204 | ◎500.000757500 +00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2205 | ◎500.000752500 +00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2205 | ◎500.000752500 +00:06:56 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2206 | ◎500.000747500 +00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2207 | ◎500.000742500 +00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2207 | ◎500.000742500 +00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2208 | ◎500.000737500 +00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2209 | ◎500.000732500 +00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2209 | ◎500.000732500 +00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2210 | ◎500.000727500 +00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2210 | ◎500.000727500 +00:06:58 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2211 | ◎500.000722500 +00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2212 | ◎500.000717500 +00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2212 | ◎500.000717500 +00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2213 | ◎500.000712500 +00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2214 | ◎500.000707500 +00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2214 | ◎500.000707500 +00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2215 | ◎500.000702500 +00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2215 | ◎500.000702500 +00:07:00 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2216 | ◎500.000697500 +00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2217 | ◎500.000692500 +00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2217 | ◎500.000692500 +00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2218 | ◎500.000687500 +00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1037 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2219 | ◎500.000687500 +00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2219 | ◎500.000682500 +00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2220 | ◎500.000677500 +00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2220 | ◎500.000677500 +00:07:02 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2221 | ◎500.000672500 +00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2222 | ◎500.000667500 +00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2222 | ◎500.000667500 +00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2223 | ◎500.000662500 +00:07:03 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2223 | ◎500.000662500 +00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2224 | ◎500.000657500 +00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2225 | ◎500.000652500 +00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2225 | ◎500.000652500 +00:07:04 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2226 | ◎500.000647500 +00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2227 | ◎500.000642500 +00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2227 | ◎500.000642500 +00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2228 | ◎500.000637500 +00:07:05 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2228 | ◎500.000637500 +00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2229 | ◎500.000632500 +00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2230 | ◎500.000627500 +00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2230 | ◎500.000627500 +00:07:06 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2231 | ◎500.000622500 +00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2232 | ◎500.000617500 +00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2232 | ◎500.000617500 +00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2233 | ◎500.000612500 +00:07:07 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2233 | ◎500.000612500 +00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2234 | ◎500.000607500 +00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2235 | ◎500.000602500 +00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2235 | ◎500.000602500 +00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2236 | ◎500.000597500 +00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2236 | ◎500.000597500 +00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2237 | ◎500.000592500 +00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2238 | ◎500.000587500 +00:07:09 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2238 | ◎500.000587500 +00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2239 | ◎500.000582500 +00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2240 | ◎500.000577500 +00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2240 | ◎500.000577500 +00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2241 | ◎500.000572500 +00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2241 | ◎500.000572500 +00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2242 | ◎500.000567500 +00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2243 | ◎500.000562500 +00:07:11 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2243 | ◎500.000562500 +00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2244 | ◎500.000557500 +00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2245 | ◎500.000552500 +00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2245 | ◎500.000552500 +00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2246 | ◎500.000547500 +00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2246 | ◎500.000547500 +00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2247 | ◎500.000542500 +00:07:12 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2248 | ◎500.000537500 +00:07:13 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2248 | ◎500.000537500 +00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2250 | ◎500.000535000 +00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2251 | ◎500.000530000 +00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2251 | ◎500.000530000 +00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2253 | ◎500.000527500 +00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2253 | ◎500.000527500 +00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2254 | ◎500.000522500 +00:07:14 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2255 | ◎500.000517500 +00:07:15 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2255 | ◎500.000517500 +00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2257 | ◎500.000515000 +00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2257 | ◎500.000515000 +00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2258 | ◎500.000510000 +00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2260 | ◎500.000507500 +00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2260 | ◎500.000507500 +00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2261 | ◎500.000502500 +00:07:16 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2262 | ◎500.000497500 +00:07:17 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2262 | ◎500.000497500 +00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2264 | ◎500.000495000 +00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2264 | ◎500.000495000 +00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2265 | ◎500.000490000 +00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2267 | ◎500.000487500 +00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2267 | ◎500.000487500 +00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2268 | ◎500.000482500 +00:07:18 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2269 | ◎500.000477500 +00:07:19 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2269 | ◎500.000477500 +00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2271 | ◎500.000475000 +00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2271 | ◎500.000475000 +00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2272 | ◎500.000470000 +00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2274 | ◎500.000467500 +00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2274 | ◎500.000467500 +00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2275 | ◎500.000462500 +00:07:20 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2276 | ◎500.000457500 +00:07:21 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2276 | ◎500.000457500 +00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2278 | ◎500.000455000 +00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2278 | ◎500.000455000 +00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2279 | ◎500.000450000 +00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2281 | ◎500.000447500 +00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2281 | ◎500.000447500 +00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2282 | ◎500.000442500 +00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2282 | ◎500.000442500 +00:07:23 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2283 | ◎500.000437500 +00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2285 | ◎500.000435000 +00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2285 | ◎500.000435000 +00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2286 | ◎500.000430000 +00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2288 | ◎500.000427500 +00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2288 | ◎500.000427500 +00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2289 | ◎500.000422500 +00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2289 | ◎500.000422500 +00:07:25 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2290 | ◎500.000417500 +00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2292 | ◎500.000415000 +00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2292 | ◎500.000415000 +00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2293 | ◎500.000410000 +00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2295 | ◎500.000407500 +00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2295 | ◎500.000407500 +00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2296 | ◎500.000402500 +00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2296 | ◎500.000402500 +00:07:27 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2297 | ◎500.000397500 +00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2299 | ◎500.000395000 +00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2299 | ◎500.000395000 +00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2300 | ◎500.000390000 +00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2302 | ◎500.000387500 +00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2302 | ◎500.000387500 +00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2303 | ◎500.000382500 +00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2303 | ◎500.000382500 +00:07:29 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2304 | ◎500.000377500 +00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2306 | ◎500.000375000 +00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2306 | ◎500.000375000 +00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2307 | ◎500.000370000 +00:07:30 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2307 | ◎500.000370000 +00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2309 | ◎500.000367500 From fde1f5873a846261d86b9a77d7470418c6efb725 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Tue, 8 Aug 2023 09:52:39 +0200 Subject: [PATCH 6/7] Changed token and vault to be owned by CI key --- .github/workflows/e2e_testnet_daily.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e_testnet_daily.yml b/.github/workflows/e2e_testnet_daily.yml index 44d9aac94..e8bcde2c5 100644 --- a/.github/workflows/e2e_testnet_daily.yml +++ b/.github/workflows/e2e_testnet_daily.yml @@ -182,8 +182,8 @@ jobs: PROGRAM_ID_OCR2: cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ PROGRAM_ID_ACCESS_CONTROLLER: 9xi644bRR8birboDGdTiwBq3C7VEeR7VuamRYYXCubUW PROGRAM_ID_STORE: HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny - LINK_TOKEN: Dmw5mDvteezKfop9zd3RQbJmZfBATF3QuSqDU66axyts - VAULT_ADDRESS: G27m7KxTh4KVLapxB9MXfEA8HLUfYuGYQ1ELEs2zQdiQ + LINK_TOKEN: D2iCBaWktubtRd9ZA1wtynyJczCVptZdxDgvvRFEJXp + VAULT_ADDRESS: AvmwSaPm5NDRzhwVdAieYz6moZeMcWBsnM7V41jVwejD PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} INTERNAL_DOCKER_REPO: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@ad22fbd6f4d108b82aaf49b527bcf40f32babea8 # v2.2.1 From dab87dc592c89028c16939b4d99c993dd85180e9 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Tue, 8 Aug 2023 10:46:42 +0200 Subject: [PATCH 7/7] CI edit --- .github/workflows/e2e_testnet_daily.yml | 22 +- .../chainlink-0_0/chainlink-db.log | 62 - .../chainlink-0_0/chainlink-db_dump.sql | 22 - .../chainlink-0_0/node.log | 1053 -------- .../chainlink-0_1/chainlink-db.log | 62 - .../chainlink-0_1/chainlink-db_dump.sql | 22 - .../chainlink-0_1/node.log | 1963 -------------- .../chainlink-0_2/chainlink-db.log | 62 - .../chainlink-0_2/chainlink-db_dump.sql | 22 - .../chainlink-0_2/node.log | 1715 ------------- .../chainlink-0_3/chainlink-db.log | 62 - .../chainlink-0_3/chainlink-db_dump.sql | 22 - .../chainlink-0_3/node.log | 1722 ------------- .../chainlink-0_4/chainlink-db.log | 62 - .../chainlink-0_4/chainlink-db_dump.sql | 22 - .../chainlink-0_4/node.log | 1810 ------------- .../qa-mock-adapter_0/qa-mock-adapter.log | 305 --- .../sol_0/sol-val.log | 2248 ----------------- .../chainlink-0_0/chainlink-db.log | 62 - .../chainlink-0_0/chainlink-db_dump.sql | 22 - .../chainlink-0_0/node.log | 1050 -------- .../chainlink-0_1/chainlink-db.log | 62 - .../chainlink-0_1/chainlink-db_dump.sql | 22 - .../chainlink-0_1/node.log | 1786 ------------- .../chainlink-0_2/chainlink-db.log | 62 - .../chainlink-0_2/chainlink-db_dump.sql | 22 - .../chainlink-0_2/node.log | 1771 ------------- .../chainlink-0_3/chainlink-db.log | 62 - .../chainlink-0_3/chainlink-db_dump.sql | 22 - .../chainlink-0_3/node.log | 1799 ------------- .../chainlink-0_4/chainlink-db.log | 62 - .../chainlink-0_4/chainlink-db_dump.sql | 22 - .../chainlink-0_4/node.log | 1686 ------------- .../qa-mock-adapter_0/qa-mock-adapter.log | 288 --- .../sol_0/sol-val.log | 2239 ---------------- .../chainlink-0_0/chainlink-db.log | 62 - .../chainlink-0_0/chainlink-db_dump.sql | 22 - .../chainlink-0_0/node.log | 581 ----- .../chainlink-0_1/chainlink-db.log | 62 - .../chainlink-0_1/chainlink-db_dump.sql | 22 - .../chainlink-0_1/node.log | 782 ------ .../chainlink-0_2/chainlink-db.log | 62 - .../chainlink-0_2/chainlink-db_dump.sql | 22 - .../chainlink-0_2/node.log | 881 ------- .../chainlink-0_3/chainlink-db.log | 62 - .../chainlink-0_3/chainlink-db_dump.sql | 22 - .../chainlink-0_3/node.log | 995 -------- .../chainlink-0_4/chainlink-db.log | 62 - .../chainlink-0_4/chainlink-db_dump.sql | 22 - .../chainlink-0_4/node.log | 1021 -------- .../qa-mock-adapter_0/qa-mock-adapter.log | 244 -- .../sol_0/sol-val.log | 1801 ------------- 52 files changed, 10 insertions(+), 29012 deletions(-) delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log delete mode 100644 integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log delete mode 100644 integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log diff --git a/.github/workflows/e2e_testnet_daily.yml b/.github/workflows/e2e_testnet_daily.yml index e8bcde2c5..5c616e0ee 100644 --- a/.github/workflows/e2e_testnet_daily.yml +++ b/.github/workflows/e2e_testnet_daily.yml @@ -1,6 +1,5 @@ name: e2e_testnet_daily on: - pull_request: workflow_dispatch: inputs: cl_branch_ref: @@ -23,7 +22,7 @@ on: required: true type: string schedule: - - cron: '0 * * * *' + - cron: '0 6 * * *' env: CL_ECR: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/chainlink ENV_JOB_IMAGE: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/chainlink-solana-tests:${{ github.sha }} @@ -163,6 +162,15 @@ jobs: CHAINLINK_ENV_USER: ${{ github.actor }} TEST_LOG_LEVEL: debug SELECTED_NETWORKS: SIMULATED + RPC_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.RPC_URL || 'https://api.devnet.solana.com' }} + WS_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.WS_URL || 'wss://api.devnet.solana.com/' }} + PROGRAM_ID_OCR2: cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ + PROGRAM_ID_ACCESS_CONTROLLER: 9xi644bRR8birboDGdTiwBq3C7VEeR7VuamRYYXCubUW + PROGRAM_ID_STORE: HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny + LINK_TOKEN: Dmw5mDvteezKfop9zd3RQbJmZfBATF3QuSqDU66axyts + VAULT_ADDRESS: G27m7KxTh4KVLapxB9MXfEA8HLUfYuGYQ1ELEs2zQdiQ + PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} + INTERNAL_DOCKER_REPO: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com steps: - name: Collect Metrics if: always() @@ -176,16 +184,6 @@ jobs: - name: Checkout the repo uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 - name: Run Tests - env: - RPC_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.RPC_URL || 'https://api.devnet.solana.com' }} - WS_URL: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.WS_URL || 'wss://api.devnet.solana.com/' }} - PROGRAM_ID_OCR2: cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ - PROGRAM_ID_ACCESS_CONTROLLER: 9xi644bRR8birboDGdTiwBq3C7VEeR7VuamRYYXCubUW - PROGRAM_ID_STORE: HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny - LINK_TOKEN: D2iCBaWktubtRd9ZA1wtynyJczCVptZdxDgvvRFEJXp - VAULT_ADDRESS: AvmwSaPm5NDRzhwVdAieYz6moZeMcWBsnM7V41jVwejD - PRIVATE_KEY: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.PRIVATE_KEY || secrets.PRIVATE_KEY }} - INTERNAL_DOCKER_REPO: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@ad22fbd6f4d108b82aaf49b527bcf40f32babea8 # v2.2.1 with: test_command_to_run: cd ./integration-tests && go test -timeout 24h -count=1 -run TestSolanaGauntletOCRV2Smoke -json $(args) ./smoke 2>&1 | tee /tmp/gotest.log | gotestfmt diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log deleted file mode 100644 index b75d79281..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-03 05:56:40.051 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.063 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC -2023-08-03 05:56:40.136 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-03 05:56:40.752 UTC [48] LOG: received fast shutdown request -.2023-08-03 05:56:40.755 UTC [48] LOG: aborting any active transactions -2023-08-03 05:56:40.756 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 05:56:40.757 UTC [50] LOG: shutting down -2023-08-03 05:56:40.848 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 05:56:40.862 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 05:56:40.862 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 05:56:40.864 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.965 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC -2023-08-03 05:56:40.984 UTC [1] LOG: database system is ready to accept connections -2023-08-03 05:56:42.683 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 05:56:43.546 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 05:56:43.546 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 05:56:43.546 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 05:56:43.546 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 05:56:43.636 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 05:56:43.636 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log deleted file mode 100644 index c06a535c9..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_0/node.log +++ /dev/null @@ -1,1053 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:43.449Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-03T05:56:43.456Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.456Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.456Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"428b4e5b-108e-4531-86e6-2ab90e53ee9d"} -{"level":"debug","ts":"2023-08-03T05:56:43.544Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"428b4e5b-108e-4531-86e6-2ab90e53ee9d"} -{"level":"debug","ts":"2023-08-03T05:56:43.546Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/03 05:56:44 OK 0001_initial.sql -2023/08/03 05:56:44 OK 0002_gormv2.sql -2023/08/03 05:56:44 OK 0003_eth_logs_table.sql -2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql -2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql -2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 05:56:44 OK 0010_bridge_fk.sql -2023/08/03 05:56:44 OK 0011_latest_round_requested.sql -2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql -2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql -2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql -2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 05:56:44 OK 0018_add_node_version_table.sql -2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 05:56:44 OK 0020_remove_result_task.sql -2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql -2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql -2023/08/03 05:56:44 OK 0025_create_log_config_table.sql -2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql -2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 05:56:44 OK 0028_vrf_v2.sql -2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql -2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql -2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql -2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql -2023/08/03 05:56:44 OK 0036_external_job_id.go -2023/08/03 05:56:44 OK 0037_cascade_deletes.sql -2023/08/03 05:56:44 OK 0038_create_csa_keys.sql -2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql -2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql -2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql -2023/08/03 05:56:44 OK 0042_create_job_proposals.sql -2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go -2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 05:56:44 OK 0056_multichain.go -2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql -2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql -2023/08/03 05:56:44 OK 0061_multichain_relations.sql -2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql -2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql -2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql -2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql -2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql -2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql -2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql -2023/08/03 05:56:44 OK 0075_unique_job_names.sql -2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql -2023/08/03 05:56:44 OK 0078_only_one_version.sql -2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql -2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql -2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 05:56:44 OK 0082_lease_lock.sql -2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql -2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 05:56:44 OK 0087_ocr2_tables.sql -2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql -2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql -2023/08/03 05:56:44 OK 0091_ocr2_relay.sql -2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql -2023/08/03 05:56:44 OK 0093_terra_txm.sql -2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql -2023/08/03 05:56:44 OK 0095_terra_fcd.sql -2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql -2023/08/03 05:56:44 OK 0097_bootstrap_spec.sql -2023/08/03 05:56:44 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 05:56:44 OK 0099_terra_msgs_created_at.sql -2023/08/03 05:56:44 OK 0100_bootstrap_config.sql -2023/08/03 05:56:44 OK 0101_generic_ocr2.sql -2023/08/03 05:56:44 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 05:56:44 OK 0103_terra_msgs_type_url.sql -2023/08/03 05:56:44 OK 0104_terra_cascade_delete.sql -2023/08/03 05:56:44 OK 0105_create_forwarder_addresses.sql -2023/08/03 05:56:44 OK 0106_evm_node_uniqueness.sql -2023/08/03 05:56:44 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 05:56:44 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 05:56:44 OK 0109_solana_chains_nodes.sql -2023/08/03 05:56:44 OK 0110_add_vrf_chunk_size.sql -2023/08/03 05:56:44 OK 0111_terra_msgs_state_started.sql -2023/08/03 05:56:44 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 05:56:44 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 05:56:44 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 05:56:44 OK 0115_log_poller.sql -2023/08/03 05:56:44 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 05:56:44 OK 0117_add_log_poller_idx.sql -2023/08/03 05:56:44 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 05:56:44 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 05:56:44 OK 0120_log_poller_data_idx.sql -2023/08/03 05:56:44 OK 0121_remove_log_configs.sql -2023/08/03 05:56:44 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 05:56:44 OK 0123_terra_idx_simplify.sql -2023/08/03 05:56:44 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 05:56:44 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 05:56:44 OK 0126_remove_observation_source.sql -2023/08/03 05:56:44 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 05:56:44 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 05:56:44 OK 0129_add_job_gas_limit.sql -2023/08/03 05:56:44 OK 0130_starknet_chains_nodes.sql -2023/08/03 05:56:44 OK 0131_add_multi_user.sql -2023/08/03 05:56:44 OK 0132_log_index_uniqueness.sql -2023/08/03 05:56:44 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 05:56:44 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 05:56:44 OK 0135_tx_index_not_null.sql -2023/08/03 05:56:44 OK 0136_add_job_allow_forwarding.sql -2023/08/03 05:56:44 OK 0137_remove_tx_index.sql -2023/08/03 05:56:44 OK 0138_rename_allowforwarding_field.sql -2023/08/03 05:56:44 OK 0139_multi_chain_keys.sql -2023/08/03 05:56:44 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 05:56:44 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 05:56:44 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 05:56:44 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 05:56:44 OK 0144_optimize_lp.sql -2023/08/03 05:56:44 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0148_dkg_shares.sql -2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql -2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql -2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql -2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql -2023/08/03 05:56:45 OK 0155_remove_terra.sql -2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql -2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql -2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql -2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql -2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 05:56:45 OK 0164_add_cosmos.sql -2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql -2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql -2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 05:56:45 OK 0168_drop_node_tables.sql -2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql -2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql -2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql -2023/08/03 05:56:45 OK 0174_vrf_owner.sql -2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql -2023/08/03 05:56:45 OK 0176_s4_shared_table.sql -2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql -2023/08/03 05:56:45 OK 0178_drop_access_list.sql -2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql -2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql -2023/08/03 05:56:45 OK 0183_functions_new_fields.sql -2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql -2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 05:56:45 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.251Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.263Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 29a721b41a5d16504ae2c9ccd6cb3a0ac921d5c408d5185e14ae0e791c83d02d for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.263Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:51.443Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 7vbZyBEL4FjQ3MMySnHfLi5egEBiLfmH1tNnpb878jGU","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:53.363Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 50b2e1f40d84d3fb7cc6c3da1adea1ee2c801b6ab5143fa090710115cc6dfaae","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.556Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.745Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.745Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T05:56:55.746Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T05:56:55.746Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T05:56:55.746Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T05:56:55.746Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.746Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-03T05:56:55.747Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 46367. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":46367} -{"level":"debug","ts":"2023-08-03T05:56:55.747Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":46367,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T05:56:55.748Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenPort":46367,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/46367","id":"PeerV1","v1peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:56:55.748Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:56:55.749Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","in":"recvLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:56:55.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:56:55.751Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T05:56:55.751Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.751Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.01s","version":"2.4.0@d0c54ea","appID":"428b4e5b-108e-4531-86e6-2ab90e53ee9d"} -{"level":"debug","ts":"2023-08-03T05:56:55.752Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000713153} -{"level":"info","ts":"2023-08-03T05:56:55.759Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T05:56:55.763Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010950662} -{"level":"debug","ts":"2023-08-03T05:56:55.763Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:57.157Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:56:57","latency":"2.696402ms"} -{"level":"debug","ts":"2023-08-03T05:56:57.158Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:56:57","latency":"210.437µs"} -{"level":"debug","ts":"2023-08-03T05:57:00.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:57:00.750Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T05:57:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:02","latency":"109.212µs"} -{"level":"debug","ts":"2023-08-03T05:57:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:02","latency":"100.643µs"} -{"level":"info","ts":"2023-08-03T05:57:05.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-03T05:57:05.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:07","latency":"96.005µs"} -{"level":"debug","ts":"2023-08-03T05:57:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:07","latency":"90.19µs"} -{"level":"debug","ts":"2023-08-03T05:57:10.750Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:12","latency":"94.001µs"} -{"level":"debug","ts":"2023-08-03T05:57:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:12","latency":"89.237µs"} -{"level":"debug","ts":"2023-08-03T05:57:15.751Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:17","latency":"106.193µs"} -{"level":"debug","ts":"2023-08-03T05:57:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:17","latency":"114.054µs"} -{"level":"debug","ts":"2023-08-03T05:57:20.752Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:22","latency":"88.844µs"} -{"level":"debug","ts":"2023-08-03T05:57:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:22","latency":"94.164µs"} -{"level":"debug","ts":"2023-08-03T05:57:25.752Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:27","latency":"93.404µs"} -{"level":"debug","ts":"2023-08-03T05:57:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:27","latency":"89.028µs"} -{"level":"debug","ts":"2023-08-03T05:57:30.753Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:32","latency":"93.04µs"} -{"level":"debug","ts":"2023-08-03T05:57:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:32","latency":"95.591µs"} -{"level":"debug","ts":"2023-08-03T05:57:33.272Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:57:33.274Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T05:57:33.357Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T05:57:33.358Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:33","latency":"85.799271ms"} -{"level":"debug","ts":"2023-08-03T05:57:35.754Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:57:36.475Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:36","latency":"2.506501ms"} -{"level":"debug","ts":"2023-08-03T05:57:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:37","latency":"163.889µs"} -{"level":"debug","ts":"2023-08-03T05:57:37.157Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:37","latency":"95.008µs"} -{"level":"debug","ts":"2023-08-03T05:57:38.556Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:38","latency":"1.876749347s"} -{"level":"debug","ts":"2023-08-03T05:57:40.754Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:57:40.859Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:40","latency":"2.097825133s"} -{"level":"debug","ts":"2023-08-03T05:57:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:42","latency":"95.122µs"} -{"level":"debug","ts":"2023-08-03T05:57:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:42","latency":"78.444µs"} -{"level":"debug","ts":"2023-08-03T05:57:45.755Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:47","latency":"93.08µs"} -{"level":"debug","ts":"2023-08-03T05:57:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:47","latency":"104.451µs"} -{"level":"debug","ts":"2023-08-03T05:57:50.756Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:52","latency":"95.024µs"} -{"level":"debug","ts":"2023-08-03T05:57:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:52","latency":"92.944µs"} -{"level":"debug","ts":"2023-08-03T05:57:55.756Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:57","latency":"92.793µs"} -{"level":"debug","ts":"2023-08-03T05:57:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:57:57","latency":"118.944µs"} -{"level":"debug","ts":"2023-08-03T05:58:00.165Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"57.285µs"} -{"level":"debug","ts":"2023-08-03T05:58:00.370Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"68.073µs"} -{"level":"debug","ts":"2023-08-03T05:58:00.757Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:02","latency":"105.294µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:02","latency":"104.809µs"} -{"level":"debug","ts":"2023-08-03T05:58:05.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:07","latency":"89.335µs"} -{"level":"debug","ts":"2023-08-03T05:58:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:07","latency":"72.815µs"} -{"level":"debug","ts":"2023-08-03T05:58:10.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:12","latency":"96.886µs"} -{"level":"debug","ts":"2023-08-03T05:58:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:12","latency":"85.7µs"} -{"level":"debug","ts":"2023-08-03T05:58:15.759Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:17","latency":"85.581µs"} -{"level":"debug","ts":"2023-08-03T05:58:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:17","latency":"73.529µs"} -{"level":"debug","ts":"2023-08-03T05:58:20.759Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:22","latency":"100.731µs"} -{"level":"debug","ts":"2023-08-03T05:58:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:22","latency":"89.579µs"} -{"level":"debug","ts":"2023-08-03T05:58:25.760Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:27","latency":"88.838µs"} -{"level":"debug","ts":"2023-08-03T05:58:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:27","latency":"102.254µs"} -{"level":"debug","ts":"2023-08-03T05:58:30.760Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:32","latency":"86.212µs"} -{"level":"debug","ts":"2023-08-03T05:58:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:32","latency":"96.417µs"} -{"level":"debug","ts":"2023-08-03T05:58:35.760Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:37","latency":"82.768µs"} -{"level":"debug","ts":"2023-08-03T05:58:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:37","latency":"86.439µs"} -{"level":"debug","ts":"2023-08-03T05:58:40.761Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:58:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:42","latency":"84.071µs"} -{"level":"debug","ts":"2023-08-03T05:58:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:42","latency":"91.016µs"} -{"level":"debug","ts":"2023-08-03T05:58:45.762Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:47","latency":"95.305µs"} -{"level":"debug","ts":"2023-08-03T05:58:47.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:47","latency":"96.68µs"} -{"level":"debug","ts":"2023-08-03T05:58:50.762Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:52","latency":"81.558µs"} -{"level":"debug","ts":"2023-08-03T05:58:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:52","latency":"84.507µs"} -{"level":"debug","ts":"2023-08-03T05:58:55.763Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:57","latency":"89.034µs"} -{"level":"debug","ts":"2023-08-03T05:58:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:58:57","latency":"78.538µs"} -{"level":"debug","ts":"2023-08-03T05:59:00.763Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:59:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:02","latency":"90.085µs"} -{"level":"debug","ts":"2023-08-03T05:59:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:02","latency":"95.474µs"} -{"level":"debug","ts":"2023-08-03T05:59:05.763Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:59:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:07","latency":"89.107µs"} -{"level":"debug","ts":"2023-08-03T05:59:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:07","latency":"88.455µs"} -{"level":"debug","ts":"2023-08-03T05:59:10.764Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:12","latency":"84.335µs"} -{"level":"debug","ts":"2023-08-03T05:59:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:12","latency":"85.009µs"} -{"level":"debug","ts":"2023-08-03T05:59:15.765Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:17","latency":"79.178µs"} -{"level":"debug","ts":"2023-08-03T05:59:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:17","latency":"90.877µs"} -{"level":"debug","ts":"2023-08-03T05:59:20.765Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:59:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:22","latency":"98.401µs"} -{"level":"debug","ts":"2023-08-03T05:59:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:22","latency":"96.513µs"} -{"level":"debug","ts":"2023-08-03T05:59:25.766Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:27","latency":"85.57µs"} -{"level":"debug","ts":"2023-08-03T05:59:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:27","latency":"85.283µs"} -{"level":"debug","ts":"2023-08-03T05:59:30.766Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:32","latency":"90.58µs"} -{"level":"debug","ts":"2023-08-03T05:59:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:32","latency":"79.461µs"} -{"level":"debug","ts":"2023-08-03T05:59:35.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:59:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:37","latency":"90.125µs"} -{"level":"debug","ts":"2023-08-03T05:59:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:37","latency":"76.582µs"} -{"level":"debug","ts":"2023-08-03T05:59:40.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:59:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:42","latency":"97.358µs"} -{"level":"debug","ts":"2023-08-03T05:59:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:42","latency":"154.471µs"} -{"level":"debug","ts":"2023-08-03T05:59:45.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T05:59:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:47","latency":"93.556µs"} -{"level":"debug","ts":"2023-08-03T05:59:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:47","latency":"100.719µs"} -{"level":"debug","ts":"2023-08-03T05:59:50.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:52","latency":"95.772µs"} -{"level":"debug","ts":"2023-08-03T05:59:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:52","latency":"98.778µs"} -{"level":"debug","ts":"2023-08-03T05:59:55.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:57","latency":"82.477µs"} -{"level":"debug","ts":"2023-08-03T05:59:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 05:59:57","latency":"86.427µs"} -{"level":"debug","ts":"2023-08-03T06:00:00.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:02","latency":"72.808µs"} -{"level":"debug","ts":"2023-08-03T06:00:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:02","latency":"103.648µs"} -{"level":"debug","ts":"2023-08-03T06:00:05.770Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:07","latency":"93.94µs"} -{"level":"debug","ts":"2023-08-03T06:00:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:07","latency":"96.286µs"} -{"level":"debug","ts":"2023-08-03T06:00:10.771Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:00:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:12","latency":"96.906µs"} -{"level":"debug","ts":"2023-08-03T06:00:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:12","latency":"110.979µs"} -{"level":"debug","ts":"2023-08-03T06:00:15.772Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:17","latency":"95.847µs"} -{"level":"debug","ts":"2023-08-03T06:00:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:17","latency":"90.033µs"} -{"level":"debug","ts":"2023-08-03T06:00:20.772Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:00:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:22","latency":"86.812µs"} -{"level":"debug","ts":"2023-08-03T06:00:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:22","latency":"82.501µs"} -{"level":"debug","ts":"2023-08-03T06:00:25.773Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:27","latency":"84.123µs"} -{"level":"debug","ts":"2023-08-03T06:00:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:27","latency":"88.256µs"} -{"level":"debug","ts":"2023-08-03T06:00:30.773Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:00:32.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:32","latency":"88.318µs"} -{"level":"debug","ts":"2023-08-03T06:00:32.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:32","latency":"103.685µs"} -{"level":"debug","ts":"2023-08-03T06:00:35.774Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:37","latency":"83.798µs"} -{"level":"debug","ts":"2023-08-03T06:00:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:37","latency":"87.143µs"} -{"level":"debug","ts":"2023-08-03T06:00:40.775Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:00:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:42","latency":"100.145µs"} -{"level":"debug","ts":"2023-08-03T06:00:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:42","latency":"98.819µs"} -{"level":"debug","ts":"2023-08-03T06:00:45.776Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:47","latency":"91.315µs"} -{"level":"debug","ts":"2023-08-03T06:00:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:47","latency":"89.76µs"} -{"level":"debug","ts":"2023-08-03T06:00:50.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:52","latency":"91.225µs"} -{"level":"debug","ts":"2023-08-03T06:00:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:52","latency":"84.401µs"} -{"level":"debug","ts":"2023-08-03T06:00:55.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:00:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:57","latency":"88.766µs"} -{"level":"debug","ts":"2023-08-03T06:00:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:00:57","latency":"82.989µs"} -{"level":"debug","ts":"2023-08-03T06:01:00.778Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:02","latency":"110.096µs"} -{"level":"debug","ts":"2023-08-03T06:01:02.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:02","latency":"117.066µs"} -{"level":"debug","ts":"2023-08-03T06:01:05.779Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:07","latency":"88.715µs"} -{"level":"debug","ts":"2023-08-03T06:01:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:07","latency":"122.265µs"} -{"level":"debug","ts":"2023-08-03T06:01:10.780Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:12","latency":"92.658µs"} -{"level":"debug","ts":"2023-08-03T06:01:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:12","latency":"99.806µs"} -{"level":"debug","ts":"2023-08-03T06:01:15.780Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:17","latency":"92.036µs"} -{"level":"debug","ts":"2023-08-03T06:01:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:17","latency":"97.519µs"} -{"level":"debug","ts":"2023-08-03T06:01:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:22","latency":"111.395µs"} -{"level":"debug","ts":"2023-08-03T06:01:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:22","latency":"75.706µs"} -{"level":"debug","ts":"2023-08-03T06:01:25.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:27","latency":"86.575µs"} -{"level":"debug","ts":"2023-08-03T06:01:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:27","latency":"84.295µs"} -{"level":"debug","ts":"2023-08-03T06:01:30.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:32","latency":"98.291µs"} -{"level":"debug","ts":"2023-08-03T06:01:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:32","latency":"112.592µs"} -{"level":"debug","ts":"2023-08-03T06:01:35.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:37","latency":"86.798µs"} -{"level":"debug","ts":"2023-08-03T06:01:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:37","latency":"85.319µs"} -{"level":"debug","ts":"2023-08-03T06:01:40.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:01:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:42","latency":"97.506µs"} -{"level":"debug","ts":"2023-08-03T06:01:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:42","latency":"71.706µs"} -{"level":"debug","ts":"2023-08-03T06:01:45.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:47","latency":"92.277µs"} -{"level":"debug","ts":"2023-08-03T06:01:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:47","latency":"82.416µs"} -{"level":"debug","ts":"2023-08-03T06:01:50.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:52","latency":"78.775µs"} -{"level":"debug","ts":"2023-08-03T06:01:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:52","latency":"106.084µs"} -{"level":"debug","ts":"2023-08-03T06:01:55.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:57","latency":"97.215µs"} -{"level":"debug","ts":"2023-08-03T06:01:57.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:01:57","latency":"86.858µs"} -{"level":"debug","ts":"2023-08-03T06:02:00.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:02:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:02","latency":"91.494µs"} -{"level":"debug","ts":"2023-08-03T06:02:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:02","latency":"90.272µs"} -{"level":"info","ts":"2023-08-03T06:02:05.749Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0} -{"level":"debug","ts":"2023-08-03T06:02:05.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:07","latency":"87.637µs"} -{"level":"debug","ts":"2023-08-03T06:02:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:07","latency":"83.586µs"} -{"level":"debug","ts":"2023-08-03T06:02:10.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:02:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:12","latency":"94.105µs"} -{"level":"debug","ts":"2023-08-03T06:02:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:12","latency":"84.427µs"} -{"level":"debug","ts":"2023-08-03T06:02:15.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:16.256Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:16","latency":"95.124µs"} -{"level":"debug","ts":"2023-08-03T06:02:16.463Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:16","latency":"32.521µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:17","latency":"99.733µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:17","latency":"92.978µs"} -{"level":"debug","ts":"2023-08-03T06:02:20.030Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:20","latency":"3.207534ms"} -{"level":"info","ts":"2023-08-03T06:02:20.256Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} -{"level":"debug","ts":"2023-08-03T06:02:20.257Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-03T06:02:20.257Z","caller":"ocrbootstrap/delegate.go:110","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:02:20.257Z","caller":"ocrbootstrap/delegate.go:127","msg":"Launching new bootstrap node","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","args":{"BootstrapperFactory":{"BinaryNetworkEndpointFactory":{},"BootstrapperFactory":{}},"V2Bootstrappers":null,"ContractConfigTracker":{},"Database":{},"LocalConfig":{"BlockchainTimeout":20000000000,"ContractConfigConfirmations":1,"SkipContractConfigConfirmations":false,"ContractConfigTrackerPollInterval":15000000000,"ContractTransmitterTransmitTimeout":10000000000,"DatabaseTimeout":10000000000,"MinOCR2MaxDurationQuery":0,"DevelopmentMode":""},"Logger":{},"MonitoringEndpoint":null,"OffchainConfigDigester":{"ProgramID":"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ","StateID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy"}}} -{"level":"debug","ts":"2023-08-03T06:02:20.257Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} -{"level":"debug","ts":"2023-08-03T06:02:20.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} -{"level":"info","ts":"2023-08-03T06:02:20.424Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} -{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:20.424Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:20.425Z","logger":"OCRBootstrap","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"info","ts":"2023-08-03T06:02:20.425Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:02:20.425Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"bootstrap\\\"\\nname = \\\"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7\\\"\\nforwardingAllowed = false\\n\\n\\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\n\\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:20","latency":"176.052515ms"} -{"level":"debug","ts":"2023-08-03T06:02:20.592Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":null,"peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479"} -{"level":"info","ts":"2023-08-03T06:02:20.592Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:02:20.596Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","numLoaded":1,"found":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"],"loaded":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"],"peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"numQueried":5,"numFound":1} -{"level":"info","ts":"2023-08-03T06:02:20.596Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:46","msg":"BootstrapperV2: Initialized","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"bootstrapperV2","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","bootstrappers":null,"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"PeerV2"} -{"level":"info","ts":"2023-08-03T06:02:20.596Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:81","msg":"BootstrapperV2: Started listening","version":"2.4.0@d0c54ea","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"PeerV2","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"bootstrapperV2"} -{"level":"debug","ts":"2023-08-03T06:02:20.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:21.491Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:21.658Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:22","latency":"84.365µs"} -{"level":"debug","ts":"2023-08-03T06:02:22.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:22","latency":"73.966µs"} -{"level":"debug","ts":"2023-08-03T06:02:22.590Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:22.758Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:23.683Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:23.850Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:24.750Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:24.918Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:24.991Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:24.992Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:02:25.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:25.835Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:26.003Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:26.933Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:27.100Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:27","latency":"84.455µs"} -{"level":"debug","ts":"2023-08-03T06:02:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:27","latency":"89.07µs"} -{"level":"debug","ts":"2023-08-03T06:02:27.942Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:28.109Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:28.993Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:29.160Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:30.090Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:30.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:30.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:31.142Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:31.310Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:32","latency":"71.991µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:32","latency":"110.312µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.172Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:32.339Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:33.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:33.255Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.423Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:34.295Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:34.462Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.381Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.549Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.759Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:02:35.790Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-03T06:02:36.002Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","direction":"in","remoteAddr":"10.14.116.75:50564","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:36.392Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:36.560Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:37","latency":"84.797µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:37","latency":"120.824µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.474Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:37.641Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.564Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.731Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:38.983Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:02:39.628Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:39.795Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:40.631Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:40.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:40.798Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:41.656Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:41.824Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:42","latency":"88.602µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:42","latency":"87.881µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.755Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:42.923Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:43.846Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:44.013Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:44.866Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:44.879Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:02:45.033Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:45.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:45.957Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.124Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.966Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.134Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:47","latency":"91.42µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:47","latency":"91.712µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.973Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.140Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.184Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.052Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.219Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:50.556Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.31.21:46286","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","direction":"in"} -{"level":"info","ts":"2023-08-03T06:02:50.556Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-03T06:02:50.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:50.927Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"info","ts":"2023-08-03T06:02:51.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-03T06:02:51.136Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.303Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:52","latency":"84.836µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:52","latency":"87.849µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.375Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:53.132Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:53.273Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.441Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.331Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.498Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.408Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.575Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:56.507Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.675Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:57","latency":"92.671µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:02:57","latency":"68.647µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.727Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.631Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.799Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:02:59.650Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:59.674Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.841Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.742Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:00.910Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.982Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:02","latency":"90.837µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:02","latency":"77.765µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.828Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.996Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.895Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.062Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:04.838Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","direction":"in","remoteAddr":"10.14.72.41:42356"} -{"level":"info","ts":"2023-08-03T06:03:04.838Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","streamName":"ragedisco/v1","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd"} -{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}"} -{"level":"debug","ts":"2023-08-03T06:03:04.946Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.113Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:06.029Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.095Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:03:06.196Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.042Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:07","latency":"81.781µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:07","latency":"88.297µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.210Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.559Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:03:07.559Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:03:08.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.275Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.111Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.278Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.183Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.351Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:11.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.375Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:12","latency":"96.623µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:12","latency":"116.376µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.303Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.470Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:13.014Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.48.92:45724","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","direction":"in"} -{"level":"info","ts":"2023-08-03T06:03:13.015Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:03:13.334Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.502Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.391Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.473Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.640Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:03:16.516Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.684Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:16.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:17","latency":"90.767µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:17","latency":"85.796µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.575Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.743Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.671Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.838Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.703Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.870Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.742Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:20.910Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.263Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:03:21.811Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:22","latency":"90.482µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:22","latency":"92.362µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.832Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.000Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.929Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.097Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.937Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.105Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:25.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.145Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.146Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:27","latency":"81.914µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:27","latency":"77.072µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.997Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.164Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.013Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.180Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.069Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.237Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.798Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:31.096Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.263Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.137Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:32","latency":"80.571µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:32","latency":"84.24µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.304Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.168Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.335Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.186Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.354Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.247Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.414Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:03:36.281Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.431Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:03:36.449Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:37","latency":"77.038µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:37","latency":"107.275µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.332Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.499Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.342Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.434Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.601Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.522Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.690Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:03:41.523Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.690Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:42","latency":"75.815µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:42","latency":"130.213µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.584Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.752Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.790Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.676Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.844Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.754Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:45.921Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.797Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.964Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:47","latency":"87.68µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:47","latency":"92.434µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.881Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.049Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.899Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.067Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.940Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:50.964Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.132Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.599Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:03:52.023Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:52","latency":"91.623µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:52","latency":"71.266µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.191Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.047Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.214Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.112Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.280Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.126Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.293Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.802Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:56.146Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.313Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:57","latency":"96.643µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:03:57","latency":"67.651µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.177Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.345Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.192Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.359Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.253Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.421Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.493Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:01.342Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:02","latency":"83.469µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:02","latency":"88.167µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.394Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.561Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.394Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.561Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.395Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.562Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.423Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.591Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:04:06.459Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.626Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.767Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:04:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:07","latency":"70.354µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:07","latency":"111.376µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.519Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.686Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.726Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.572Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.740Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.648Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:10.815Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.687Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.855Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:12","latency":"77.849µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:12","latency":"86.026µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.740Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.908Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.775Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.942Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.786Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.954Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:04:15.817Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.985Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.906Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.073Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:17","latency":"78.735µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:17","latency":"84.367µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.954Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.122Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.027Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.194Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.079Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.247Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:21.155Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.323Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.935Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:04:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:22","latency":"99.642µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:22","latency":"73.713µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.403Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.245Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.412Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.264Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.431Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.331Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.499Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:26.414Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.581Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:27","latency":"73.456µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:27","latency":"112.847µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.482Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.649Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.482Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.650Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.493Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.660Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.553Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.721Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:04:31.559Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.727Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:32","latency":"85.747µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:32","latency":"87.495µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.613Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.780Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.629Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.796Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.657Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.825Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.719Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:35.886Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.781Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.949Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.103Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:04:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:37","latency":"113.377µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.155Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:37","latency":"73.837µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.806Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.973Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.869Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.037Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.885Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.052Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:04:40.960Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.127Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.966Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.134Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:42","latency":"86.947µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:42","latency":"70.742µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.990Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.158Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.090Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.102Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.270Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:46.122Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.290Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:47","latency":"84.9µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:47","latency":"82.947µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.202Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.369Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.265Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.433Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.349Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.517Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.406Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.573Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.811Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:51.501Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.668Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:52","latency":"89.142µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:52","latency":"79.657µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.271Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:04:52.592Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.760Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.602Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.769Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.648Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.815Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.675Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:04:55.842Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.678Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.846Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:57","latency":"83.337µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:04:57","latency":"85µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.685Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.853Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.721Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.888Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.730Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.897Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.779Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:00.946Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.826Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.994Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:02","latency":"85.612µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:02","latency":"82.785µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.917Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.085Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.975Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.142Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.990Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.157Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.814Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:06.020Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.187Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.036Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:07","latency":"103.081µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:07","latency":"102.842µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.204Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.438Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:05:08.039Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.206Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.073Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.241Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.123Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.291Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:11.124Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.292Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:12","latency":"100.553µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:12","latency":"111.037µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.157Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.182Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.349Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.224Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.391Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.300Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.468Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:16.339Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.507Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:17","latency":"85.169µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:17","latency":"86.636µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.342Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.374Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.541Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.469Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.636Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.535Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.703Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:21.629Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.797Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:22","latency":"82.216µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:22","latency":"75.399µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.606Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:05:22.667Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.834Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.684Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.852Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.691Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.859Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.770Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.818Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:25.937Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.804Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.971Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:27","latency":"86.174µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:27","latency":"91.614µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.871Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.038Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.913Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.080Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.940Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:30.943Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.110Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.040Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.665µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:32","latency":"84.616µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.207Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.140Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.307Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.227Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.395Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.237Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.404Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:36.263Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.430Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:37","latency":"90.069µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:37","latency":"106.295µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.314Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.481Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.774Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-112352b0-8db1-4386-83f0-61d46b2c6ac7","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","feedID":""} -{"level":"debug","ts":"2023-08-03T06:05:38.380Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.548Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.421Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.588Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.492Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:41.505Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.672Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:42","latency":"92.507µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.154Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.118.164","errors":"","servedAt":"2023-08-03 06:05:42","latency":"78.974µs"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log deleted file mode 100644 index 7c2d1f8dd..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - -waiting for server to start....2023-08-03 05:56:39.954 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:39.968 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC -2023-08-03 05:56:39.972 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -2023-08-03 05:56:40.673 UTC [48] LOG: received fast shutdown request -waiting for server to shut down....2023-08-03 05:56:40.689 UTC [48] LOG: aborting any active transactions -2023-08-03 05:56:40.690 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 05:56:40.746 UTC [50] LOG: shutting down -2023-08-03 05:56:40.764 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 05:56:40.782 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 05:56:40.782 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 05:56:40.784 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.851 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC -2023-08-03 05:56:40.856 UTC [1] LOG: database system is ready to accept connections -2023-08-03 05:56:42.648 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 05:56:43.654 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 05:56:43.654 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 05:56:43.654 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 05:56:43.654 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 05:56:43.655 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 05:56:43.655 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log deleted file mode 100644 index c9a9f34c5..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_1/node.log +++ /dev/null @@ -1,1963 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T05:56:43.454Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.546Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.546Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:43.547Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-03T05:56:43.647Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.647Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.647Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"e3751374-a428-4a6a-b42f-8756d9e3c95c"} -{"level":"debug","ts":"2023-08-03T05:56:43.652Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"e3751374-a428-4a6a-b42f-8756d9e3c95c"} -{"level":"debug","ts":"2023-08-03T05:56:43.654Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/03 05:56:44 OK 0001_initial.sql -2023/08/03 05:56:44 OK 0002_gormv2.sql -2023/08/03 05:56:44 OK 0003_eth_logs_table.sql -2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql -2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql -2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 05:56:44 OK 0010_bridge_fk.sql -2023/08/03 05:56:44 OK 0011_latest_round_requested.sql -2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql -2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql -2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql -2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 05:56:44 OK 0018_add_node_version_table.sql -2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 05:56:44 OK 0020_remove_result_task.sql -2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql -2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql -2023/08/03 05:56:44 OK 0025_create_log_config_table.sql -2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql -2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 05:56:44 OK 0028_vrf_v2.sql -2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql -2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql -2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql -2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql -2023/08/03 05:56:44 OK 0036_external_job_id.go -2023/08/03 05:56:44 OK 0037_cascade_deletes.sql -2023/08/03 05:56:44 OK 0038_create_csa_keys.sql -2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql -2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql -2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql -2023/08/03 05:56:44 OK 0042_create_job_proposals.sql -2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go -2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 05:56:44 OK 0056_multichain.go -2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql -2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql -2023/08/03 05:56:44 OK 0061_multichain_relations.sql -2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql -2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql -2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql -2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql -2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql -2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql -2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql -2023/08/03 05:56:44 OK 0075_unique_job_names.sql -2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql -2023/08/03 05:56:44 OK 0078_only_one_version.sql -2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql -2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql -2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 05:56:44 OK 0082_lease_lock.sql -2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql -2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 05:56:44 OK 0087_ocr2_tables.sql -2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql -2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql -2023/08/03 05:56:44 OK 0091_ocr2_relay.sql -2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql -2023/08/03 05:56:44 OK 0093_terra_txm.sql -2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql -2023/08/03 05:56:44 OK 0095_terra_fcd.sql -2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql -2023/08/03 05:56:44 OK 0097_bootstrap_spec.sql -2023/08/03 05:56:44 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 05:56:44 OK 0099_terra_msgs_created_at.sql -2023/08/03 05:56:44 OK 0100_bootstrap_config.sql -2023/08/03 05:56:44 OK 0101_generic_ocr2.sql -2023/08/03 05:56:44 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 05:56:44 OK 0103_terra_msgs_type_url.sql -2023/08/03 05:56:44 OK 0104_terra_cascade_delete.sql -2023/08/03 05:56:44 OK 0105_create_forwarder_addresses.sql -2023/08/03 05:56:44 OK 0106_evm_node_uniqueness.sql -2023/08/03 05:56:44 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 05:56:44 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 05:56:44 OK 0109_solana_chains_nodes.sql -2023/08/03 05:56:44 OK 0110_add_vrf_chunk_size.sql -2023/08/03 05:56:44 OK 0111_terra_msgs_state_started.sql -2023/08/03 05:56:44 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 05:56:44 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 05:56:44 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 05:56:44 OK 0115_log_poller.sql -2023/08/03 05:56:44 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 05:56:44 OK 0117_add_log_poller_idx.sql -2023/08/03 05:56:44 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 05:56:44 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 05:56:44 OK 0120_log_poller_data_idx.sql -2023/08/03 05:56:44 OK 0121_remove_log_configs.sql -2023/08/03 05:56:44 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 05:56:44 OK 0123_terra_idx_simplify.sql -2023/08/03 05:56:44 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 05:56:44 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 05:56:44 OK 0126_remove_observation_source.sql -2023/08/03 05:56:44 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 05:56:44 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 05:56:44 OK 0129_add_job_gas_limit.sql -2023/08/03 05:56:44 OK 0130_starknet_chains_nodes.sql -2023/08/03 05:56:44 OK 0131_add_multi_user.sql -2023/08/03 05:56:44 OK 0132_log_index_uniqueness.sql -2023/08/03 05:56:44 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 05:56:44 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 05:56:44 OK 0135_tx_index_not_null.sql -2023/08/03 05:56:44 OK 0136_add_job_allow_forwarding.sql -2023/08/03 05:56:44 OK 0137_remove_tx_index.sql -2023/08/03 05:56:44 OK 0138_rename_allowforwarding_field.sql -2023/08/03 05:56:44 OK 0139_multi_chain_keys.sql -2023/08/03 05:56:44 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 05:56:44 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 05:56:44 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 05:56:44 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 05:56:44 OK 0144_optimize_lp.sql -2023/08/03 05:56:44 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 05:56:44 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 05:56:44 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 05:56:44 OK 0148_dkg_shares.sql -2023/08/03 05:56:44 OK 0149_bridge_last_good_value.sql -2023/08/03 05:56:44 OK 0150_gaslaneprice_vrf.sql -2023/08/03 05:56:44 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 05:56:44 OK 0152_ocr2_multichain.sql -2023/08/03 05:56:44 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 05:56:44 OK 0154_ocr2dr_requests_table.sql -2023/08/03 05:56:44 OK 0155_remove_terra.sql -2023/08/03 05:56:44 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 05:56:44 OK 0157_add_log_poller_filters_table.sql -2023/08/03 05:56:44 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 05:56:44 OK 0159_add_name_to_job_proposals.sql -2023/08/03 05:56:44 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 05:56:44 OK 0161_update_job_proposal_status.sql -2023/08/03 05:56:44 OK 0162_logpoller_block_timestamps.sql -2023/08/03 05:56:44 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 05:56:45 OK 0164_add_cosmos.sql -2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql -2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql -2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 05:56:45 OK 0168_drop_node_tables.sql -2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql -2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql -2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql -2023/08/03 05:56:45 OK 0174_vrf_owner.sql -2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql -2023/08/03 05:56:45 OK 0176_s4_shared_table.sql -2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql -2023/08/03 05:56:45 OK 0178_drop_access_list.sql -2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql -2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql -2023/08/03 05:56:45 OK 0183_functions_new_fields.sql -2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql -2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 05:56:45 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.155Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.177Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 298605cd7b4ea9c6a222fb0e6f1bb1306b99a8b811fffa9d69f2bee5557fe374 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.177Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:51.350Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID ByZEoxZWJdb1TpuVF1YgmkMsDUoxbWEB5dYzxj8dhLaH","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:53.264Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 00679eeaae7b1ddd25b20e38b21f9049396c43df65a80622b490d4300e045756","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.455Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.580Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.581Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T05:56:55.581Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T05:56:55.581Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T05:56:55.581Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T05:56:55.581Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.581Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-03T05:56:55.582Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 45979. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":45979} -{"level":"debug","ts":"2023-08-03T05:56:55.582Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":45979,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T05:56:55.583Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","v1listenPort":45979,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/45979","id":"PeerV1"} -{"level":"info","ts":"2023-08-03T05:56:55.583Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}"} -{"level":"info","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T05:56:55.584Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","in":"recvLoop"} -{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:56:55.584Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.647Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T05:56:55.648Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.648Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 12.98s","version":"2.4.0@d0c54ea","appID":"e3751374-a428-4a6a-b42f-8756d9e3c95c"} -{"level":"debug","ts":"2023-08-03T05:56:55.648Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000647292} -{"level":"info","ts":"2023-08-03T05:56:55.655Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T05:56:55.659Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.01101258} -{"level":"debug","ts":"2023-08-03T05:56:55.659Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:57.174Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:56:57","latency":"1.763838ms"} -{"level":"debug","ts":"2023-08-03T05:56:57.175Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:56:57","latency":"204.622µs"} -{"level":"debug","ts":"2023-08-03T05:57:00.585Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T05:57:01.055Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T05:57:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:02","latency":"100.013µs"} -{"level":"debug","ts":"2023-08-03T05:57:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:02","latency":"156.319µs"} -{"level":"debug","ts":"2023-08-03T05:57:05.585Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"info","ts":"2023-08-03T05:57:05.585Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} -{"level":"debug","ts":"2023-08-03T05:57:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:07","latency":"95.512µs"} -{"level":"debug","ts":"2023-08-03T05:57:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:07","latency":"81.493µs"} -{"level":"debug","ts":"2023-08-03T05:57:10.586Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:12","latency":"102.508µs"} -{"level":"debug","ts":"2023-08-03T05:57:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:12","latency":"91.438µs"} -{"level":"debug","ts":"2023-08-03T05:57:15.587Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:17","latency":"98.781µs"} -{"level":"debug","ts":"2023-08-03T05:57:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:17","latency":"91.613µs"} -{"level":"debug","ts":"2023-08-03T05:57:20.588Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:22","latency":"97.416µs"} -{"level":"debug","ts":"2023-08-03T05:57:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:22","latency":"110.765µs"} -{"level":"debug","ts":"2023-08-03T05:57:25.588Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:27","latency":"89.144µs"} -{"level":"debug","ts":"2023-08-03T05:57:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:27","latency":"88.267µs"} -{"level":"debug","ts":"2023-08-03T05:57:30.589Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:32.174Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:32","latency":"116.029µs"} -{"level":"debug","ts":"2023-08-03T05:57:32.174Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:32","latency":"92.274µs"} -{"level":"debug","ts":"2023-08-03T05:57:33.982Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:57:33.983Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T05:57:34.071Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T05:57:34.072Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:34","latency":"90.0731ms"} -{"level":"debug","ts":"2023-08-03T05:57:35.590Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:37","latency":"89.035µs"} -{"level":"debug","ts":"2023-08-03T05:57:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:37","latency":"87.901µs"} -{"level":"debug","ts":"2023-08-03T05:57:40.590Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:41.066Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:41","latency":"2.346151ms"} -{"level":"debug","ts":"2023-08-03T05:57:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:42","latency":"78.592µs"} -{"level":"debug","ts":"2023-08-03T05:57:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:42","latency":"93.911µs"} -{"level":"debug","ts":"2023-08-03T05:57:43.166Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:43","latency":"1.89276553s"} -{"level":"debug","ts":"2023-08-03T05:57:45.462Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:45","latency":"2.087971701s"} -{"level":"debug","ts":"2023-08-03T05:57:45.591Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:47","latency":"89.514µs"} -{"level":"debug","ts":"2023-08-03T05:57:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:47","latency":"88.621µs"} -{"level":"debug","ts":"2023-08-03T05:57:50.591Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:52","latency":"84.218µs"} -{"level":"debug","ts":"2023-08-03T05:57:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:52","latency":"76.261µs"} -{"level":"debug","ts":"2023-08-03T05:57:55.592Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:57","latency":"91.512µs"} -{"level":"debug","ts":"2023-08-03T05:57:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:57:57","latency":"79.756µs"} -{"level":"debug","ts":"2023-08-03T05:58:00.577Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"49.584µs"} -{"level":"debug","ts":"2023-08-03T05:58:00.593Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:00.783Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"68.555µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:02","latency":"96.13µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:02","latency":"109.773µs"} -{"level":"debug","ts":"2023-08-03T05:58:05.593Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T05:58:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:07","latency":"100.937µs"} -{"level":"debug","ts":"2023-08-03T05:58:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:07","latency":"118.871µs"} -{"level":"debug","ts":"2023-08-03T05:58:10.594Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:12.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:12","latency":"95.313µs"} -{"level":"debug","ts":"2023-08-03T05:58:12.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:12","latency":"100.87µs"} -{"level":"debug","ts":"2023-08-03T05:58:15.595Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:17","latency":"84.926µs"} -{"level":"debug","ts":"2023-08-03T05:58:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:17","latency":"93.755µs"} -{"level":"debug","ts":"2023-08-03T05:58:20.595Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:22","latency":"88.499µs"} -{"level":"debug","ts":"2023-08-03T05:58:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:22","latency":"83.983µs"} -{"level":"debug","ts":"2023-08-03T05:58:25.595Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:27","latency":"86.762µs"} -{"level":"debug","ts":"2023-08-03T05:58:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:27","latency":"84.862µs"} -{"level":"debug","ts":"2023-08-03T05:58:30.596Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:32","latency":"93.764µs"} -{"level":"debug","ts":"2023-08-03T05:58:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:32","latency":"102.978µs"} -{"level":"debug","ts":"2023-08-03T05:58:35.596Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:37","latency":"102.368µs"} -{"level":"debug","ts":"2023-08-03T05:58:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:37","latency":"95.91µs"} -{"level":"debug","ts":"2023-08-03T05:58:40.597Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:42","latency":"98.306µs"} -{"level":"debug","ts":"2023-08-03T05:58:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:42","latency":"67.222µs"} -{"level":"debug","ts":"2023-08-03T05:58:45.597Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:47","latency":"72.255µs"} -{"level":"debug","ts":"2023-08-03T05:58:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:47","latency":"90.966µs"} -{"level":"debug","ts":"2023-08-03T05:58:50.598Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:52.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:52","latency":"76.091µs"} -{"level":"debug","ts":"2023-08-03T05:58:52.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:52","latency":"92.937µs"} -{"level":"debug","ts":"2023-08-03T05:58:55.598Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:57","latency":"92.066µs"} -{"level":"debug","ts":"2023-08-03T05:58:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:58:57","latency":"69.648µs"} -{"level":"debug","ts":"2023-08-03T05:59:00.599Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:02","latency":"104.842µs"} -{"level":"debug","ts":"2023-08-03T05:59:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:02","latency":"97.534µs"} -{"level":"debug","ts":"2023-08-03T05:59:05.599Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:07","latency":"89.153µs"} -{"level":"debug","ts":"2023-08-03T05:59:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:07","latency":"75.147µs"} -{"level":"debug","ts":"2023-08-03T05:59:10.599Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:12","latency":"91.442µs"} -{"level":"debug","ts":"2023-08-03T05:59:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:12","latency":"100.077µs"} -{"level":"debug","ts":"2023-08-03T05:59:15.600Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T05:59:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:17","latency":"88.762µs"} -{"level":"debug","ts":"2023-08-03T05:59:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:17","latency":"89.272µs"} -{"level":"debug","ts":"2023-08-03T05:59:20.601Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:22","latency":"84.267µs"} -{"level":"debug","ts":"2023-08-03T05:59:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:22","latency":"74.968µs"} -{"level":"debug","ts":"2023-08-03T05:59:25.602Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T05:59:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:27","latency":"82.597µs"} -{"level":"debug","ts":"2023-08-03T05:59:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:27","latency":"85.19µs"} -{"level":"debug","ts":"2023-08-03T05:59:30.602Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:32","latency":"85.49µs"} -{"level":"debug","ts":"2023-08-03T05:59:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:32","latency":"98.657µs"} -{"level":"debug","ts":"2023-08-03T05:59:35.603Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:37","latency":"91.446µs"} -{"level":"debug","ts":"2023-08-03T05:59:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:37","latency":"89.295µs"} -{"level":"debug","ts":"2023-08-03T05:59:40.603Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:42","latency":"84.538µs"} -{"level":"debug","ts":"2023-08-03T05:59:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:42","latency":"89.175µs"} -{"level":"debug","ts":"2023-08-03T05:59:45.603Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:47","latency":"92.132µs"} -{"level":"debug","ts":"2023-08-03T05:59:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:47","latency":"132.122µs"} -{"level":"debug","ts":"2023-08-03T05:59:50.604Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:52","latency":"107.496µs"} -{"level":"debug","ts":"2023-08-03T05:59:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:52","latency":"106.219µs"} -{"level":"debug","ts":"2023-08-03T05:59:55.604Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:57","latency":"130.809µs"} -{"level":"debug","ts":"2023-08-03T05:59:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 05:59:57","latency":"100.967µs"} -{"level":"debug","ts":"2023-08-03T06:00:00.605Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:02","latency":"104.047µs"} -{"level":"debug","ts":"2023-08-03T06:00:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:02","latency":"105.125µs"} -{"level":"debug","ts":"2023-08-03T06:00:05.606Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:07","latency":"92.032µs"} -{"level":"debug","ts":"2023-08-03T06:00:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:07","latency":"75.136µs"} -{"level":"debug","ts":"2023-08-03T06:00:10.607Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:12","latency":"85.529µs"} -{"level":"debug","ts":"2023-08-03T06:00:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:12","latency":"88.06µs"} -{"level":"debug","ts":"2023-08-03T06:00:15.608Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:00:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:17","latency":"87.352µs"} -{"level":"debug","ts":"2023-08-03T06:00:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:17","latency":"87.448µs"} -{"level":"debug","ts":"2023-08-03T06:00:20.609Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:00:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:22","latency":"96.429µs"} -{"level":"debug","ts":"2023-08-03T06:00:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:22","latency":"92.454µs"} -{"level":"debug","ts":"2023-08-03T06:00:25.610Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:00:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:27","latency":"91.409µs"} -{"level":"debug","ts":"2023-08-03T06:00:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:27","latency":"79.188µs"} -{"level":"debug","ts":"2023-08-03T06:00:30.611Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:32","latency":"93.453µs"} -{"level":"debug","ts":"2023-08-03T06:00:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:32","latency":"72.637µs"} -{"level":"debug","ts":"2023-08-03T06:00:35.611Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:00:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:37","latency":"94.05µs"} -{"level":"debug","ts":"2023-08-03T06:00:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:37","latency":"86.529µs"} -{"level":"debug","ts":"2023-08-03T06:00:40.612Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:42","latency":"77.842µs"} -{"level":"debug","ts":"2023-08-03T06:00:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:42","latency":"96.422µs"} -{"level":"debug","ts":"2023-08-03T06:00:45.613Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:47","latency":"93.356µs"} -{"level":"debug","ts":"2023-08-03T06:00:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:47","latency":"107.53µs"} -{"level":"debug","ts":"2023-08-03T06:00:50.613Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:52","latency":"88.394µs"} -{"level":"debug","ts":"2023-08-03T06:00:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:52","latency":"103.229µs"} -{"level":"debug","ts":"2023-08-03T06:00:55.614Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:57","latency":"88.61µs"} -{"level":"debug","ts":"2023-08-03T06:00:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:00:57","latency":"85.814µs"} -{"level":"debug","ts":"2023-08-03T06:01:00.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:02","latency":"104.427µs"} -{"level":"debug","ts":"2023-08-03T06:01:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:02","latency":"126.916µs"} -{"level":"debug","ts":"2023-08-03T06:01:05.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:07","latency":"87.467µs"} -{"level":"debug","ts":"2023-08-03T06:01:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:07","latency":"86.425µs"} -{"level":"debug","ts":"2023-08-03T06:01:10.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:12","latency":"87.397µs"} -{"level":"debug","ts":"2023-08-03T06:01:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:12","latency":"88.861µs"} -{"level":"debug","ts":"2023-08-03T06:01:15.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:17","latency":"90.776µs"} -{"level":"debug","ts":"2023-08-03T06:01:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:17","latency":"88.699µs"} -{"level":"debug","ts":"2023-08-03T06:01:20.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:01:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:22","latency":"86.889µs"} -{"level":"debug","ts":"2023-08-03T06:01:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:22","latency":"86.537µs"} -{"level":"debug","ts":"2023-08-03T06:01:25.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:27","latency":"92.719µs"} -{"level":"debug","ts":"2023-08-03T06:01:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:27","latency":"92.078µs"} -{"level":"debug","ts":"2023-08-03T06:01:30.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:32","latency":"98.032µs"} -{"level":"debug","ts":"2023-08-03T06:01:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:32","latency":"93.103µs"} -{"level":"debug","ts":"2023-08-03T06:01:35.619Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:37","latency":"96.826µs"} -{"level":"debug","ts":"2023-08-03T06:01:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:37","latency":"81.28µs"} -{"level":"debug","ts":"2023-08-03T06:01:40.619Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:42","latency":"91.949µs"} -{"level":"debug","ts":"2023-08-03T06:01:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:42","latency":"89.096µs"} -{"level":"debug","ts":"2023-08-03T06:01:45.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:47","latency":"92.796µs"} -{"level":"debug","ts":"2023-08-03T06:01:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:47","latency":"68.742µs"} -{"level":"debug","ts":"2023-08-03T06:01:50.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:01:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:52","latency":"88.92µs"} -{"level":"debug","ts":"2023-08-03T06:01:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:52","latency":"88.912µs"} -{"level":"debug","ts":"2023-08-03T06:01:55.621Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:57","latency":"88.128µs"} -{"level":"debug","ts":"2023-08-03T06:01:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:01:57","latency":"82.785µs"} -{"level":"debug","ts":"2023-08-03T06:02:00.621Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:02","latency":"113.299µs"} -{"level":"debug","ts":"2023-08-03T06:02:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:02","latency":"111.074µs"} -{"level":"info","ts":"2023-08-03T06:02:05.586Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:05.622Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:07","latency":"83.113µs"} -{"level":"debug","ts":"2023-08-03T06:02:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:07","latency":"86.746µs"} -{"level":"debug","ts":"2023-08-03T06:02:10.623Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:12","latency":"87.825µs"} -{"level":"debug","ts":"2023-08-03T06:02:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:12","latency":"69.337µs"} -{"level":"debug","ts":"2023-08-03T06:02:15.623Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:17.099Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:17","latency":"60.365µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:17","latency":"79.115µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:17","latency":"78.97µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.308Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:17","latency":"66.975µs"} -{"level":"debug","ts":"2023-08-03T06:02:20.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:22","latency":"88.153µs"} -{"level":"debug","ts":"2023-08-03T06:02:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:22","latency":"85.703µs"} -{"level":"debug","ts":"2023-08-03T06:02:25.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:27","latency":"85.143µs"} -{"level":"debug","ts":"2023-08-03T06:02:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:27","latency":"93.278µs"} -{"level":"debug","ts":"2023-08-03T06:02:30.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:32","latency":"102.737µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:32","latency":"104.571µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.990Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:32","latency":"3.430292ms"} -{"level":"info","ts":"2023-08-03T06:02:33.206Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:02:33.206Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} -{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-03T06:02:33.207Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:02:33.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.552Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:33.724Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:02:33.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:33.724Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","duration":897} -{"level":"info","ts":"2023-08-03T06:02:33.725Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"info","ts":"2023-08-03T06:02:33.725Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:02:33.725Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"a5fb6fe54defdf3dbb63d9ffe6ac01932e2107d0bce6d4b290dd8541dbe29a76\\\" \\n\\ntransmitterID = \\\"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:33","latency":"525.909922ms"} -{"level":"debug","ts":"2023-08-03T06:02:33.901Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"info","ts":"2023-08-03T06:02:33.901Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f","streamName":"ragedisco/v1","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:02:33.902Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} -{"level":"info","ts":"2023-08-03T06:02:33.905Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"numQueried":5,"found":["12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"loaded":["12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","numFound":1,"numLoaded":1} -{"level":"info","ts":"2023-08-03T06:02:33.905Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":4,"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"b3a9cf92e738ad050538539561f16e1c11f6987aace90239f550a9997679d7d6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","oracleID":4,"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"previousNe":0,"ne":1} -{"level":"info","ts":"2023-08-03T06:02:33.906Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"leader":4} -{"level":"debug","ts":"2023-08-03T06:02:33.907Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:02:33.907Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.002989146} -{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.003004133} -{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"round":1,"observation":"CPmFraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":1,"leader":4,"msgEpoch":1,"msgRound":1,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:02:33.910Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"round":1,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:02:34.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:34.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:34.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:34.816Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.546Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:35.718Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:35.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"warn","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:02:36.001Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:02:36.002Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","direction":"out","remoteAddr":"10.14.104.202:6690","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamName":"ragedisco/v1","streamID":"bca0315a0a3c462e23fa3c3c749122443cf21e9e8e718bc5ff127d11cff9f479"} -{"level":"info","ts":"2023-08-03T06:02:36.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","in":"processAnnouncement","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:36.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:36.577Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:36.750Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:36.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:37","latency":"79.032µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:37","latency":"90.707µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.329Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:37.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:37.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.347Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:38.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:39.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:39.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:39.801Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:39.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:40.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:40.412Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:40.626Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:40.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:41.035Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:41.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:02:41.148Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:41.433Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:41.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:42.094Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:42.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:42","latency":"87.049µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:42","latency":"102.299µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:42.962Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:43.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:43.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:43.519Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:43.983Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:44.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:44.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:44.610Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:45.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:45.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:45.364Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:45.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:45.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.229Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.369Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.713Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:47.129Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:47","latency":"85.146µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:47","latency":"74.148µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.727Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.075Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:02:49.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.257Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.442Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.628Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:50.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.353Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.525Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.834Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:52","latency":"86.68µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:52","latency":"81.218µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.512Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.681Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.873Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.907Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:02:54.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.625Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.975Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.628Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:55.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:55.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","in":"processAnnouncement","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:55.837Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.029Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"warn","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:56.124Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remoteAddr":"10.14.31.21:6690","direction":"out","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:56.128Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:56.128Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f"} -{"level":"debug","ts":"2023-08-03T06:02:56.131Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":1,"msgEpoch":1,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"leader":4} -{"level":"debug","ts":"2023-08-03T06:02:56.131Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":2,"requiredObservationCount":3,"epoch":1,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:02:56.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:57","latency":"94.714µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:02:57","latency":"95.479µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.687Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.792Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.136Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.851Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.196Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.928Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.013Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.629Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:00.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.073Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.372Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:02","latency":"88.102µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:02","latency":"103.661µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.441Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.020Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.183Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.192Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.527Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.248Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:03:04.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.262Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:03:04.286Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:04.606Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.128Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.291Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.300Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.629Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:05.635Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:05.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:06.208Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:07","latency":"91.79µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:07","latency":"76.552µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.420Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.764Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.503Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.361Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.443Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.486Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.630Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:10.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.787Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"warn","ts":"2023-08-03T06:03:11.787Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:11.787Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:11.789Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","direction":"out","remoteAddr":"10.14.72.41:6690","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c","streamName":"ragedisco/v1","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","newEpoch":2,"candidateEpochs":[2,2,2],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":1,"leader":4,"e":1,"l":4} -{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":2,"leader":2} -{"level":"debug","ts":"2023-08-03T06:03:11.903Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:12","latency":"85.282µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:12","latency":"89.574µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.528Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.648Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.700Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.737Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.081Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.782Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.800Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.126Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:15.713Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.886Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.798Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:17","latency":"87.017µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:17","latency":"100.478µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.255Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.985Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.353Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:18.671Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"in","remoteAddr":"10.14.48.92:40842","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ragedisco/v1","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:18.875Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.048Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.421Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:03:19.941Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.113Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.130Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.632Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:20.953Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.201Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.019Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:22","latency":"107.521µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:22","latency":"107.463µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.206Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.365Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.298Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.632Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:25.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.205Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.378Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.923Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:27","latency":"88.793µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:27","latency":"87.811µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.303Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.641Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.991Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.367Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.539Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.633Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:30.666Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.010Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.792Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"newEpoch":3,"candidateEpochs":[3,3,3],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","e":2,"l":2} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001224205} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001244265} -{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"msgEpoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"msgRound":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observationCount":1,"requiredObservationCount":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"msgRound":1,"round":1,"sender":1,"msgEpoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:31.795Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":1,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"sender":3,"msgEpoch":3,"msgRound":1,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":0,"msgEpoch":3,"msgRound":1,"oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1} -{"level":"debug","ts":"2023-08-03T06:03:31.798Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:32.099Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:32","latency":"100.092µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:32","latency":"114.653µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.718Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.788Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.621Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.594Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:03:34.710Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.882Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.634Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:35.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"unfulfilledRequest":true,"deviation":true,"deltaC":0,"reportingPlugin":"NumericalMedian","result":true,"initialRound":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:35.800Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"sender":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001249342} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001418613} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"msgEpoch":3,"msgRound":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"observationCount":1,"requiredObservationCount":3,"oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":2,"sender":1,"msgEpoch":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":2,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"leader":4,"round":2,"sender":3,"msgEpoch":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"observationCount":3,"requiredObservationCount":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":0,"msgEpoch":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:35.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.891Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.007Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:37","latency":"84.833µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:37","latency":"75.425µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.874Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.046Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.050Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:39.804Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportInfinite":false,"deviation":true,"deltaCTimeout":true,"result":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z"} -{"level":"debug","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001205649} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001255332} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"sender":4,"msgEpoch":3} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgEpoch":3,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":3,"observationCount":2,"requiredObservationCount":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","msgEpoch":3,"msgRound":3,"round":3,"sender":3,"oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":3,"requiredObservationCount":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":3,"round":3,"sender":0,"msgEpoch":3,"msgRound":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:39.906Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.117Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.462Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.634Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:40.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.122Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.138Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.482Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.023Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:42","latency":"105.28µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:42","latency":"100.89µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.251Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:43.808Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"deviation":true,"initialRound":false,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":4,"msgRound":3,"oid":4,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"round":4} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"roundMax":3,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":3,"sender":4,"epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptPPB":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":4,"candidateEpochs":[4,4,4]} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":3,"leader":4,"e":3,"l":4} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001122866} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001109913} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:44.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.414Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.635Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:45.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.392Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:47","latency":"93.642µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:47","latency":"103.728µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.291Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.464Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"alphaReportInfinite":false,"deltaCTimeout":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","alphaReportPPB":0,"deviation":true,"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001225989} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001246337} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"leader":0,"round":2,"observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.347Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.875Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.427Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.537Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.766Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:03:49.882Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.626Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.635Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:50.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.970Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.674Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:51.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deltaC":0,"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","deltaCTimeout":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"result":true,"initialRound":false,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":2,"sender":4,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001187816} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001181197} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"round":3,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:51.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:52","latency":"84.431µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:52","latency":"89.725µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.532Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.682Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.705Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.565Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.643Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.816Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.119Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.636Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:55.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:55.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"deviation":true,"unfulfilledRequest":false,"deltaC":0,"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"result":true,"reportingPlugin":"NumericalMedian","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"leader":0,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":4,"Round":3},"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":4,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","newEpoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"candidateEpochs":[5,5,5]} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","l":0,"e":4} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001225398} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001209646} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"msgRound":1,"round":1,"sender":4,"msgEpoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observationCount":1,"oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":1,"oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":1,"msgEpoch":5} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observationCount":2,"requiredObservationCount":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"msgEpoch":5,"msgRound":1,"oid":4,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:55.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":0,"msgEpoch":5,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:55.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:55.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.728Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.887Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:57","latency":"86.563µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:03:57","latency":"77.018µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.232Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.268Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.859Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.031Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true,"result":true,"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z","alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"msgRound":1,"oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001228843} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001231363} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":2,"observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"msgEpoch":5,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":2,"observationCount":1,"requiredObservationCount":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","msgRound":2,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":2,"sender":1,"msgEpoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"msgEpoch":5,"msgRound":2,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"round":2,"sender":0,"msgEpoch":5,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:03:59.913Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.070Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.636Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:04:01.000Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.173Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.165Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:02","latency":"83.29µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:02","latency":"85.136µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.195Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.042Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.214Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.246Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"alphaReportInfinite":false,"result":true,"deltaCTimeout":true,"deltaC":0,"reportingPlugin":"NumericalMedian","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","initialRound":false} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":5,"Round":2},"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":5,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001147077} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001193774} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"oid":4} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":2,"sender":0,"oid":4} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":3,"sender":4,"msgEpoch":5,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"requiredObservationCount":3,"round":3,"observationCount":1} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"round":3,"sender":1,"msgEpoch":5,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"round":3,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":0,"msgEpoch":5,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":3,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"leader":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"round":3,"sender":3,"msgEpoch":5,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:03.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:04.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.295Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.939Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:04:05.124Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:05.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:07","latency":"92.095µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:07","latency":"69.607µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.192Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.364Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.793Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:07.840Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"deviation":true,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"initialRound":false,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"leader":4,"round":4,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":4,"msgRound":3,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":4,"messageRound":4,"roundMax":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"epoch":5,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":5,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":5,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":6,"candidateEpochs":[6,6,6]} -{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"leader":4,"e":5,"l":4} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"sender":1,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":3,"sender":0,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001041889} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001068673} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:08.014Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:08.014Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:08.014Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T06:04:08.187Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:08.187Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c"} -{"level":"debug","ts":"2023-08-03T06:04:08.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.531Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.533Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:08.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.224Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:09.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.460Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.835Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.899Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:10.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.586Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:10.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:04:10.849Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.285Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:11.370Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","fee":1,"signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"]} -{"level":"debug","ts":"2023-08-03T06:04:11.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:11.846Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","result":true,"reportingPlugin":"NumericalMedian","deltaC":0,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"deviation":true} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":6,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"sender":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":6,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001204271} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001172238} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"round":2,"observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:11.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.959Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:11.959Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:12","latency":"91.648µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:12","latency":"65.907µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.672Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:12.672Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:12.677Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.022Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.368Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:13.368Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:13.462Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.686Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.030Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.089Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:14.090Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:14.375Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","fee":2,"signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"]} -{"level":"debug","ts":"2023-08-03T06:04:14.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.793Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:14.793Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:14.793Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:15.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.490Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:15.490Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:15.490Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:15.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.638Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:15.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.776Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:15.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"initialRound":false,"deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2},"alphaReportInfinite":false,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"round":2,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"epoch":6,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"contractEpochRound":{"Epoch":6,"Round":1},"deviates":true,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":6,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":2,"sender":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":2,"sender":3,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001111787} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001115703} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"leader":0,"epoch":6,"round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:16.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.185Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:16.185Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:16.185Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:16.589Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.761Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.905Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:16.905Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:16.905Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:17.132Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:17","latency":"86.67µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:17","latency":"87.633µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.382Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","fee":4,"signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ","RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"]} -{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:17.592Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:17.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.015Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context deadline exceeded","signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ","RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"],"id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c"} -{"level":"debug","ts":"2023-08-03T06:04:18.015Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","signatures":["54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U","w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ","RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"]} -{"level":"debug","ts":"2023-08-03T06:04:18.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:18.298Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:18.692Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.864Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:19.008Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:19.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:19.689Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:19.699Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.847Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:19.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"result":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z"} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":6,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":6,"roundMax":3,"round":4,"messageRound":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":6,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":6,"Round":2},"reportEpochRound":{"Epoch":6,"Round":3},"latestAcceptedEpochRound":{"Epoch":6,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} -{"level":"info","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"sender":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"leader":0,"epoch":6,"e":6,"l":0} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":3,"sender":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001071152} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001106277} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:19.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.029Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:20.030Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:20.112Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:04:20.191Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.202Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477","signature":"d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"} -{"level":"debug","ts":"2023-08-03T06:04:20.202Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477"} -{"level":"debug","ts":"2023-08-03T06:04:20.378Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:20.379Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:20.379Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:20.379Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:20.639Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:04:20.755Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.918Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.927Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477","signature":"d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"],"id":"e941f36d-f3f4-4897-8c60-bd7d19c03477"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:21.079Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"e941f36d-f3f4-4897-8c60-bd7d19c03477","signatures":["d2AYH6P4cwUDkHXu76VjwgVsyVYHKvaLQ2Ta3CZyPU7WpcRjRsGTBU2bHu7u6c6q1pboHiMQSo8Z8uW8vX8U8gK"]} -{"level":"debug","ts":"2023-08-03T06:04:21.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.797Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:21.798Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:21.798Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:21.798Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:21.940Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:22","latency":"108.156µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:22","latency":"108.142µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:22.505Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:22.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.030Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.044Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:23.195Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:23.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:23.861Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"alphaReportPPB":0,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"deltaC":0,"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"sender":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","result":true,"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":6,"Round":3},"reportEpochRound":{"Epoch":7,"Round":1},"latestAcceptedEpochRound":{"Epoch":6,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":7,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001065895} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001131461} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"leader":0,"round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:23.903Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:23.904Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:23.904Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:23.904Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:23.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.122Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:24.621Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:25.038Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.201Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:25.335Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:25.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.640Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:26.024Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:26.132Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.628Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:26.716Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:27.170Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:27","latency":"89.731µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:27","latency":"93.328µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:27.435Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:27.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"deltaC":0,"result":true,"alphaReportInfinite":false,"deviation":true,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","unfulfilledRequest":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","contractEpochRound":{"Epoch":7,"Round":1},"reportEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"result":true,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":7,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":7,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.00115009} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001239563} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:28.110Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:28.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.440Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:28.795Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:29.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.439Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:29.469Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:29.525Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.869Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:30.183Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:30.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.482Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:04:30.881Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:30.882Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:30.882Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:30.882Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:30.890Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.321Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.493Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:31.562Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:31.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:31.870Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportPPB":0,"result":true,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"deltaCTimeout":true,"initialRound":false,"alphaReportInfinite":false,"unfulfilledRequest":false,"deltaC":0,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"leader":0,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":3,"sender":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":7,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"info","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","e":7,"l":0,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":7,"round":3} -{"level":"info","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":8,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":7,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:31.974Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:32","latency":"81.546µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:32","latency":"85.923µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:32.258Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:32.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.505Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.726Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:32.967Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:33.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.594Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:33.649Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:33.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.811Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":3,"Round":3}} -{"level":"info","ts":"2023-08-03T06:04:33.811Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:04:34.118Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:34.323Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:34.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:35.019Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:35.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.285Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:04:35.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:04:35.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:35.707Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:35.903Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.247Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:36.387Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:36.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.739Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:37.092Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:37","latency":"77.322µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:37","latency":"79.453µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.313Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.776Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"debug","ts":"2023-08-03T06:04:37.814Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:38.045Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.390Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8"} -{"level":"info","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:377","msg":"failed to find transaction within confirm timeout","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"62ab65ab-d2c3-4cf6-aecb-18c3cff45e3c","signature":"54cGBodgc8EYCKh3McoDJpCa3gDpc6C1NGGG69R5d1CF6ThQwETcfeNZqjBZewjq3xveGzFzgDc84HRrWVWfAgr8","timeoutSeconds":30} -{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YU1LTwWA7sGQ5ovk8SoWqhdPFGQMSQQ79j6bpbBbdTjagifZ3puh8QyJUmfzLfvgyjrrBpyJndt7dY2PFz4Th5U"} -{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"w62CxM9EnnZmqqJjcEu9x92VudS2vhA4HFqEgZo7WH1i96QrNF3YmpKfTt1RTA29ycHa7VT4ef632ALwHeGEjcQ"} -{"level":"debug","ts":"2023-08-03T06:04:38.492Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"RyaocBBvmKEA8i9bFu2B2y13FNgsjwdKLFuyGHKMXtZvQkBzWQcKzRFv7EXGHcFaqK6sQMtZzHk7UXe4ViKzJ31"} -{"level":"debug","ts":"2023-08-03T06:04:38.693Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.760Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.086Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:40.829Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:42","latency":"84.415µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:42","latency":"70.907µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.555Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.888Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.061Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:04:45.699Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.711Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.962Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:47","latency":"66.552µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:47","latency":"108.868µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.451Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.479Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.823Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.070Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.915Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.144Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.458Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:04:50.643Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:50.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","e":8,"l":2,"oid":4,"epoch":8,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001066014} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001084043} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":1,"observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:52.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:52","latency":"101.496µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:52","latency":"479.923µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.289Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.461Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.312Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.810Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.336Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"initialRound":false,"deltaC":0,"unfulfilledRequest":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":3,"round":1,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"round":1,"sender":4,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":7,"Round":3},"result":true} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"sender":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001133157} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001189414} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":3,"round":2,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.905Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.608Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:57","latency":"79.122µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:04:57","latency":"80.901µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.519Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.330Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.412Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.586Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:59.883Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2},"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","initialRound":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaCTimeout":true,"deviation":true,"deltaC":0} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001122378} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001133509} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"oid":4,"round":3,"observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:05:00.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.445Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.630Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:00.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.705Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.849Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":6,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:05:01.849Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:01.878Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:02","latency":"83.856µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:02","latency":"93.575µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.178Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.828Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:03.887Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","alphaReportPPB":0,"deltaC":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","result":true,"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"alphaReportInfinite":false,"deltaCTimeout":true,"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":9,"leader":3,"roundMax":3,"round":4,"messageRound":4,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","epoch":9,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":3,"epoch":9,"round":3,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":1,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":3,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"e":9,"l":3} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","oid":4,"leader":2,"epoch":10,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:04.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.873Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.049Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.630Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:05:05.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:05:05.672Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.079Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.358Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:07","latency":"92.979µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:07","latency":"93.122µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.964Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.732Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.990Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.479Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:10.838Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.069Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:12","latency":"96.658µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:12","latency":"69.845µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.288Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.953Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.189Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.361Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.717Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.061Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.236Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:15.779Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.801Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"info","ts":"2023-08-03T06:05:15.801Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:16.124Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.792Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:17","latency":"95.821µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:17","latency":"103.828µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.364Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.868Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":7,"Round":2}} -{"level":"info","ts":"2023-08-03T06:05:17.868Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:18.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.425Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.523Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.806Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":3,"Round":2}} -{"level":"info","ts":"2023-08-03T06:05:19.807Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:19.899Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:20.796Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.803Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:05:20.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.722Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.894Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:22","latency":"102.394µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:22","latency":"97.939µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.353Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.787Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.397Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.870Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"candidateEpochs":[11,11,11],"newEpoch":11} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":2,"epoch":10,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"e":10,"l":2} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":11,"leader":2,"oid":4} -{"level":"debug","ts":"2023-08-03T06:05:24.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.890Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:25.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.512Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.975Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.147Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:27","latency":"74.531µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:27","latency":"114.095µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.253Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.015Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.188Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.320Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.264Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.403Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.748Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.148Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:30.825Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.232Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.405Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.543Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.823Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":4,"Round":2}} -{"level":"info","ts":"2023-08-03T06:05:31.823Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:31.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:32","latency":"89.413µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:32","latency":"66.553µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.284Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.604Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.302Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.047Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.389Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.065Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.569Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol","id":"ragep2p","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:35.789Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.976Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe"} -{"level":"debug","ts":"2023-08-03T06:05:36.134Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.874Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.172Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:37","latency":"83.172µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:37","latency":"91.683µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.218Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.505Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.290Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.777Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.962Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.307Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.828Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.050Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","in":"sendLoop","peerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:40.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.424Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.170Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:42","latency":"72.047µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.173Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.113.42","errors":"","servedAt":"2023-08-03 06:05:42","latency":"85.478µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.515Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.020Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.222Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":4,"newEpoch":12,"candidateEpochs":[12,12,12]} -{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":11,"leader":2,"oid":4,"e":11} -{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","leader":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461"} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":0,"jobName":"","specID":1,"runTime":0.001129616} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","specID":1,"runTime":0.001157456} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-f9ba8817-33e4-4623-87a6-42fbd975f461","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"HFaPev98k5c1TkyhpNqnzDvnM88Vxe1DtgjX7JZSZehe","round":1,"observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"oid":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.066Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.244Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.588Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.897Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.070Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log deleted file mode 100644 index 00b0e52ed..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - -waiting for server to start....2023-08-03 05:56:39.840 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:39.854 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC -2023-08-03 05:56:39.859 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -2023-08-03 05:56:40.552 UTC [48] LOG: received fast shutdown request -waiting for server to shut down....2023-08-03 05:56:40.553 UTC [48] LOG: aborting any active transactions -2023-08-03 05:56:40.555 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 05:56:40.555 UTC [50] LOG: shutting down -2023-08-03 05:56:40.717 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 05:56:40.764 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 05:56:40.764 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 05:56:40.768 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.785 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC -2023-08-03 05:56:40.789 UTC [1] LOG: database system is ready to accept connections -2023-08-03 05:56:42.790 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 05:56:43.753 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 05:56:43.753 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 05:56:43.753 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 05:56:43.753 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 05:56:43.754 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 05:56:43.754 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log deleted file mode 100644 index 1db0ead16..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_2/node.log +++ /dev/null @@ -1,1715 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T05:56:43.739Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.740Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.740Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:43.740Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-03T05:56:43.744Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.745Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.745Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"2cb51971-b808-4dbf-a63b-4c9192aca46d"} -{"level":"debug","ts":"2023-08-03T05:56:43.750Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"2cb51971-b808-4dbf-a63b-4c9192aca46d"} -{"level":"debug","ts":"2023-08-03T05:56:43.753Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/03 05:56:44 OK 0001_initial.sql -2023/08/03 05:56:44 OK 0002_gormv2.sql -2023/08/03 05:56:44 OK 0003_eth_logs_table.sql -2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql -2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql -2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 05:56:44 OK 0010_bridge_fk.sql -2023/08/03 05:56:44 OK 0011_latest_round_requested.sql -2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql -2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql -2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql -2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 05:56:44 OK 0018_add_node_version_table.sql -2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 05:56:44 OK 0020_remove_result_task.sql -2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql -2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql -2023/08/03 05:56:44 OK 0025_create_log_config_table.sql -2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql -2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 05:56:44 OK 0028_vrf_v2.sql -2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql -2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql -2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql -2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql -2023/08/03 05:56:44 OK 0036_external_job_id.go -2023/08/03 05:56:44 OK 0037_cascade_deletes.sql -2023/08/03 05:56:44 OK 0038_create_csa_keys.sql -2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql -2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql -2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql -2023/08/03 05:56:44 OK 0042_create_job_proposals.sql -2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go -2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 05:56:44 OK 0056_multichain.go -2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql -2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql -2023/08/03 05:56:44 OK 0061_multichain_relations.sql -2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql -2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql -2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql -2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql -2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql -2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql -2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql -2023/08/03 05:56:44 OK 0075_unique_job_names.sql -2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql -2023/08/03 05:56:44 OK 0078_only_one_version.sql -2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql -2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql -2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 05:56:44 OK 0082_lease_lock.sql -2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql -2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 05:56:44 OK 0087_ocr2_tables.sql -2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql -2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql -2023/08/03 05:56:44 OK 0091_ocr2_relay.sql -2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql -2023/08/03 05:56:44 OK 0093_terra_txm.sql -2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql -2023/08/03 05:56:44 OK 0095_terra_fcd.sql -2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql -2023/08/03 05:56:44 OK 0097_bootstrap_spec.sql -2023/08/03 05:56:44 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 05:56:44 OK 0099_terra_msgs_created_at.sql -2023/08/03 05:56:45 OK 0100_bootstrap_config.sql -2023/08/03 05:56:45 OK 0101_generic_ocr2.sql -2023/08/03 05:56:45 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 05:56:45 OK 0103_terra_msgs_type_url.sql -2023/08/03 05:56:45 OK 0104_terra_cascade_delete.sql -2023/08/03 05:56:45 OK 0105_create_forwarder_addresses.sql -2023/08/03 05:56:45 OK 0106_evm_node_uniqueness.sql -2023/08/03 05:56:45 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 05:56:45 OK 0109_solana_chains_nodes.sql -2023/08/03 05:56:45 OK 0110_add_vrf_chunk_size.sql -2023/08/03 05:56:45 OK 0111_terra_msgs_state_started.sql -2023/08/03 05:56:45 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 05:56:45 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 05:56:45 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 05:56:45 OK 0115_log_poller.sql -2023/08/03 05:56:45 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 05:56:45 OK 0117_add_log_poller_idx.sql -2023/08/03 05:56:45 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 05:56:45 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 05:56:45 OK 0120_log_poller_data_idx.sql -2023/08/03 05:56:45 OK 0121_remove_log_configs.sql -2023/08/03 05:56:45 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 05:56:45 OK 0123_terra_idx_simplify.sql -2023/08/03 05:56:45 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 05:56:45 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 05:56:45 OK 0126_remove_observation_source.sql -2023/08/03 05:56:45 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 05:56:45 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0129_add_job_gas_limit.sql -2023/08/03 05:56:45 OK 0130_starknet_chains_nodes.sql -2023/08/03 05:56:45 OK 0131_add_multi_user.sql -2023/08/03 05:56:45 OK 0132_log_index_uniqueness.sql -2023/08/03 05:56:45 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 05:56:45 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 05:56:45 OK 0135_tx_index_not_null.sql -2023/08/03 05:56:45 OK 0136_add_job_allow_forwarding.sql -2023/08/03 05:56:45 OK 0137_remove_tx_index.sql -2023/08/03 05:56:45 OK 0138_rename_allowforwarding_field.sql -2023/08/03 05:56:45 OK 0139_multi_chain_keys.sql -2023/08/03 05:56:45 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 05:56:45 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 05:56:45 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 05:56:45 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 05:56:45 OK 0144_optimize_lp.sql -2023/08/03 05:56:45 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0148_dkg_shares.sql -2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql -2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql -2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql -2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql -2023/08/03 05:56:45 OK 0155_remove_terra.sql -2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql -2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql -2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql -2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql -2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 05:56:45 OK 0164_add_cosmos.sql -2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql -2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql -2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 05:56:45 OK 0168_drop_node_tables.sql -2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql -2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql -2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql -2023/08/03 05:56:45 OK 0174_vrf_owner.sql -2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql -2023/08/03 05:56:45 OK 0176_s4_shared_table.sql -2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql -2023/08/03 05:56:45 OK 0178_drop_access_list.sql -2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql -2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql -2023/08/03 05:56:45 OK 0183_functions_new_fields.sql -2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql -2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 05:56:45 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.500Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.543Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 8b13db250305eeeb41032e1bd2c88b4ffe5f2cec1d488f8d39cfff76de0d1a92 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.543Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:51.658Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID BV241sHzUgHX2DajWhDKkcD1bFp2tSczPKyXYs64XAfT","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:53.650Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 760ce56b62cd4cf66af17dc6f616be6620e44510f1de6ef7f27d2c231fec16d8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.838Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T05:56:55.963Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T05:56:55.963Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T05:56:55.963Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:55.963Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-03T05:56:55.964Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 36293. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":36293} -{"level":"debug","ts":"2023-08-03T05:56:55.964Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":36293,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T05:56:55.965Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","v1listenPort":36293,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/36293"} -{"level":"debug","ts":"2023-08-03T05:56:55.965Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"PeerV2"} -{"level":"debug","ts":"2023-08-03T05:56:55.966Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"saveLoop"} -{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"recvLoop","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:56:55.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:56:55.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T05:56:55.968Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:55.968Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.13s","version":"2.4.0@d0c54ea","appID":"2cb51971-b808-4dbf-a63b-4c9192aca46d"} -{"level":"debug","ts":"2023-08-03T05:56:56.035Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.066745916} -{"level":"info","ts":"2023-08-03T05:56:56.039Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T05:56:56.046Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011085304} -{"level":"debug","ts":"2023-08-03T05:56:56.046Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:57.136Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:56:57","latency":"1.956406ms"} -{"level":"debug","ts":"2023-08-03T05:56:57.137Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:56:57","latency":"215.338µs"} -{"level":"debug","ts":"2023-08-03T05:57:00.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:00.997Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T05:57:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:02","latency":"91.13µs"} -{"level":"debug","ts":"2023-08-03T05:57:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:02","latency":"149.008µs"} -{"level":"info","ts":"2023-08-03T05:57:05.966Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:05.967Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:07","latency":"121.284µs"} -{"level":"debug","ts":"2023-08-03T05:57:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:07","latency":"195.986µs"} -{"level":"debug","ts":"2023-08-03T05:57:10.968Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:12","latency":"101.543µs"} -{"level":"debug","ts":"2023-08-03T05:57:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:12","latency":"102.518µs"} -{"level":"debug","ts":"2023-08-03T05:57:15.968Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:57:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:17","latency":"104.604µs"} -{"level":"debug","ts":"2023-08-03T05:57:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:17","latency":"157.298µs"} -{"level":"debug","ts":"2023-08-03T05:57:20.969Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:57:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:22","latency":"72.55µs"} -{"level":"debug","ts":"2023-08-03T05:57:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:22","latency":"112.595µs"} -{"level":"debug","ts":"2023-08-03T05:57:25.969Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:57:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:27","latency":"69.362µs"} -{"level":"debug","ts":"2023-08-03T05:57:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:27","latency":"106.939µs"} -{"level":"debug","ts":"2023-08-03T05:57:30.969Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:32","latency":"104.623µs"} -{"level":"debug","ts":"2023-08-03T05:57:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:32","latency":"99.983µs"} -{"level":"debug","ts":"2023-08-03T05:57:34.712Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:57:34.714Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T05:57:34.836Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T05:57:34.838Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:34","latency":"125.271273ms"} -{"level":"debug","ts":"2023-08-03T05:57:35.970Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:37","latency":"124.675µs"} -{"level":"debug","ts":"2023-08-03T05:57:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:37","latency":"114.167µs"} -{"level":"debug","ts":"2023-08-03T05:57:40.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:42","latency":"87.189µs"} -{"level":"debug","ts":"2023-08-03T05:57:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:42","latency":"102.468µs"} -{"level":"debug","ts":"2023-08-03T05:57:45.680Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:45","latency":"2.968779ms"} -{"level":"debug","ts":"2023-08-03T05:57:45.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:47","latency":"86.717µs"} -{"level":"debug","ts":"2023-08-03T05:57:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:47","latency":"86.955µs"} -{"level":"debug","ts":"2023-08-03T05:57:47.766Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:47","latency":"1.874643958s"} -{"level":"debug","ts":"2023-08-03T05:57:50.161Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:50","latency":"2.183330286s"} -{"level":"debug","ts":"2023-08-03T05:57:50.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:52","latency":"110.24µs"} -{"level":"debug","ts":"2023-08-03T05:57:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:52","latency":"103.025µs"} -{"level":"debug","ts":"2023-08-03T05:57:55.972Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:57","latency":"89.813µs"} -{"level":"debug","ts":"2023-08-03T05:57:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:57:57","latency":"95.964µs"} -{"level":"debug","ts":"2023-08-03T05:58:00.973Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:58:00.994Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:00","latency":"65.972µs"} -{"level":"debug","ts":"2023-08-03T05:58:01.205Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"38.373µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:02","latency":"91.846µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:02","latency":"88.141µs"} -{"level":"debug","ts":"2023-08-03T05:58:05.974Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:58:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:07","latency":"92.9µs"} -{"level":"debug","ts":"2023-08-03T05:58:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:07","latency":"86.976µs"} -{"level":"debug","ts":"2023-08-03T05:58:10.975Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:12","latency":"103.699µs"} -{"level":"debug","ts":"2023-08-03T05:58:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:12","latency":"99.509µs"} -{"level":"debug","ts":"2023-08-03T05:58:15.975Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:17","latency":"107.709µs"} -{"level":"debug","ts":"2023-08-03T05:58:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:17","latency":"98.059µs"} -{"level":"debug","ts":"2023-08-03T05:58:20.976Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:22","latency":"98.393µs"} -{"level":"debug","ts":"2023-08-03T05:58:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:22","latency":"76.087µs"} -{"level":"debug","ts":"2023-08-03T05:58:25.977Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:27","latency":"77.598µs"} -{"level":"debug","ts":"2023-08-03T05:58:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:27","latency":"95.916µs"} -{"level":"debug","ts":"2023-08-03T05:58:30.978Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:32","latency":"102.273µs"} -{"level":"debug","ts":"2023-08-03T05:58:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:32","latency":"107.807µs"} -{"level":"debug","ts":"2023-08-03T05:58:35.979Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:37","latency":"92.728µs"} -{"level":"debug","ts":"2023-08-03T05:58:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:37","latency":"89.116µs"} -{"level":"debug","ts":"2023-08-03T05:58:40.979Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:42","latency":"84.037µs"} -{"level":"debug","ts":"2023-08-03T05:58:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:42","latency":"89.34µs"} -{"level":"debug","ts":"2023-08-03T05:58:45.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:47","latency":"91.828µs"} -{"level":"debug","ts":"2023-08-03T05:58:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:47","latency":"88.63µs"} -{"level":"debug","ts":"2023-08-03T05:58:50.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:52","latency":"109.648µs"} -{"level":"debug","ts":"2023-08-03T05:58:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:52","latency":"112.456µs"} -{"level":"debug","ts":"2023-08-03T05:58:55.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:57","latency":"98.525µs"} -{"level":"debug","ts":"2023-08-03T05:58:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:58:57","latency":"77.571µs"} -{"level":"debug","ts":"2023-08-03T05:59:00.982Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:02","latency":"94.027µs"} -{"level":"debug","ts":"2023-08-03T05:59:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:02","latency":"87.698µs"} -{"level":"debug","ts":"2023-08-03T05:59:05.982Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:07","latency":"88.582µs"} -{"level":"debug","ts":"2023-08-03T05:59:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:07","latency":"89.581µs"} -{"level":"debug","ts":"2023-08-03T05:59:10.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:59:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:12","latency":"76.943µs"} -{"level":"debug","ts":"2023-08-03T05:59:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:12","latency":"97.271µs"} -{"level":"debug","ts":"2023-08-03T05:59:15.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:17","latency":"89.058µs"} -{"level":"debug","ts":"2023-08-03T05:59:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:17","latency":"95.828µs"} -{"level":"debug","ts":"2023-08-03T05:59:20.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T05:59:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:22","latency":"89.437µs"} -{"level":"debug","ts":"2023-08-03T05:59:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:22","latency":"77.188µs"} -{"level":"debug","ts":"2023-08-03T05:59:25.984Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:59:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:27","latency":"83.61µs"} -{"level":"debug","ts":"2023-08-03T05:59:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:27","latency":"96.25µs"} -{"level":"debug","ts":"2023-08-03T05:59:30.985Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:32","latency":"95.99µs"} -{"level":"debug","ts":"2023-08-03T05:59:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:32","latency":"95.751µs"} -{"level":"debug","ts":"2023-08-03T05:59:35.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:37","latency":"89.934µs"} -{"level":"debug","ts":"2023-08-03T05:59:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:37","latency":"86.065µs"} -{"level":"debug","ts":"2023-08-03T05:59:40.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:42","latency":"89.856µs"} -{"level":"debug","ts":"2023-08-03T05:59:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:42","latency":"97.525µs"} -{"level":"debug","ts":"2023-08-03T05:59:45.987Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:47","latency":"93.784µs"} -{"level":"debug","ts":"2023-08-03T05:59:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:47","latency":"66.937µs"} -{"level":"debug","ts":"2023-08-03T05:59:50.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:52","latency":"126.572µs"} -{"level":"debug","ts":"2023-08-03T05:59:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:52","latency":"152.572µs"} -{"level":"debug","ts":"2023-08-03T05:59:55.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:59:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:57","latency":"90.174µs"} -{"level":"debug","ts":"2023-08-03T05:59:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 05:59:57","latency":"114.157µs"} -{"level":"debug","ts":"2023-08-03T06:00:00.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:02","latency":"89.433µs"} -{"level":"debug","ts":"2023-08-03T06:00:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:02","latency":"84.834µs"} -{"level":"debug","ts":"2023-08-03T06:00:05.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:07","latency":"90.037µs"} -{"level":"debug","ts":"2023-08-03T06:00:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:07","latency":"100.251µs"} -{"level":"debug","ts":"2023-08-03T06:00:10.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:12","latency":"84.312µs"} -{"level":"debug","ts":"2023-08-03T06:00:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:12","latency":"86.747µs"} -{"level":"debug","ts":"2023-08-03T06:00:15.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:17","latency":"118.559µs"} -{"level":"debug","ts":"2023-08-03T06:00:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:17","latency":"124.067µs"} -{"level":"debug","ts":"2023-08-03T06:00:20.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:22","latency":"86.388µs"} -{"level":"debug","ts":"2023-08-03T06:00:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:22","latency":"80.25µs"} -{"level":"debug","ts":"2023-08-03T06:00:25.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:00:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:27","latency":"112.796µs"} -{"level":"debug","ts":"2023-08-03T06:00:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:27","latency":"114.136µs"} -{"level":"debug","ts":"2023-08-03T06:00:30.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:32","latency":"92.738µs"} -{"level":"debug","ts":"2023-08-03T06:00:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:32","latency":"109.366µs"} -{"level":"debug","ts":"2023-08-03T06:00:35.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:37","latency":"115.909µs"} -{"level":"debug","ts":"2023-08-03T06:00:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:37","latency":"117.14µs"} -{"level":"debug","ts":"2023-08-03T06:00:40.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:42","latency":"112.404µs"} -{"level":"debug","ts":"2023-08-03T06:00:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:42","latency":"83.352µs"} -{"level":"debug","ts":"2023-08-03T06:00:45.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:47","latency":"99.13µs"} -{"level":"debug","ts":"2023-08-03T06:00:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:47","latency":"91.526µs"} -{"level":"debug","ts":"2023-08-03T06:00:50.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:52","latency":"91.12µs"} -{"level":"debug","ts":"2023-08-03T06:00:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:52","latency":"97.335µs"} -{"level":"debug","ts":"2023-08-03T06:00:55.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:57","latency":"88.32µs"} -{"level":"debug","ts":"2023-08-03T06:00:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:00:57","latency":"112.963µs"} -{"level":"debug","ts":"2023-08-03T06:01:00.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:02","latency":"103.287µs"} -{"level":"debug","ts":"2023-08-03T06:01:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:02","latency":"113.858µs"} -{"level":"debug","ts":"2023-08-03T06:01:05.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:07","latency":"99.439µs"} -{"level":"debug","ts":"2023-08-03T06:01:07.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:07","latency":"110.895µs"} -{"level":"debug","ts":"2023-08-03T06:01:10.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:01:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:12","latency":"87.603µs"} -{"level":"debug","ts":"2023-08-03T06:01:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:12","latency":"88.494µs"} -{"level":"debug","ts":"2023-08-03T06:01:16.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:01:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:17","latency":"103.177µs"} -{"level":"debug","ts":"2023-08-03T06:01:17.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:17","latency":"101.801µs"} -{"level":"debug","ts":"2023-08-03T06:01:21.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:22","latency":"94.348µs"} -{"level":"debug","ts":"2023-08-03T06:01:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:22","latency":"83.388µs"} -{"level":"debug","ts":"2023-08-03T06:01:26.001Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:27","latency":"84.627µs"} -{"level":"debug","ts":"2023-08-03T06:01:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:27","latency":"96.274µs"} -{"level":"debug","ts":"2023-08-03T06:01:31.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:32","latency":"86.141µs"} -{"level":"debug","ts":"2023-08-03T06:01:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:32","latency":"89.901µs"} -{"level":"debug","ts":"2023-08-03T06:01:36.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:37","latency":"94.786µs"} -{"level":"debug","ts":"2023-08-03T06:01:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:37","latency":"72.436µs"} -{"level":"debug","ts":"2023-08-03T06:01:41.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:42","latency":"92.207µs"} -{"level":"debug","ts":"2023-08-03T06:01:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:42","latency":"78.856µs"} -{"level":"debug","ts":"2023-08-03T06:01:46.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:47","latency":"91.828µs"} -{"level":"debug","ts":"2023-08-03T06:01:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:47","latency":"91.94µs"} -{"level":"debug","ts":"2023-08-03T06:01:51.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:52","latency":"109.584µs"} -{"level":"debug","ts":"2023-08-03T06:01:52.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:52","latency":"138.522µs"} -{"level":"debug","ts":"2023-08-03T06:01:56.005Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:57","latency":"95.254µs"} -{"level":"debug","ts":"2023-08-03T06:01:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:01:57","latency":"83.675µs"} -{"level":"debug","ts":"2023-08-03T06:02:01.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:02","latency":"94.399µs"} -{"level":"debug","ts":"2023-08-03T06:02:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:02","latency":"103.739µs"} -{"level":"info","ts":"2023-08-03T06:02:05.967Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:06.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:07","latency":"86.776µs"} -{"level":"debug","ts":"2023-08-03T06:02:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:07","latency":"75.374µs"} -{"level":"debug","ts":"2023-08-03T06:02:11.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:12","latency":"108.461µs"} -{"level":"debug","ts":"2023-08-03T06:02:12.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:12","latency":"113.115µs"} -{"level":"debug","ts":"2023-08-03T06:02:16.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:17","latency":"118.443µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:17","latency":"118.387µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.937Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:17","latency":"72.279µs"} -{"level":"debug","ts":"2023-08-03T06:02:18.147Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:18","latency":"43.437µs"} -{"level":"debug","ts":"2023-08-03T06:02:21.009Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:22","latency":"92.728µs"} -{"level":"debug","ts":"2023-08-03T06:02:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:22","latency":"71.549µs"} -{"level":"debug","ts":"2023-08-03T06:02:26.010Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:27","latency":"101.569µs"} -{"level":"debug","ts":"2023-08-03T06:02:27.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:27","latency":"75.958µs"} -{"level":"debug","ts":"2023-08-03T06:02:31.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:32","latency":"93.832µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:32","latency":"71.163µs"} -{"level":"debug","ts":"2023-08-03T06:02:36.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:37","latency":"121.55µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:37","latency":"84.157µs"} -{"level":"debug","ts":"2023-08-03T06:02:41.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:42","latency":"77.87µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:42","latency":"89.758µs"} -{"level":"debug","ts":"2023-08-03T06:02:46.013Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:46.147Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:46","latency":"4.634002ms"} -{"level":"info","ts":"2023-08-03T06:02:46.366Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:02:46.366Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} -{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-03T06:02:46.366Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:02:46.366Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.454Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"info","ts":"2023-08-03T06:02:46.629Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:46.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:46.629Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","duration":826} -{"level":"info","ts":"2023-08-03T06:02:46.630Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"info","ts":"2023-08-03T06:02:46.630Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:02:46.630Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"eaacce8624c9c4777749ac19150a794a95be6222760cd4cabac27d8e1ead5ca4\\\" \\n\\ntransmitterID = \\\"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:46","latency":"272.176682ms"} -{"level":"debug","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}]} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamName":"ragedisco/v1","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf"} -{"level":"info","ts":"2023-08-03T06:02:46.718Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamName":"ragedisco/v1","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:02:46.719Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f"} -{"level":"info","ts":"2023-08-03T06:02:46.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","numFound":1,"loaded":["12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"],"found":["12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"],"numLoaded":1,"queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"_id":"discoveryProtocol","id":"ragep2p","numQueried":5} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":1,"bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}]} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"c2275194e34764fde5069c17e6a08fc30d84cc6cf510232ae0ee309ea3338eca","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":1} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"info","ts":"2023-08-03T06:02:46.722Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"info","ts":"2023-08-03T06:02:46.723Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"info","ts":"2023-08-03T06:02:46.723Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","ne":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"previousNe":0} -{"level":"info","ts":"2023-08-03T06:02:46.723Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"epoch":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:02:46.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:47","latency":"102.823µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:47","latency":"106.673µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.628Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.730Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:47.904Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.702Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:48.910Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.761Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:49.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"warn","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"debug","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"warn","ts":"2023-08-03T06:02:50.553Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:02:50.555Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","direction":"out","remoteAddr":"10.14.104.202:6690","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"info","ts":"2023-08-03T06:02:50.556Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamName":"ragedisco/v1","streamID":"f83d9ddc8fd93faa8cb7b03c90ab391a4eaaeeac88f2bc4da1d74f87379a28bf","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:50.557Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:02:50.557Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:02:50.694Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:50.853Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:51.028Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.822Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:51.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:52","latency":"95.67µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:52","latency":"95.655µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.785Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:52.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:53.936Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.011Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.186Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:54.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.246Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:55.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:56.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","direction":"in","remoteAddr":"10.14.116.75:43740","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"2507856630b29a8c118b4ba216e3d0646393d58f09cb1ef187ab25994c20471f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:02:56.127Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"a45964f06f35f04bb14487ca4adc973f314ea4f7ee17de0606302dcd5d85e02d"} -{"level":"debug","ts":"2023-08-03T06:02:56.128Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:02:56.128Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:02:56.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.130Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.001750016} -{"level":"debug","ts":"2023-08-03T06:02:56.130Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.001878473} -{"level":"debug","ts":"2023-08-03T06:02:56.130Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":4,"epoch":1,"round":1,"observation":"CJCGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:02:56.304Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"warn","ts":"2023-08-03T06:02:56.930Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:02:56.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:57","latency":"79.888µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:02:57","latency":"88.242µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:57.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.089Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.176Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.212Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:58.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.312Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.149Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.236Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.390Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:01.218Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.447Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.806Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:03:01.948Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:02","latency":"101.196µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:02","latency":"163.363µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.465Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.680Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:05.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:05.855Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:06.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.598Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.723Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:06.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.910Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:07","latency":"116.095µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:07","latency":"120.596µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.418Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:07.418Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:03:07.418Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","direction":"out","remoteAddr":"10.14.72.41:6690","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:07.566Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.654Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.825Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.657Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.893Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.760Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:11.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":2,"candidateEpochs":[2,2,2]} -{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":1,"e":1,"l":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":4} -{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:11.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.967Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:12","latency":"114.481µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:12","latency":"118.478µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.845Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.932Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.006Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.874Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.924Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.320Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:03:15.320Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:15.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:16.080Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.347Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.893Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:03:17.025Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:17","latency":"94.382µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:17","latency":"109.577µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.228Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.402Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.439Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remoteAddr":"10.14.48.92:54724","direction":"in"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:19.100Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.187Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.211Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.503Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:21.212Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.299Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.421Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:22","latency":"108.121µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:22","latency":"107.363µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.458Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.483Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.447Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.360Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.785Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.021Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:26.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.704Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.878Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:27","latency":"96.712µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:27","latency":"96.696µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.428Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.751Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.434Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.522Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.767Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.608Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.980Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.602Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.904Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:31.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.638Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.792Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","newEpoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"candidateEpochs":[3,3,3]} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","e":2,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":2,"leader":2} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"leader":4,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00063851} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000717368} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4,"round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:31.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.981Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:03:32.115Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:32","latency":"110.087µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:32","latency":"121.873µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.692Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.985Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.872Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.997Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.171Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.817Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.029Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1},"deviation":true,"unfulfilledRequest":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"result":true,"alphaReportInfinite":false,"initialRound":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"round":1,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","result":true,"reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"latestAcceptedEpochRound":{"Epoch":0,"Round":0}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00078653} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000852053} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:35.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.920Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:36.082Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.256Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.838Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:37","latency":"91.529µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:37","latency":"76.811µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.166Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.341Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.288Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.463Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","initialRound":false,"unfulfilledRequest":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"leader":4,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":1,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":2},"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000775613} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000825697} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4,"round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:40.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.506Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:41.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.354Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:42","latency":"93.563µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:42","latency":"134.727µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.170Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.396Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.570Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:43.809Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deltaCTimeout":true,"result":true,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deltaC":0,"deviation":true} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"round":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":4,"messageRound":4,"roundMax":3,"round":4,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":3,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":3,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":3,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","candidateEpochs":[4,4,4],"newEpoch":4} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"leader":4,"e":3,"l":4} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":3,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000677562} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000691354} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:44.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.248Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.457Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.333Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.660Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:46.256Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.691Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.069Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:03:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:47","latency":"112.151µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:47","latency":"100.413µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.528Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":4,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":1,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"deviates":true} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"round":1,"sender":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000679881} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000798627} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:48.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.446Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.389Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.668Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.843Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:51.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.591Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:51.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","deltaCTimeout":true,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"alphaReportInfinite":false,"alphaReportPPB":0,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptPPB":0,"result":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"sender":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000667953} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000650595} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0,"round":3,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:51.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:52","latency":"92.408µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:52","latency":"91.613µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.585Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.732Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.730Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.818Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.044Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.733Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.821Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:55.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","unfulfilledRequest":false,"result":true,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","initialRound":false} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":4,"Round":3},"deviates":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":4,"Round":2},"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":5,"candidateEpochs":[5,5,5]} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":4,"leader":0,"e":4,"l":0} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":3,"epoch":4,"round":3} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000706135} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00074155} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":5,"round":1,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:55.967Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.025Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:56.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.817Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.904Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:57","latency":"93.315µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:03:57","latency":"107.679µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.015Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.189Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z","alphaReportPPB":0,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"initialRound":false,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"sender":1,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"reportEpochRound":{"Epoch":5,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000708699} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":5,"round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000679514} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:03:59.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.271Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.975Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:01.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.362Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.045Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:02","latency":"107.597µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:02","latency":"102.964µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.156Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:04:02.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.068Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaReportInfinite":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0,"deltaCTimeout":true,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":5,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000700657} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000693044} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:04.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.281Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:06.201Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.288Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.549Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:07","latency":"88.946µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:07","latency":"92.661µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.377Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"alphaReportInfinite":false,"deltaC":0,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false,"deviation":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":4,"messageRound":4,"roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":5,"round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":5,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"candidateEpochs":[6,6,6],"newEpoch":6} -{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":5,"leader":4,"e":5,"l":4} -{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00058754} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000655383} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:08.221Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.354Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.651Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.319Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.669Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:11.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.506Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.680Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:11.846Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"alphaReportPPB":0,"deltaC":0,"initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deviation":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":6,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"round":1,"sender":0,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"round":1,"sender":4,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":3,"epoch":6,"round":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000787039} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000798405} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"leader":0,"round":2,"observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:12","latency":"97.207µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:12","latency":"97.281µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.494Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.538Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.712Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.532Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.783Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.628Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.686Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.841Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:15.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2},"deltaC":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":6,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","contractEpochRound":{"Epoch":6,"Round":1},"deviates":true,"result":true,"reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":4,"epoch":6,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00071212} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000775202} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:16.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:04:16.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.742Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:17","latency":"101.249µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:17","latency":"95.152µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.244Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:04:17.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.811Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.838Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.813Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:19.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"result":true,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"unfulfilledRequest":false,"alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z"} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"messageRound":4,"roundMax":3,"round":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":0,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":6,"Round":2},"deviates":true,"result":true,"contractEpochRound":{"Epoch":6,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"newEpoch":7,"candidateEpochs":[7,7,7],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":6,"leader":0,"l":0,"e":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":6,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000687765} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000718991} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:19.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.943Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.117Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.975Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:04:21.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.046Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:22","latency":"91.959µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:22","latency":"97.915µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.161Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.054Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.213Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:23.861Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"deltaCTimeout":true,"deltaC":0,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z","unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"initialRound":false,"deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":7,"round":1,"sender":0,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","result":true,"reportEpochRound":{"Epoch":7,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":6,"Round":3},"latestAcceptedEpochRound":{"Epoch":6,"Round":3},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"info","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":7,"round":1,"sender":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.00069874} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000816302} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:23.951Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:23.951Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":7,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:23.951Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T06:04:24.038Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6","signature":"5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"} -{"level":"debug","ts":"2023-08-03T06:04:24.038Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6"} -{"level":"debug","ts":"2023-08-03T06:04:24.065Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.623Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6","signature":"5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"} -{"level":"debug","ts":"2023-08-03T06:04:24.624Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"],"id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6"} -{"level":"debug","ts":"2023-08-03T06:04:24.624Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"a1a0cac4-a5a5-4f6d-b3b4-6c4358efc1a6","signatures":["5v84TbtcxM9nrYisSFBXyxjdnKJ3R7n1hLRgB8w55QcLV46D4BVjT7jmosFEzndtTZhkjmJ1kZVdKpZ824tcxgxm"]} -{"level":"debug","ts":"2023-08-03T06:04:25.094Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.231Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.268Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:26.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.231Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.318Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:27","latency":"98.031µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:27","latency":"97.768µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.145Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.233Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.320Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2},"deltaC":0,"alphaReportInfinite":false,"deviation":true,"initialRound":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","result":true} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":2,"sender":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"contractEpochRound":{"Epoch":7,"Round":1},"reportEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"info","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":3,"epoch":7,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000834961} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000846421} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:27.955Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:27.955Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:28.042Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"} -{"level":"debug","ts":"2023-08-03T06:04:28.042Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab"} -{"level":"debug","ts":"2023-08-03T06:04:28.236Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.277Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.445Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"} -{"level":"debug","ts":"2023-08-03T06:04:29.070Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab","signature":"4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"} -{"level":"debug","ts":"2023-08-03T06:04:29.071Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"],"id":"8f04a98e-017b-4779-ae62-8511f58cf0ab"} -{"level":"debug","ts":"2023-08-03T06:04:29.071Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"8f04a98e-017b-4779-ae62-8511f58cf0ab","signatures":["4WnqTMtGXiJmg42NHzSurYmTQa63LysPo8cG7GmCM9YDsR9GJzMpXSSjqFzVTjx9PVjnvkNnSqXr2ypdTY8WroTN"]} -{"level":"debug","ts":"2023-08-03T06:04:29.240Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.248Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:31.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.473Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:31.871Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"initialRound":false,"alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"leader":0,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","roundMax":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"round":3,"sender":0,"epoch":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":7,"Round":3},"latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":7,"leader":0,"e":7,"l":0} -{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":7,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"leader":2,"epoch":8,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:32","latency":"115.382µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:32","latency":"213.215µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.332Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:04:32.387Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.554Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.642Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.643Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.716Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.649Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.737Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:36.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.686Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:37","latency":"97.155µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:37","latency":"97.423µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.867Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.769Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.817Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.927Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.882Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.894Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.031Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:41.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.959Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.990Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.134Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:42","latency":"89.526µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:42","latency":"89.667µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.046Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.085Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.828Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3}} -{"level":"info","ts":"2023-08-03T06:04:45.828Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:46.032Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:46.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.219Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.270Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:47","latency":"91.94µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:47","latency":"91.88µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.268Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.356Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.419Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:04:48.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.307Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.481Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.337Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.424Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.495Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.833Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-03T06:04:49.833Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:50.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.366Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.518Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.034Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:51.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.547Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":9,"candidateEpochs":[9,9,9]} -{"level":"info","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":8,"e":8,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":2} -{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"oid":1} -{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000699402} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.00070011} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":1,"observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:52","latency":"89.299µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:52","latency":"75.874µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.546Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.633Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.550Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.606Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.637Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.838Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2}} -{"level":"info","ts":"2023-08-03T06:04:53.838Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:54.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.576Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.664Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.697Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.667Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:55.877Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deltaCTimeout":true,"unfulfilledRequest":false,"deltaC":0,"initialRound":false,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviation":true,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"alphaReportPPB":0,"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","latestAcceptedEpochRound":{"Epoch":7,"Round":3},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":9,"Round":1},"contractEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":9,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000632823} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000695228} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":9,"leader":3,"oid":1,"round":2,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:56.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:56.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.697Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.699Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:57","latency":"94.297µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:04:57","latency":"89.382µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.649Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.737Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.772Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.653Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.741Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.799Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.973Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:59.883Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"deltaC":0,"deltaCTimeout":true,"initialRound":false,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2},"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z"} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":9,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":9,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":4,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000703428} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.0006903} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":9,"leader":3,"oid":1} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:05:00.020Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.801Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.889Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.036Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:01.073Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.853Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:02","latency":"87.209µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:02","latency":"91.977µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.507Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:05:02.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.011Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:03.887Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"result":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","unfulfilledRequest":false,"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","messageRound":4,"roundMax":3,"oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"leader":3,"round":4} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"round":3,"sender":3,"oid":1} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"sender":1,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"e":9,"l":3,"leader":3,"oid":1} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":9,"round":3,"sender":4} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":2,"epoch":10} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"epoch":9,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.036Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.972Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.059Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.102Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.853Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":6,"Round":2}} -{"level":"info","ts":"2023-08-03T06:05:05.853Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:05:06.033Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.037Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:05:06.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.146Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:07","latency":"114.626µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:07","latency":"91.793µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.338Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:11.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.406Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:12","latency":"82.917µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:12","latency":"96.623µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.352Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.588Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.467Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.428Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.478Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.653Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.592Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:16.517Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.631Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:17","latency":"96.307µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:17","latency":"96.314µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.595Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:05:17.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.717Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.659Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.731Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.819Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.036Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.039Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:05:21.818Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.906Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:22","latency":"95.559µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:22","latency":"96.196µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.880Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.115Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","candidateEpochs":[11,11,11],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"newEpoch":11} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","e":10,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"leader":2,"epoch":10} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":11,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:05:23.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.027Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.179Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.988Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.075Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.246Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.040Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:26.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.147Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.093Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:27","latency":"102.767µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:27","latency":"103.044µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.164Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.180Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.818Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1}} -{"level":"info","ts":"2023-08-03T06:05:27.818Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:05:28.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.245Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.419Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.150Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.342Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.346Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:05:31.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.441Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.817µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.279µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.418Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.507Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.681Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.682Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:05:33.422Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.509Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.691Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.585Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.598Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.652Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.827Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:05:36.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.712Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:37","latency":"102.416µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:37","latency":"72.366µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.681Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.855Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.881Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.783Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.790Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.870Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.881Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:41.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.097Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:42","latency":"108.6µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:42","latency":"78.096µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.924Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":12,"candidateEpochs":[12,12,12]} -{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":11,"leader":2,"e":11} -{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"leader":0} -{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000683425} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000719541} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"leader":0,"round":1,"observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:05:43.989Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.035Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.076Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.036Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.080Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.042Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:46.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.134Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:47","latency":"91.212µs"} -{"level":"debug","ts":"2023-08-03T06:05:47.135Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.16.121","errors":"","servedAt":"2023-08-03 06:05:47","latency":"100.64µs"} -{"level":"debug","ts":"2023-08-03T06:05:47.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.286Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.770Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M"} -{"level":"debug","ts":"2023-08-03T06:05:47.843Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":5,"Round":3}} -{"level":"info","ts":"2023-08-03T06:05:47.843Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","oid":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:05:47.896Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":1},"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","deltaC":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","epoch":12,"leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"event":{"Epoch":12,"Round":1,"H":[167,39,199,18,183,107,6,93,111,62,215,255,184,87,18,232,246,121,81,174,216,105,228,243,196,104,139,45,159,91,177,72],"AttestedReport":{"Report":"ZMtDtwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9gNLwPP+ClJhTX7NsKPOXorBFzgqd+2UlX9TJ8weNIs/PxblhJJ+xO1xAx4Wh27fNI+gwPqWH09ELWRPasWQawA=","Signer":0},{"Signature":"q/mraM9mGz5/5b0Kdq5D6FKlq3RizaRnnnv+DBHJ8oteh4RbWB6srbexYGWf+qQxpa/Z5cVgSaUw82wmAPkaPAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","deviates":true,"reportEpochRound":{"Epoch":12,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":9,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"sender":1,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f"} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"epoch":12,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":1,"round":1,"sender":3,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","specID":1,"runTime":0.000832983} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","jobID":0,"jobName":"","specID":1,"runTime":0.000907258} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-ebc247af-3457-47fa-8455-deba92c4a13f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"4JDpvucqZzY6kLwnT2ZPRsYehevz4HtQeVXhHdFm4W3M","round":2,"observation":"CLuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:48.171Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.203Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.258Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log deleted file mode 100644 index 6763f6a6c..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - -waiting for server to start....2023-08-03 05:56:39.962 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.041 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC -2023-08-03 05:56:40.045 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -2023-08-03 05:56:40.664 UTC [48] LOG: received fast shutdown request -waiting for server to shut down....2023-08-03 05:56:40.683 UTC [48] LOG: aborting any active transactions -2023-08-03 05:56:40.685 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 05:56:40.685 UTC [50] LOG: shutting down -2023-08-03 05:56:40.775 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 05:56:40.876 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 05:56:40.876 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 05:56:40.878 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.893 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC -2023-08-03 05:56:40.897 UTC [1] LOG: database system is ready to accept connections -2023-08-03 05:56:42.848 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 05:56:43.951 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 05:56:43.951 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 05:56:43.951 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 05:56:43.951 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 05:56:43.952 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 05:56:43.952 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log deleted file mode 100644 index cf0d95ada..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_3/node.log +++ /dev/null @@ -1,1722 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T05:56:43.938Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.938Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.938Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:43.939Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-03T05:56:43.943Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.944Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.944Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"1ea35f82-f073-4f56-b485-d30dc59d5704"} -{"level":"debug","ts":"2023-08-03T05:56:43.949Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"1ea35f82-f073-4f56-b485-d30dc59d5704"} -{"level":"debug","ts":"2023-08-03T05:56:43.951Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/03 05:56:44 OK 0001_initial.sql -2023/08/03 05:56:44 OK 0002_gormv2.sql -2023/08/03 05:56:44 OK 0003_eth_logs_table.sql -2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql -2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql -2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 05:56:44 OK 0010_bridge_fk.sql -2023/08/03 05:56:44 OK 0011_latest_round_requested.sql -2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql -2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql -2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql -2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 05:56:44 OK 0018_add_node_version_table.sql -2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 05:56:44 OK 0020_remove_result_task.sql -2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql -2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql -2023/08/03 05:56:44 OK 0025_create_log_config_table.sql -2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql -2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 05:56:44 OK 0028_vrf_v2.sql -2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql -2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql -2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql -2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql -2023/08/03 05:56:44 OK 0036_external_job_id.go -2023/08/03 05:56:44 OK 0037_cascade_deletes.sql -2023/08/03 05:56:44 OK 0038_create_csa_keys.sql -2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql -2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql -2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql -2023/08/03 05:56:44 OK 0042_create_job_proposals.sql -2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go -2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 05:56:44 OK 0056_multichain.go -2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql -2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 05:56:45 OK 0060_combine_keys_tables.sql -2023/08/03 05:56:45 OK 0061_multichain_relations.sql -2023/08/03 05:56:45 OK 0062_upgrade_keepers.sql -2023/08/03 05:56:45 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 05:56:45 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 05:56:45 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 05:56:45 OK 0066_update_job_proposal_status.sql -2023/08/03 05:56:45 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 05:56:45 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 05:56:45 OK 0069_remove_unused_columns.sql -2023/08/03 05:56:45 OK 0070_dynamic_fee_txes.sql -2023/08/03 05:56:45 OK 0071_allow_null_json_serializable.sql -2023/08/03 05:56:45 OK 0072_drop_unused_tables.sql -2023/08/03 05:56:45 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 05:56:45 OK 0074_simulation_eth_tx.sql -2023/08/03 05:56:45 OK 0075_unique_job_names.sql -2023/08/03 05:56:45 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 05:56:45 OK 0077_add_webauthn_table.sql -2023/08/03 05:56:45 OK 0078_only_one_version.sql -2023/08/03 05:56:45 OK 0079_vrf_v2_fields.sql -2023/08/03 05:56:45 OK 0080_drop_unused_cols.sql -2023/08/03 05:56:45 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 05:56:45 OK 0082_lease_lock.sql -2023/08/03 05:56:45 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 05:56:45 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 05:56:45 OK 0085_requested_confs_delay.sql -2023/08/03 05:56:45 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 05:56:45 OK 0087_ocr2_tables.sql -2023/08/03 05:56:45 OK 0088_vrfv2_request_timeout.sql -2023/08/03 05:56:45 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 05:56:45 OK 0090_ocr_new_timeouts.sql -2023/08/03 05:56:45 OK 0091_ocr2_relay.sql -2023/08/03 05:56:45 OK 0092_bptxm_tx_checkers.sql -2023/08/03 05:56:45 OK 0093_terra_txm.sql -2023/08/03 05:56:45 OK 0094_blockhash_store_job.sql -2023/08/03 05:56:45 OK 0095_terra_fcd.sql -2023/08/03 05:56:45 OK 0096_create_job_proposal_specs.sql -2023/08/03 05:56:45 OK 0097_bootstrap_spec.sql -2023/08/03 05:56:45 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 05:56:45 OK 0099_terra_msgs_created_at.sql -2023/08/03 05:56:45 OK 0100_bootstrap_config.sql -2023/08/03 05:56:45 OK 0101_generic_ocr2.sql -2023/08/03 05:56:45 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 05:56:45 OK 0103_terra_msgs_type_url.sql -2023/08/03 05:56:45 OK 0104_terra_cascade_delete.sql -2023/08/03 05:56:45 OK 0105_create_forwarder_addresses.sql -2023/08/03 05:56:45 OK 0106_evm_node_uniqueness.sql -2023/08/03 05:56:45 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 05:56:45 OK 0109_solana_chains_nodes.sql -2023/08/03 05:56:45 OK 0110_add_vrf_chunk_size.sql -2023/08/03 05:56:45 OK 0111_terra_msgs_state_started.sql -2023/08/03 05:56:45 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 05:56:45 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 05:56:45 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 05:56:45 OK 0115_log_poller.sql -2023/08/03 05:56:45 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 05:56:45 OK 0117_add_log_poller_idx.sql -2023/08/03 05:56:45 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 05:56:45 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 05:56:45 OK 0120_log_poller_data_idx.sql -2023/08/03 05:56:45 OK 0121_remove_log_configs.sql -2023/08/03 05:56:45 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 05:56:45 OK 0123_terra_idx_simplify.sql -2023/08/03 05:56:45 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 05:56:45 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 05:56:45 OK 0126_remove_observation_source.sql -2023/08/03 05:56:45 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 05:56:45 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0129_add_job_gas_limit.sql -2023/08/03 05:56:45 OK 0130_starknet_chains_nodes.sql -2023/08/03 05:56:45 OK 0131_add_multi_user.sql -2023/08/03 05:56:45 OK 0132_log_index_uniqueness.sql -2023/08/03 05:56:45 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 05:56:45 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 05:56:45 OK 0135_tx_index_not_null.sql -2023/08/03 05:56:45 OK 0136_add_job_allow_forwarding.sql -2023/08/03 05:56:45 OK 0137_remove_tx_index.sql -2023/08/03 05:56:45 OK 0138_rename_allowforwarding_field.sql -2023/08/03 05:56:45 OK 0139_multi_chain_keys.sql -2023/08/03 05:56:45 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 05:56:45 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 05:56:45 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 05:56:45 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 05:56:45 OK 0144_optimize_lp.sql -2023/08/03 05:56:45 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0148_dkg_shares.sql -2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql -2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql -2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql -2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql -2023/08/03 05:56:45 OK 0155_remove_terra.sql -2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql -2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql -2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql -2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql -2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 05:56:45 OK 0164_add_cosmos.sql -2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql -2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql -2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 05:56:45 OK 0168_drop_node_tables.sql -2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql -2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql -2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql -2023/08/03 05:56:45 OK 0174_vrf_owner.sql -2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql -2023/08/03 05:56:45 OK 0176_s4_shared_table.sql -2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql -2023/08/03 05:56:45 OK 0178_drop_access_list.sql -2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql -2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql -2023/08/03 05:56:45 OK 0183_functions_new_fields.sql -2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql -2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 05:56:45 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.783Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:50.037Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID ebd0973576a277415554c70ebfc9f5a4d81443db5df494e66c1ba55c58d6f58f for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:50.037Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:52.251Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID Eeqn1zJqyMGEV7GHAdTW7FgSKQeNy5tbJcoFLqpQ8p3d","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:54.344Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 7cc03af09b581116172da7ee111733feba17e5834e22833a4474ea544d505772","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.635Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T05:56:56.764Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T05:56:56.764Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T05:56:56.764Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.764Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-03T05:56:56.765Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 38835. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":38835} -{"level":"debug","ts":"2023-08-03T05:56:56.765Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":38835,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T05:56:56.766Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","v1listenPort":38835,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/38835"} -{"level":"debug","ts":"2023-08-03T05:56:56.766Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}"} -{"level":"info","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:56:56.767Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","in":"recvLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:56:56.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:56:56.832Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T05:56:56.832Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.832Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.97s","version":"2.4.0@d0c54ea","appID":"1ea35f82-f073-4f56-b485-d30dc59d5704"} -{"level":"debug","ts":"2023-08-03T05:56:56.833Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000819905} -{"level":"info","ts":"2023-08-03T05:56:56.840Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T05:56:56.844Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011031743} -{"level":"debug","ts":"2023-08-03T05:56:56.844Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:57.141Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:56:57","latency":"2.084211ms"} -{"level":"debug","ts":"2023-08-03T05:56:57.142Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:56:57","latency":"222.28µs"} -{"level":"debug","ts":"2023-08-03T05:57:01.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:57:01.953Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T05:57:02.152Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:02","latency":"99.055µs"} -{"level":"debug","ts":"2023-08-03T05:57:02.152Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:02","latency":"105.843µs"} -{"level":"info","ts":"2023-08-03T05:57:06.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:57:06.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:07","latency":"107.087µs"} -{"level":"debug","ts":"2023-08-03T05:57:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:07","latency":"86.114µs"} -{"level":"debug","ts":"2023-08-03T05:57:11.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:12","latency":"99.841µs"} -{"level":"debug","ts":"2023-08-03T05:57:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:12","latency":"156.275µs"} -{"level":"debug","ts":"2023-08-03T05:57:16.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:17","latency":"88.319µs"} -{"level":"debug","ts":"2023-08-03T05:57:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:17","latency":"85.313µs"} -{"level":"debug","ts":"2023-08-03T05:57:21.769Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:22","latency":"91.237µs"} -{"level":"debug","ts":"2023-08-03T05:57:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:22","latency":"155.214µs"} -{"level":"debug","ts":"2023-08-03T05:57:26.770Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:27","latency":"74.188µs"} -{"level":"debug","ts":"2023-08-03T05:57:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:27","latency":"99.138µs"} -{"level":"debug","ts":"2023-08-03T05:57:31.770Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:32","latency":"92.758µs"} -{"level":"debug","ts":"2023-08-03T05:57:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:32","latency":"92.42µs"} -{"level":"debug","ts":"2023-08-03T05:57:35.458Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:57:35.459Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T05:57:35.558Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T05:57:35.560Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:35","latency":"102.134073ms"} -{"level":"debug","ts":"2023-08-03T05:57:36.771Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:57:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:37","latency":"90.81µs"} -{"level":"debug","ts":"2023-08-03T05:57:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:37","latency":"90.691µs"} -{"level":"debug","ts":"2023-08-03T05:57:41.771Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:57:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:42","latency":"87.124µs"} -{"level":"debug","ts":"2023-08-03T05:57:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:42","latency":"109.31µs"} -{"level":"debug","ts":"2023-08-03T05:57:46.772Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:47","latency":"88.409µs"} -{"level":"debug","ts":"2023-08-03T05:57:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:47","latency":"108.839µs"} -{"level":"debug","ts":"2023-08-03T05:57:50.428Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:50","latency":"2.202745ms"} -{"level":"debug","ts":"2023-08-03T05:57:51.773Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:52","latency":"69.561µs"} -{"level":"debug","ts":"2023-08-03T05:57:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:52","latency":"99.892µs"} -{"level":"debug","ts":"2023-08-03T05:57:52.659Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:52","latency":"2.028896894s"} -{"level":"debug","ts":"2023-08-03T05:57:55.140Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:55","latency":"2.278003245s"} -{"level":"debug","ts":"2023-08-03T05:57:56.774Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:57","latency":"101.417µs"} -{"level":"debug","ts":"2023-08-03T05:57:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:57:57","latency":"116.032µs"} -{"level":"debug","ts":"2023-08-03T05:58:01.474Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"56.049µs"} -{"level":"debug","ts":"2023-08-03T05:58:01.677Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"54.152µs"} -{"level":"debug","ts":"2023-08-03T05:58:01.775Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:02","latency":"87.083µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:02","latency":"90.302µs"} -{"level":"debug","ts":"2023-08-03T05:58:06.776Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:58:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:07","latency":"95.563µs"} -{"level":"debug","ts":"2023-08-03T05:58:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:07","latency":"79.848µs"} -{"level":"debug","ts":"2023-08-03T05:58:11.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:12","latency":"98.666µs"} -{"level":"debug","ts":"2023-08-03T05:58:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:12","latency":"91.353µs"} -{"level":"debug","ts":"2023-08-03T05:58:16.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:17","latency":"94.321µs"} -{"level":"debug","ts":"2023-08-03T05:58:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:17","latency":"89.325µs"} -{"level":"debug","ts":"2023-08-03T05:58:21.777Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:58:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:22","latency":"96.841µs"} -{"level":"debug","ts":"2023-08-03T05:58:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:22","latency":"78.445µs"} -{"level":"debug","ts":"2023-08-03T05:58:26.778Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:58:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:27","latency":"88.874µs"} -{"level":"debug","ts":"2023-08-03T05:58:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:27","latency":"103.02µs"} -{"level":"debug","ts":"2023-08-03T05:58:31.778Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:32","latency":"92.327µs"} -{"level":"debug","ts":"2023-08-03T05:58:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:32","latency":"91.311µs"} -{"level":"debug","ts":"2023-08-03T05:58:36.779Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:37","latency":"74.362µs"} -{"level":"debug","ts":"2023-08-03T05:58:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:37","latency":"104.381µs"} -{"level":"debug","ts":"2023-08-03T05:58:41.780Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:42","latency":"90.784µs"} -{"level":"debug","ts":"2023-08-03T05:58:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:42","latency":"94.166µs"} -{"level":"debug","ts":"2023-08-03T05:58:46.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:47","latency":"86.434µs"} -{"level":"debug","ts":"2023-08-03T05:58:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:47","latency":"104.203µs"} -{"level":"debug","ts":"2023-08-03T05:58:51.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:52","latency":"89.361µs"} -{"level":"debug","ts":"2023-08-03T05:58:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:52","latency":"83.855µs"} -{"level":"debug","ts":"2023-08-03T05:58:56.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:57","latency":"93.73µs"} -{"level":"debug","ts":"2023-08-03T05:58:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:58:57","latency":"92.689µs"} -{"level":"debug","ts":"2023-08-03T05:59:01.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:02","latency":"93.372µs"} -{"level":"debug","ts":"2023-08-03T05:59:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:02","latency":"93.386µs"} -{"level":"debug","ts":"2023-08-03T05:59:06.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:07","latency":"105.76µs"} -{"level":"debug","ts":"2023-08-03T05:59:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:07","latency":"82.905µs"} -{"level":"debug","ts":"2023-08-03T05:59:11.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:12","latency":"93.16µs"} -{"level":"debug","ts":"2023-08-03T05:59:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:12","latency":"89.496µs"} -{"level":"debug","ts":"2023-08-03T05:59:16.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:17","latency":"88.302µs"} -{"level":"debug","ts":"2023-08-03T05:59:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:17","latency":"91.124µs"} -{"level":"debug","ts":"2023-08-03T05:59:21.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:22","latency":"87.235µs"} -{"level":"debug","ts":"2023-08-03T05:59:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:22","latency":"72.512µs"} -{"level":"debug","ts":"2023-08-03T05:59:26.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:27","latency":"81.182µs"} -{"level":"debug","ts":"2023-08-03T05:59:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:27","latency":"91.343µs"} -{"level":"debug","ts":"2023-08-03T05:59:31.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:32","latency":"111.234µs"} -{"level":"debug","ts":"2023-08-03T05:59:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:32","latency":"111.253µs"} -{"level":"debug","ts":"2023-08-03T05:59:36.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:37","latency":"87.356µs"} -{"level":"debug","ts":"2023-08-03T05:59:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:37","latency":"90.533µs"} -{"level":"debug","ts":"2023-08-03T05:59:41.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:42","latency":"84.825µs"} -{"level":"debug","ts":"2023-08-03T05:59:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:42","latency":"101.182µs"} -{"level":"debug","ts":"2023-08-03T05:59:46.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:59:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:47","latency":"91.371µs"} -{"level":"debug","ts":"2023-08-03T05:59:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:47","latency":"89.92µs"} -{"level":"debug","ts":"2023-08-03T05:59:51.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:59:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:52","latency":"91.579µs"} -{"level":"debug","ts":"2023-08-03T05:59:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:52","latency":"89.784µs"} -{"level":"debug","ts":"2023-08-03T05:59:56.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T05:59:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:57","latency":"100.443µs"} -{"level":"debug","ts":"2023-08-03T05:59:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 05:59:57","latency":"143.878µs"} -{"level":"debug","ts":"2023-08-03T06:00:01.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:02","latency":"92.696µs"} -{"level":"debug","ts":"2023-08-03T06:00:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:02","latency":"90.688µs"} -{"level":"debug","ts":"2023-08-03T06:00:06.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:07","latency":"109.484µs"} -{"level":"debug","ts":"2023-08-03T06:00:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:07","latency":"92.221µs"} -{"level":"debug","ts":"2023-08-03T06:00:11.790Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:12","latency":"88.199µs"} -{"level":"debug","ts":"2023-08-03T06:00:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:12","latency":"97.843µs"} -{"level":"debug","ts":"2023-08-03T06:00:16.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:17","latency":"92.638µs"} -{"level":"debug","ts":"2023-08-03T06:00:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:17","latency":"93.038µs"} -{"level":"debug","ts":"2023-08-03T06:00:21.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:22","latency":"88.913µs"} -{"level":"debug","ts":"2023-08-03T06:00:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:22","latency":"109.081µs"} -{"level":"debug","ts":"2023-08-03T06:00:26.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:27","latency":"86.535µs"} -{"level":"debug","ts":"2023-08-03T06:00:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:27","latency":"87.995µs"} -{"level":"debug","ts":"2023-08-03T06:00:31.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:00:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:32","latency":"72.627µs"} -{"level":"debug","ts":"2023-08-03T06:00:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:32","latency":"109.732µs"} -{"level":"debug","ts":"2023-08-03T06:00:36.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:37","latency":"131.31µs"} -{"level":"debug","ts":"2023-08-03T06:00:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:37","latency":"103.871µs"} -{"level":"debug","ts":"2023-08-03T06:00:41.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:42","latency":"100.194µs"} -{"level":"debug","ts":"2023-08-03T06:00:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:42","latency":"99.969µs"} -{"level":"debug","ts":"2023-08-03T06:00:46.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:47","latency":"92.051µs"} -{"level":"debug","ts":"2023-08-03T06:00:47.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:47","latency":"89.188µs"} -{"level":"debug","ts":"2023-08-03T06:00:51.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:52","latency":"99.403µs"} -{"level":"debug","ts":"2023-08-03T06:00:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:52","latency":"85.737µs"} -{"level":"debug","ts":"2023-08-03T06:00:56.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:57","latency":"93.555µs"} -{"level":"debug","ts":"2023-08-03T06:00:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:00:57","latency":"91.783µs"} -{"level":"debug","ts":"2023-08-03T06:01:01.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:02","latency":"80.906µs"} -{"level":"debug","ts":"2023-08-03T06:01:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:02","latency":"99.834µs"} -{"level":"debug","ts":"2023-08-03T06:01:06.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:07","latency":"97.856µs"} -{"level":"debug","ts":"2023-08-03T06:01:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:07","latency":"90.933µs"} -{"level":"debug","ts":"2023-08-03T06:01:11.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:12","latency":"90.26µs"} -{"level":"debug","ts":"2023-08-03T06:01:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:12","latency":"95.471µs"} -{"level":"debug","ts":"2023-08-03T06:01:16.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:17","latency":"96.391µs"} -{"level":"debug","ts":"2023-08-03T06:01:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:17","latency":"80.246µs"} -{"level":"debug","ts":"2023-08-03T06:01:21.798Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:22","latency":"87.974µs"} -{"level":"debug","ts":"2023-08-03T06:01:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:22","latency":"95.056µs"} -{"level":"debug","ts":"2023-08-03T06:01:26.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:27","latency":"97.681µs"} -{"level":"debug","ts":"2023-08-03T06:01:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:27","latency":"79.471µs"} -{"level":"debug","ts":"2023-08-03T06:01:31.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:01:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:32","latency":"87.981µs"} -{"level":"debug","ts":"2023-08-03T06:01:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:32","latency":"107.033µs"} -{"level":"debug","ts":"2023-08-03T06:01:36.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:01:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:37","latency":"94.628µs"} -{"level":"debug","ts":"2023-08-03T06:01:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:37","latency":"80.515µs"} -{"level":"debug","ts":"2023-08-03T06:01:41.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:42","latency":"90.456µs"} -{"level":"debug","ts":"2023-08-03T06:01:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:42","latency":"88.731µs"} -{"level":"debug","ts":"2023-08-03T06:01:46.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:47","latency":"90.69µs"} -{"level":"debug","ts":"2023-08-03T06:01:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:47","latency":"94.844µs"} -{"level":"debug","ts":"2023-08-03T06:01:51.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:01:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:52","latency":"91.429µs"} -{"level":"debug","ts":"2023-08-03T06:01:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:52","latency":"73.759µs"} -{"level":"debug","ts":"2023-08-03T06:01:56.802Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:57","latency":"74.925µs"} -{"level":"debug","ts":"2023-08-03T06:01:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:01:57","latency":"108.071µs"} -{"level":"debug","ts":"2023-08-03T06:02:01.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:02","latency":"97.502µs"} -{"level":"debug","ts":"2023-08-03T06:02:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:02","latency":"83.653µs"} -{"level":"info","ts":"2023-08-03T06:02:06.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:06.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:07","latency":"97.876µs"} -{"level":"debug","ts":"2023-08-03T06:02:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:07","latency":"99.801µs"} -{"level":"debug","ts":"2023-08-03T06:02:11.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:12","latency":"87.409µs"} -{"level":"debug","ts":"2023-08-03T06:02:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:12","latency":"94.883µs"} -{"level":"debug","ts":"2023-08-03T06:02:16.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:17","latency":"99.752µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:17","latency":"98.447µs"} -{"level":"debug","ts":"2023-08-03T06:02:18.767Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:18","latency":"51.391µs"} -{"level":"debug","ts":"2023-08-03T06:02:18.974Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:18","latency":"59.156µs"} -{"level":"debug","ts":"2023-08-03T06:02:21.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:22","latency":"94.72µs"} -{"level":"debug","ts":"2023-08-03T06:02:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:22","latency":"81.806µs"} -{"level":"debug","ts":"2023-08-03T06:02:26.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:27","latency":"99.966µs"} -{"level":"debug","ts":"2023-08-03T06:02:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:27","latency":"94.296µs"} -{"level":"debug","ts":"2023-08-03T06:02:31.807Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:02:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:32","latency":"104.281µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:32","latency":"92.833µs"} -{"level":"debug","ts":"2023-08-03T06:02:36.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:37","latency":"91.529µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:37","latency":"86.423µs"} -{"level":"debug","ts":"2023-08-03T06:02:41.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:42","latency":"102.037µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:42","latency":"98.576µs"} -{"level":"debug","ts":"2023-08-03T06:02:46.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:47","latency":"94.865µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:47","latency":"73.774µs"} -{"level":"debug","ts":"2023-08-03T06:02:51.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:52","latency":"94.834µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:52","latency":"123.129µs"} -{"level":"debug","ts":"2023-08-03T06:02:56.811Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:57","latency":"94.22µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:02:57","latency":"92.191µs"} -{"level":"debug","ts":"2023-08-03T06:02:59.332Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:59","latency":"3.404832ms"} -{"level":"info","ts":"2023-08-03T06:02:59.544Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:02:59.544Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} -{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-03T06:02:59.545Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:02:59.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"info","ts":"2023-08-03T06:02:59.814Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:02:59.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:02:59.815Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","duration":825} -{"level":"info","ts":"2023-08-03T06:02:59.815Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"info","ts":"2023-08-03T06:02:59.815Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:02:59.815Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"f8a21a7320c54d674bc6b7fda695618316cf564c16457f3141d909cb396729b9\\\" \\n\\ntransmitterID = \\\"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:59","latency":"279.137334ms"} -{"level":"debug","ts":"2023-08-03T06:02:59.904Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"info","ts":"2023-08-03T06:02:59.904Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}]} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamName":"ragedisco/v1","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c"} -{"level":"info","ts":"2023-08-03T06:02:59.905Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"found":["12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"],"loaded":["12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"],"numLoaded":1,"id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","numQueried":5,"numFound":1} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":3,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"id":"PeerV2","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"5fecfa2cd7702520f7105cc22f344ff07d9dfab97f5658c355f868e9a56b0457","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":3,"_id":"OCREndpointV2"} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:02:59.909Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:02:59.910Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:02:59.910Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","previousNe":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"ne":1} -{"level":"info","ts":"2023-08-03T06:02:59.910Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":1,"leader":4} -{"level":"debug","ts":"2023-08-03T06:02:59.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.816Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:00.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:01.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:01.887Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.066Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:02","latency":"111.327µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:02","latency":"129.223µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.810Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:02.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.887Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:03.977Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.121Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"warn","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"warn","ts":"2023-08-03T06:03:04.836Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:03:04.838Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","direction":"out","remoteAddr":"10.14.104.202:6690","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"24f440faf55812370b048d3416807235f145834d567c34c4c0a4e38c0fa426cd","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:04.839Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:04.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:04.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.060Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.136Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:05.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.007Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:06.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:06.996Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.086Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:07","latency":"93.961µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:07","latency":"95.886µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","direction":"in","remoteAddr":"10.14.31.21:60118","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"b130a834a1f57c8afdf59f4207a301ee75eacc6b744d4594b053eda7386413fc"} -{"level":"info","ts":"2023-08-03T06:03:07.420Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamName":"ragedisco/v1","streamID":"89097ed6a57cb4af26730da35e0b53be27a7fd2b03e4f0e76aa027ab06e26051","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:08.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.180Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:08.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.095Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.204Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:09.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.159Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.248Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:10.350Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.255Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:11.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","remoteAddr":"10.14.116.75:47536","direction":"in"} -{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"8fc7c9f9938979357f7943f06b07670e5a2f4bec154609886660cbeb050a0d0c","streamName":"ragedisco/v1","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:11.790Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"02178bc0079a601844d249cd0869b6ccc197e177603c377c82a7898b8e76a7f6","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":2,"candidateEpochs":[2,2,2]} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000414455} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000408794} -{"level":"debug","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:146","msg":"logging as debug due to context cancellation: ReportGeneration: ReportingPlugin.Observation errored","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"round":1,"error":"error in Observation: DataSource.Observe returned an error: task inputs: too many errors; JuelsPerFeeCoinDataSource.Observe returned an error: task inputs: too many errors","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":1} -{"level":"info","ts":"2023-08-03T06:03:11.791Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":1,"leader":4,"e":1,"l":4} -{"level":"info","ts":"2023-08-03T06:03:11.792Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:11.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:12","latency":"93.391µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:12","latency":"98.746µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.382Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.574Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.541Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"warn","ts":"2023-08-03T06:03:14.541Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:14.660Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.994Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:03:15.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.499Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.678Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.368Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.814Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:03:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:17","latency":"93.848µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:17","latency":"110.848µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.539Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.527Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.617Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","direction":"in","remoteAddr":"10.14.48.92:59398","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","remotePeerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:18.675Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:18.704Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.617Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.707Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.822Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:21.827Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.006Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:22","latency":"97.609µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:22","latency":"94.579µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.690Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.878Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.056Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.124Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.863Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.953Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.086Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:26.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.036Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:27","latency":"95.379µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:27","latency":"103.119µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.158Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.337Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.102Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.224Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.404Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.065Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.084Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.084Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:03:30.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.331Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.165Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.563Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.792Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":3,"candidateEpochs":[3,3,3]} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":2,"leader":2,"e":2,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:31.796Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.002630471} -{"level":"debug","ts":"2023-08-03T06:03:31.796Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.002683783} -{"level":"debug","ts":"2023-08-03T06:03:31.796Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:31.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:32","latency":"89.289µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:32","latency":"81.063µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.190Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.279Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.600Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.208Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.628Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.333Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.522Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.384Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.769Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deltaCTimeout":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","unfulfilledRequest":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1},"initialRound":true,"alphaReportPPB":0,"deviation":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"reportingPlugin":"NumericalMedian","deltaC":0} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} -{"level":"info","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001016132} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001107907} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":2,"observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4} -{"level":"debug","ts":"2023-08-03T06:03:35.891Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:35.891Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:35.891Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T06:03:35.980Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"} -{"level":"debug","ts":"2023-08-03T06:03:35.981Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4"} -{"level":"debug","ts":"2023-08-03T06:03:36.234Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"} -{"level":"debug","ts":"2023-08-03T06:03:36.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.411Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.603Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.781Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:36.848Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4","signature":"4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"} -{"level":"debug","ts":"2023-08-03T06:03:36.849Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6a210e05-4c97-4e5b-a4b2-2fc9c8c032b4","signatures":["4UMxQ3dj8wGA36vCdU894xiK5EdHxyNjCX3SMZZrCBxPwpguDFQEDk9s8soRFEs6faB2SkVPycxHpL4n4C9QDaHm"]} -{"level":"debug","ts":"2023-08-03T06:03:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:37","latency":"126.133µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:37","latency":"146.662µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.424Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.432Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.900Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.748Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:39.804Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deltaC":0,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","alphaReportInfinite":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportPPB":0,"initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":3,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaAcceptPPB":0,"deviates":true,"result":true,"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000912283} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000959147} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:39.927Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.386Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:41.844Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:42","latency":"82.457µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:42","latency":"100.293µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.420Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.473Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.563Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:43.809Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","alphaReportPPB":0,"deviation":true,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","result":true,"alphaReportInfinite":false,"initialRound":false,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"candidateEpochs":[4,4,4],"newEpoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":3,"leader":4,"e":3,"l":4} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":3,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001051574} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001318386} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:44.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.662Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.015Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.174Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:03:45.194Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.714Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.247Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.668Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.757Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:47.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:47","latency":"85.306µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:47","latency":"97.263µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","unfulfilledRequest":false,"result":true,"initialRound":false,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1,"sender":0} -{"level":"info","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":1,"oid":3} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001058117} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001780668} -{"level":"debug","ts":"2023-08-03T06:03:47.819Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:47.906Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:47.907Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.997Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"bf9de14e-d09e-4449-852d-2a150c3bf648","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"} -{"level":"debug","ts":"2023-08-03T06:03:47.997Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj","id":"bf9de14e-d09e-4449-852d-2a150c3bf648"} -{"level":"debug","ts":"2023-08-03T06:03:48.106Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.285Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.406Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"} -{"level":"debug","ts":"2023-08-03T06:03:48.749Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.008Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"bf9de14e-d09e-4449-852d-2a150c3bf648","signature":"3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"} -{"level":"debug","ts":"2023-08-03T06:03:49.008Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"],"id":"bf9de14e-d09e-4449-852d-2a150c3bf648"} -{"level":"debug","ts":"2023-08-03T06:03:49.008Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"bf9de14e-d09e-4449-852d-2a150c3bf648","signatures":["3D6wWMgpAqHXLvzQyhLQHHqH12hrFLHrC9Wv5MGsMZNZQnGZBnKjHesLpNEXBJi1WKXRGe4imtMsfgptnxzasvSj"]} -{"level":"debug","ts":"2023-08-03T06:03:49.151Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.331Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.830Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.920Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.351Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.892Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.446Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportInfinite":false,"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaCTimeout":true,"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","alphaReportPPB":0,"deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000866974} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001166785} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":4,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} -{"level":"debug","ts":"2023-08-03T06:03:51.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.039Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:52","latency":"91.778µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:52","latency":"90.553µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.969Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.059Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.383Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.562Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.057Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.146Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.413Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.591Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.429Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:55.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"result":true,"deltaC":0,"initialRound":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"leader":0,"epoch":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","roundMax":3,"oid":3,"leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":5,"candidateEpochs":[5,5,5]} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":4,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","l":0,"leader":0,"epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"e":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":4,"Round":2},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":4,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000848194} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000973817} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":1,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:56.203Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.437Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:03:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:57","latency":"83.318µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:03:57","latency":"124.41µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.225Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.315Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.305Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.732Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.623Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"alphaReportPPB":0,"deltaCTimeout":true,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaC":0,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z"} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":4,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"round":1,"sender":4,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000930834} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000953547} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:00.265Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:04:00.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.487Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.694Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.873Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.467Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.557Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:04:01.881Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:02","latency":"89.93µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:02","latency":"95.53µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.925Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.574Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","initialRound":false,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":4,"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000976621} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001082016} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:03.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.704Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.999Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.653Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.742Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.707Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.797Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:06.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:07","latency":"89.847µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:07","latency":"94.487µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.146Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.791Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deltaC":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"deviation":true,"alphaReportPPB":0,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"unfulfilledRequest":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"leader":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","roundMax":3,"epoch":5,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"sender":4,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":5,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":2},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"candidateEpochs":[6,6,6],"newEpoch":6} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":3,"sender":1} -{"level":"info","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":4,"e":5,"l":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5} -{"level":"info","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000859452} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.00099773} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:07.881Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.013Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.893Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.883Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.973Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.268Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.918Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.008Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.107Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.285Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-03T06:04:11.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"alphaReportPPB":0,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","result":true} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":1,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":6,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001168815} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001532248} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:11.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.068Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.138Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:12","latency":"99.229µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:12","latency":"93.364µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.317Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.120Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.122Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.212Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.355Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:04:15.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:15.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2},"deviation":true,"alphaReportPPB":0,"unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","contractEpochRound":{"Epoch":6,"Round":1},"reportEpochRound":{"Epoch":6,"Round":2},"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2,"sender":4,"epoch":6} -{"level":"info","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"round":2,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000926663} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001023227} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:15.942Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:15.942Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":6,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:16.031Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"} -{"level":"debug","ts":"2023-08-03T06:04:16.032Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22"} -{"level":"debug","ts":"2023-08-03T06:04:16.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.333Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.523Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"} -{"level":"debug","ts":"2023-08-03T06:04:16.822Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:17","latency":"72.431µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:17","latency":"114.017µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.153Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22","signature":"5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"} -{"level":"debug","ts":"2023-08-03T06:04:17.153Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91cc4a71-f7d3-455b-8b65-694aab3c5d22","signatures":["5LdVZb5p9Xy3D6oYW5QaC1ZmowHW5GHh6jzhygyGZsH9QsLNrzEsa9RSkA2kMEWuJgfVxHUVD2BUegy9XdGoy2uX"]} -{"level":"debug","ts":"2023-08-03T06:04:17.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.568Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.607Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.336Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.610Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:19.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"alphaReportPPB":0,"deltaCTimeout":true,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z","unfulfilledRequest":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"result":true} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":3,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","messageRound":4,"roundMax":3,"round":4,"oid":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":1,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","e":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"leader":0,"l":0} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":0,"epoch":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"sender":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000927078} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001027871} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:20.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.384Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.350Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.719Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.823Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:22","latency":"94.931µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:22","latency":"91.448µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.548Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.726Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.484Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:23.862Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","unfulfilledRequest":false,"deviation":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"alphaReportInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"initialRound":false,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":6,"Round":3},"contractEpochRound":{"Epoch":6,"Round":3},"reportEpochRound":{"Epoch":7,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1,"sender":1,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000895932} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001007722} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:24.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.498Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.713Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.891Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.558Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.824Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:26.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:27","latency":"89.942µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:27","latency":"99.183µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","unfulfilledRequest":false,"result":true,"alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"deviation":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":7,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":4,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","deviates":true,"reportEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":7,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":7,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000976463} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000997582} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"leader":0,"round":3,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:27.974Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.619Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.709Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.872Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.051Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.693Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.783Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.807Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":3,"Round":2}} -{"level":"info","ts":"2023-08-03T06:04:29.807Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:29.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.445Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:04:30.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.864Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.121Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.778Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.825Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:31.868Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:31.871Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","initialRound":false,"deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":7,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}},"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":7,"round":3,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":7,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":7,"round":3,"sender":4} -{"level":"info","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","l":0,"e":7,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":7} -{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":2,"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":8} -{"level":"debug","ts":"2023-08-03T06:04:31.971Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:32","latency":"77.553µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:32","latency":"93.412µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.842Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.932Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.889Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.248Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.903Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.993Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.213Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.392Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:36.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.049Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:37","latency":"88.825µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:37","latency":"92.87µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.252Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.455Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.146Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.307Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.538Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.595Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:42","latency":"90.532µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:42","latency":"102.535µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.215Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.305Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.464Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.643Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.301Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.391Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.324Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.414Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.420Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.524Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.535Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:04:45.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.827Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:04:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:47","latency":"84.516µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:47","latency":"86.887µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.579Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.555Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.645Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.633Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.805Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.817Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:51.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.852Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","e":8,"l":2,"oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":8,"leader":2} -{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000943422} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000956314} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":1,"sender":3,"msgEpoch":9,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","msgRound":1,"oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":1,"msgEpoch":9} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":1,"sender":4,"msgEpoch":9,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"observationCount":3,"requiredObservationCount":3,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1} -{"level":"debug","ts":"2023-08-03T06:04:51.877Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","msgRound":1,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1,"sender":0,"msgEpoch":9} -{"level":"debug","ts":"2023-08-03T06:04:51.877Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:52","latency":"91.949µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:52","latency":"92.185µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.910Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.940Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.793Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.971Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.875Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:55.877Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","initialRound":false,"result":true,"alphaReportInfinite":false,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"unfulfilledRequest":false,"deltaCTimeout":true,"deltaC":0} -{"level":"debug","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","latestAcceptedEpochRound":{"Epoch":7,"Round":3},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001000529} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000991899} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":2,"msgRound":1,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"sender":1,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"round":2,"sender":3,"msgEpoch":9,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2,"observationCount":1,"requiredObservationCount":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":1,"msgEpoch":9,"msgRound":2,"oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":2,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"msgRound":2,"round":2,"sender":4,"msgEpoch":9,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"round":2,"observationCount":3,"requiredObservationCount":3,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:55.882Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":0,"msgEpoch":9,"msgRound":2,"oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:04:55.882Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:55.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.964Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.066Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:04:56.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.103Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:57","latency":"89.521µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:04:57","latency":"76.704µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.972Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.160Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:59.882Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportPPB":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","result":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","result":true,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":9,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"info","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.001009337} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001003094} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":1,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":3,"sender":3,"msgEpoch":9,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"requiredObservationCount":3,"round":3,"observationCount":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":3,"sender":1,"msgEpoch":9,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"requiredObservationCount":3,"round":3,"observationCount":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"sender":4,"msgEpoch":9,"msgRound":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} -{"level":"debug","ts":"2023-08-03T06:04:59.887Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"msgRound":3,"round":3,"sender":0,"msgEpoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:59.887Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-03T06:04:59.973Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:59.973Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"round":2,"epoch":9,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:00.052Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.063Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:00.063Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8"} -{"level":"debug","ts":"2023-08-03T06:05:00.145Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.565Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:00.626Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:05:01.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.194Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:01.211Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.270Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.301Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.823Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:01.829Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:02","latency":"93.217µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:02","latency":"87.387µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.143Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.240Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.322Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.414Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:03.043Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:03.158Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.164Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","fee":1,"signatures":["5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj","STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"]} -{"level":"debug","ts":"2023-08-03T06:05:03.328Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.337Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.674Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"} -{"level":"debug","ts":"2023-08-03T06:05:03.674Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"info","ts":"2023-08-03T06:05:03.887Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"leader":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":3,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","sender":3,"epoch":9,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","reportingPlugin":"NumericalMedian","result":true,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"msgRound":3,"round":4} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"e":9,"l":3,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":9,"round":3,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.978Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:03.978Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:04.068Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"7a048856-1133-4764-87aa-6cc468db012e","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"} -{"level":"debug","ts":"2023-08-03T06:05:04.068Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R","id":"7a048856-1133-4764-87aa-6cc468db012e"} -{"level":"debug","ts":"2023-08-03T06:05:04.229Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","signature":"STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"} -{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj"} -{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"} -{"level":"debug","ts":"2023-08-03T06:05:04.282Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"78b9cd73-13d7-4c48-85ea-339de759dcd8","signatures":["5Aet2PtLYyLN1oUeG6HHWq9zNgKHSp17qXckgGQbSQLbPHwc5oVEDTQJ9Tq8bjvQHC22kyvCLQE24H9V2F68zxyj","STTtRVeiwJ2YPvyGUH14irxnFKqaiFoSFdqyrszBgYTaHEodBFCy7u5qg23rZHZidncFJWkwbzAhFnsKmV4qgdv"]} -{"level":"debug","ts":"2023-08-03T06:05:04.368Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.882Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"7a048856-1133-4764-87aa-6cc468db012e","signature":"3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"} -{"level":"debug","ts":"2023-08-03T06:05:04.882Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"],"id":"7a048856-1133-4764-87aa-6cc468db012e"} -{"level":"debug","ts":"2023-08-03T06:05:04.882Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"7a048856-1133-4764-87aa-6cc468db012e","signatures":["3mSV33wbp5HdLX5cWq2gQ1odRB53z6AzLCzA5xHe17K8ycRHV5fTPnhSMQw9sd9Pch6aNmx6gNuC9BGGeFHhGh3R"]} -{"level":"debug","ts":"2023-08-03T06:05:05.309Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.587Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.830Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:07","latency":"105.166µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:07","latency":"102.458µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.607Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.591Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.628Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.681Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.483Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.662Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.533Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.712Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.715Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.805Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.750Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.831Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:05:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:12","latency":"98.495µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:12","latency":"105.484µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.765Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.776Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.800Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.892Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.936Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.716Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:05:15.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.947Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.997Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.832Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:05:16.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.981Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:17","latency":"93.618µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:17","latency":"86.923µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.799Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.993Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.817Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.996Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.148Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.900Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.211Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.912Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.151Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.833Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:21.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.098Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:22","latency":"97.683µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:22","latency":"78.241µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.240Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.977Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.156Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.244Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.811Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-03T06:05:23.811Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","newEpoch":11,"candidateEpochs":[11,11,11],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","e":10,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":10,"leader":2} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":11} -{"level":"debug","ts":"2023-08-03T06:05:24.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.251Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.148Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.442Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.531Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.834Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"debug","ts":"2023-08-03T06:05:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:27","latency":"91.592µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.139Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:27","latency":"101.92µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.226Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.405Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.294Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.371Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.551Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.650Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.438Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.617Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.806Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:05:31.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.834Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:32","latency":"89.486µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:32","latency":"85.429µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.740Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.663Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.842Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.712Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.064Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.835Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:36.936Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.021Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:37","latency":"99.582µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:37","latency":"106.161µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.107Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.197Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.273Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.128Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.340Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.254Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.837Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:41.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:42","latency":"114.601µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:42","latency":"113.484µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.166Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.012Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.191Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.356Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.446Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"newEpoch":12,"candidateEpochs":[12,12,12],"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"epoch":11,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","e":11,"l":2} -{"level":"info","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000928784} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.001336829} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:44.070Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.398Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.149Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.407Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.896Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio"} -{"level":"debug","ts":"2023-08-03T06:05:46.170Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.465Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.555Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.837Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:47","latency":"91.165µs"} -{"level":"debug","ts":"2023-08-03T06:05:47.138Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.86.187","errors":"","servedAt":"2023-08-03 06:05:47","latency":"93.491µs"} -{"level":"debug","ts":"2023-08-03T06:05:47.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.562Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.652Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:47.896Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","alphaReportInfinite":false,"deviation":true,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":1},"initialRound":false,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"reportingPlugin":"NumericalMedian","result":true} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","leader":0,"epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":12,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","oid":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":12,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"event":{"Epoch":12,"Round":1,"H":[167,39,199,18,183,107,6,93,111,62,215,255,184,87,18,232,246,121,81,174,216,105,228,243,196,104,139,45,159,91,177,72],"AttestedReport":{"Report":"ZMtDtwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9gNLwPP+ClJhTX7NsKPOXorBFzgqd+2UlX9TJ8weNIs/PxblhJJ+xO1xAx4Wh27fNI+gwPqWH09ELWRPasWQawA=","Signer":0},{"Signature":"q/mraM9mGz5/5b0Kdq5D6FKlq3RizaRnnnv+DBHJ8oteh4RbWB6srbexYGWf+qQxpa/Z5cVgSaUw82wmAPkaPAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":12,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f"} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":12,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:05:47.898Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"epoch":12,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","specID":1,"runTime":0.000877177} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","jobID":0,"jobName":"","specID":1,"runTime":0.000900879} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-9ab86d12-2cd0-4a33-9961-eafec3ab873f","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"EEqeZTnRR49s2voZ3eCR8yL5j8EpN6KwwrpFgfD5EMio","observation":"CLuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":3,"leader":0,"epoch":12,"round":2} -{"level":"debug","ts":"2023-08-03T06:05:48.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.376Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.740Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.295Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.474Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.655Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.369Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.548Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.684Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.459Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log deleted file mode 100644 index b96ab9087..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-03 05:56:40.052 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.138 UTC [49] LOG: database system was shut down at 2023-08-03 05:56:39 UTC -2023-08-03 05:56:40.142 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-03 05:56:40.756 UTC [48] LOG: received fast shutdown request -.2023-08-03 05:56:40.758 UTC [48] LOG: aborting any active transactions -2023-08-03 05:56:40.835 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 05:56:40.836 UTC [50] LOG: shutting down -2023-08-03 05:56:40.852 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 05:56:40.866 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 05:56:40.866 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 05:56:40.868 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 05:56:40.975 UTC [85] LOG: database system was shut down at 2023-08-03 05:56:40 UTC -2023-08-03 05:56:40.996 UTC [1] LOG: database system is ready to accept connections -2023-08-03 05:56:42.753 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 05:56:43.750 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 05:56:43.750 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 05:56:43.750 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 05:56:43.750 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 05:56:43.751 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 05:56:43.751 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log deleted file mode 100644 index 6dbb419b4..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/chainlink-0_4/node.log +++ /dev/null @@ -1,1810 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:43.737Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-03T05:56:43.742Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.742Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:43.742Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"51433d7b-44c7-46fb-a787-7f0f23f2f16f"} -{"level":"debug","ts":"2023-08-03T05:56:43.748Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"51433d7b-44c7-46fb-a787-7f0f23f2f16f"} -{"level":"debug","ts":"2023-08-03T05:56:43.750Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/03 05:56:44 OK 0001_initial.sql -2023/08/03 05:56:44 OK 0002_gormv2.sql -2023/08/03 05:56:44 OK 0003_eth_logs_table.sql -2023/08/03 05:56:44 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 05:56:44 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 05:56:44 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 05:56:44 OK 0007_reverse_eth_logs_table.sql -2023/08/03 05:56:44 OK 0008_reapply_eth_logs_table.sql -2023/08/03 05:56:44 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 05:56:44 OK 0010_bridge_fk.sql -2023/08/03 05:56:44 OK 0011_latest_round_requested.sql -2023/08/03 05:56:44 OK 0012_change_jobs_to_numeric.sql -2023/08/03 05:56:44 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 05:56:44 OK 0014_add_keeper_tables.sql -2023/08/03 05:56:44 OK 0015_simplify_log_broadcaster.sql -2023/08/03 05:56:44 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 05:56:44 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 05:56:44 OK 0018_add_node_version_table.sql -2023/08/03 05:56:44 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 05:56:44 OK 0020_remove_result_task.sql -2023/08/03 05:56:44 OK 0021_add_job_id_topic_filter.sql -2023/08/03 05:56:44 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 05:56:44 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 05:56:44 OK 0024_add_cron_spec_tables.sql -2023/08/03 05:56:44 OK 0025_create_log_config_table.sql -2023/08/03 05:56:44 OK 0026_eth_tx_meta.sql -2023/08/03 05:56:44 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 05:56:44 OK 0028_vrf_v2.sql -2023/08/03 05:56:44 OK 0029_add_webhook_spec_tables.sql -2023/08/03 05:56:44 OK 0030_drop_keys_last_used.sql -2023/08/03 05:56:44 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 05:56:44 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 05:56:44 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 05:56:44 OK 0034_webhook_external_initiator.sql -2023/08/03 05:56:44 OK 0035_create_feeds_managers.sql -2023/08/03 05:56:44 OK 0036_external_job_id.go -2023/08/03 05:56:44 OK 0037_cascade_deletes.sql -2023/08/03 05:56:44 OK 0038_create_csa_keys.sql -2023/08/03 05:56:44 OK 0039_remove_fmv2_precision.sql -2023/08/03 05:56:44 OK 0040_heads_l1_block_number.sql -2023/08/03 05:56:44 OK 0041_eth_tx_strategies.sql -2023/08/03 05:56:44 OK 0042_create_job_proposals.sql -2023/08/03 05:56:44 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 05:56:44 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 05:56:44 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 05:56:44 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 05:56:44 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 05:56:44 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 05:56:44 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 05:56:44 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 05:56:44 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 05:56:44 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 05:56:44 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 05:56:44 OK 0054_remove_legacy_pipeline.go -2023/08/03 05:56:44 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 05:56:44 OK 0056_multichain.go -2023/08/03 05:56:44 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 05:56:44 OK 0058_direct_request_whitelist.sql -2023/08/03 05:56:44 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 05:56:44 OK 0060_combine_keys_tables.sql -2023/08/03 05:56:44 OK 0061_multichain_relations.sql -2023/08/03 05:56:44 OK 0062_upgrade_keepers.sql -2023/08/03 05:56:44 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 05:56:44 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 05:56:44 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 05:56:44 OK 0066_update_job_proposal_status.sql -2023/08/03 05:56:44 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 05:56:44 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 05:56:44 OK 0069_remove_unused_columns.sql -2023/08/03 05:56:44 OK 0070_dynamic_fee_txes.sql -2023/08/03 05:56:44 OK 0071_allow_null_json_serializable.sql -2023/08/03 05:56:44 OK 0072_drop_unused_tables.sql -2023/08/03 05:56:44 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 05:56:44 OK 0074_simulation_eth_tx.sql -2023/08/03 05:56:44 OK 0075_unique_job_names.sql -2023/08/03 05:56:44 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 05:56:44 OK 0077_add_webauthn_table.sql -2023/08/03 05:56:44 OK 0078_only_one_version.sql -2023/08/03 05:56:44 OK 0079_vrf_v2_fields.sql -2023/08/03 05:56:44 OK 0080_drop_unused_cols.sql -2023/08/03 05:56:44 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 05:56:44 OK 0082_lease_lock.sql -2023/08/03 05:56:44 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 05:56:44 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 05:56:44 OK 0085_requested_confs_delay.sql -2023/08/03 05:56:44 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 05:56:44 OK 0087_ocr2_tables.sql -2023/08/03 05:56:44 OK 0088_vrfv2_request_timeout.sql -2023/08/03 05:56:44 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 05:56:44 OK 0090_ocr_new_timeouts.sql -2023/08/03 05:56:44 OK 0091_ocr2_relay.sql -2023/08/03 05:56:44 OK 0092_bptxm_tx_checkers.sql -2023/08/03 05:56:44 OK 0093_terra_txm.sql -2023/08/03 05:56:44 OK 0094_blockhash_store_job.sql -2023/08/03 05:56:44 OK 0095_terra_fcd.sql -2023/08/03 05:56:44 OK 0096_create_job_proposal_specs.sql -2023/08/03 05:56:45 OK 0097_bootstrap_spec.sql -2023/08/03 05:56:45 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 05:56:45 OK 0099_terra_msgs_created_at.sql -2023/08/03 05:56:45 OK 0100_bootstrap_config.sql -2023/08/03 05:56:45 OK 0101_generic_ocr2.sql -2023/08/03 05:56:45 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 05:56:45 OK 0103_terra_msgs_type_url.sql -2023/08/03 05:56:45 OK 0104_terra_cascade_delete.sql -2023/08/03 05:56:45 OK 0105_create_forwarder_addresses.sql -2023/08/03 05:56:45 OK 0106_evm_node_uniqueness.sql -2023/08/03 05:56:45 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 05:56:45 OK 0109_solana_chains_nodes.sql -2023/08/03 05:56:45 OK 0110_add_vrf_chunk_size.sql -2023/08/03 05:56:45 OK 0111_terra_msgs_state_started.sql -2023/08/03 05:56:45 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 05:56:45 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 05:56:45 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 05:56:45 OK 0115_log_poller.sql -2023/08/03 05:56:45 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 05:56:45 OK 0117_add_log_poller_idx.sql -2023/08/03 05:56:45 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 05:56:45 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 05:56:45 OK 0120_log_poller_data_idx.sql -2023/08/03 05:56:45 OK 0121_remove_log_configs.sql -2023/08/03 05:56:45 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 05:56:45 OK 0123_terra_idx_simplify.sql -2023/08/03 05:56:45 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 05:56:45 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 05:56:45 OK 0126_remove_observation_source.sql -2023/08/03 05:56:45 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 05:56:45 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0129_add_job_gas_limit.sql -2023/08/03 05:56:45 OK 0130_starknet_chains_nodes.sql -2023/08/03 05:56:45 OK 0131_add_multi_user.sql -2023/08/03 05:56:45 OK 0132_log_index_uniqueness.sql -2023/08/03 05:56:45 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 05:56:45 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 05:56:45 OK 0135_tx_index_not_null.sql -2023/08/03 05:56:45 OK 0136_add_job_allow_forwarding.sql -2023/08/03 05:56:45 OK 0137_remove_tx_index.sql -2023/08/03 05:56:45 OK 0138_rename_allowforwarding_field.sql -2023/08/03 05:56:45 OK 0139_multi_chain_keys.sql -2023/08/03 05:56:45 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 05:56:45 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 05:56:45 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 05:56:45 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 05:56:45 OK 0144_optimize_lp.sql -2023/08/03 05:56:45 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 05:56:45 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 05:56:45 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 05:56:45 OK 0148_dkg_shares.sql -2023/08/03 05:56:45 OK 0149_bridge_last_good_value.sql -2023/08/03 05:56:45 OK 0150_gaslaneprice_vrf.sql -2023/08/03 05:56:45 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 05:56:45 OK 0152_ocr2_multichain.sql -2023/08/03 05:56:45 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 05:56:45 OK 0154_ocr2dr_requests_table.sql -2023/08/03 05:56:45 OK 0155_remove_terra.sql -2023/08/03 05:56:45 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 05:56:45 OK 0157_add_log_poller_filters_table.sql -2023/08/03 05:56:45 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 05:56:45 OK 0159_add_name_to_job_proposals.sql -2023/08/03 05:56:45 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 05:56:45 OK 0161_update_job_proposal_status.sql -2023/08/03 05:56:45 OK 0162_logpoller_block_timestamps.sql -2023/08/03 05:56:45 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 05:56:45 OK 0164_add_cosmos.sql -2023/08/03 05:56:45 OK 0165_update_job_proposal_constraints.sql -2023/08/03 05:56:45 OK 0166_block_header_feeder_job.sql -2023/08/03 05:56:45 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 05:56:45 OK 0168_drop_node_tables.sql -2023/08/03 05:56:45 OK 0169_log_poller_pruning.sql -2023/08/03 05:56:45 OK 0170_gateway_job_spec.sql -2023/08/03 05:56:45 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 05:56:45 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 05:56:45 OK 0173_add_s4_functions_table.sql -2023/08/03 05:56:45 OK 0174_vrf_owner.sql -2023/08/03 05:56:45 OK 0175_logpoller_querying_improvements.sql -2023/08/03 05:56:45 OK 0176_s4_shared_table.sql -2023/08/03 05:56:45 OK 0177_add_ocr_protocol_state.sql -2023/08/03 05:56:45 OK 0178_drop_access_list.sql -2023/08/03 05:56:45 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 05:56:45 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 05:56:45 OK 0181_bhs_vrfv2plus.sql -2023/08/03 05:56:45 OK 0182_nullable_feed_id.sql -2023/08/03 05:56:45 OK 0183_functions_new_fields.sql -2023/08/03 05:56:45 OK 0184_chains_tables_removal.sql -2023/08/03 05:56:45 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 05:56:45 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:45.567Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.838Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 1aab790e4df334d788a17d461a157bcde96a26fa2327feaa54fdfa8fe6821133 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:49.838Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:52.068Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 5QjKaKykKQv9vS54ALx25hKkevy5nfcRrJPDPtjogHyW","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:54.154Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID aa5def3463f99082ca487b9b87578e2a5538921463904c3e6bbf2be3a39f92db","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.459Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.655Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.656Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T05:56:56.656Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T05:56:56.656Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T05:56:56.656Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T05:56:56.656Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:56.656Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-03T05:56:56.657Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 34225. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":34225} -{"level":"debug","ts":"2023-08-03T05:56:56.657Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":34225,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"debug","ts":"2023-08-03T05:56:56.658Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.658Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","v1listenPort":34225,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/34225"} -{"level":"info","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM Counter:0 Addrs:[10.14.48.92:6690 127.0.0.1:6690] Sig:tb+3Hos6uuBV1M+ooRwdYVMtVO89x/xTbNsuIcAhVWrSyvvOXAg5vTwqoMeDqYz3B0UQSTrUBkoIbIedEUQzBA==}","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement"} -{"level":"info","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"PeerV2"} -{"level":"debug","ts":"2023-08-03T05:56:56.659Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"saveLoop"} -{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:56:56.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:56:56.661Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T05:56:56.661Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T05:56:56.661Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.89s","version":"2.4.0@d0c54ea","appID":"51433d7b-44c7-46fb-a787-7f0f23f2f16f"} -{"level":"debug","ts":"2023-08-03T05:56:56.662Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.00071116} -{"level":"info","ts":"2023-08-03T05:56:56.669Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T05:56:56.673Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011027512} -{"level":"debug","ts":"2023-08-03T05:56:56.673Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:56:57.202Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:56:57","latency":"2.004541ms"} -{"level":"debug","ts":"2023-08-03T05:56:57.203Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:56:57","latency":"230.428µs"} -{"level":"debug","ts":"2023-08-03T05:57:01.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:01.664Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T05:57:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:02","latency":"108.139µs"} -{"level":"debug","ts":"2023-08-03T05:57:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:02","latency":"104.145µs"} -{"level":"info","ts":"2023-08-03T05:57:06.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:06.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:07","latency":"109.218µs"} -{"level":"debug","ts":"2023-08-03T05:57:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:07","latency":"119.781µs"} -{"level":"debug","ts":"2023-08-03T05:57:11.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:12","latency":"91.941µs"} -{"level":"debug","ts":"2023-08-03T05:57:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:12","latency":"99.599µs"} -{"level":"debug","ts":"2023-08-03T05:57:16.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:17","latency":"82.161µs"} -{"level":"debug","ts":"2023-08-03T05:57:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:17","latency":"116.489µs"} -{"level":"debug","ts":"2023-08-03T05:57:21.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:22","latency":"99.948µs"} -{"level":"debug","ts":"2023-08-03T05:57:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:22","latency":"100.038µs"} -{"level":"debug","ts":"2023-08-03T05:57:26.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:27","latency":"92.151µs"} -{"level":"debug","ts":"2023-08-03T05:57:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:27","latency":"99.054µs"} -{"level":"debug","ts":"2023-08-03T05:57:31.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:32","latency":"106.575µs"} -{"level":"debug","ts":"2023-08-03T05:57:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:32","latency":"75.239µs"} -{"level":"debug","ts":"2023-08-03T05:57:36.169Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T05:57:36.170Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T05:57:36.260Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T05:57:36.262Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:36","latency":"93.033433ms"} -{"level":"debug","ts":"2023-08-03T05:57:36.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:57:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:37","latency":"94.156µs"} -{"level":"debug","ts":"2023-08-03T05:57:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:37","latency":"101.735µs"} -{"level":"debug","ts":"2023-08-03T05:57:41.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:42","latency":"92.264µs"} -{"level":"debug","ts":"2023-08-03T05:57:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:42","latency":"77.853µs"} -{"level":"debug","ts":"2023-08-03T05:57:46.665Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:57:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:47","latency":"122.524µs"} -{"level":"debug","ts":"2023-08-03T05:57:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:47","latency":"79.187µs"} -{"level":"debug","ts":"2023-08-03T05:57:51.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:57:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:52","latency":"113.306µs"} -{"level":"debug","ts":"2023-08-03T05:57:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:52","latency":"119.933µs"} -{"level":"debug","ts":"2023-08-03T05:57:55.344Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:55","latency":"2.223651ms"} -{"level":"debug","ts":"2023-08-03T05:57:56.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:57:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:57","latency":"102.335µs"} -{"level":"debug","ts":"2023-08-03T05:57:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:57:57","latency":"100.783µs"} -{"level":"debug","ts":"2023-08-03T05:57:57.556Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:57","latency":"2.007769941s"} -{"level":"debug","ts":"2023-08-03T05:57:59.957Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:57:59","latency":"2.198226451s"} -{"level":"debug","ts":"2023-08-03T05:58:01.667Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:01.878Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:01","latency":"70.695µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.081Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 05:58:02","latency":"44.378µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:02","latency":"79.954µs"} -{"level":"debug","ts":"2023-08-03T05:58:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:02","latency":"102.347µs"} -{"level":"debug","ts":"2023-08-03T05:58:06.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:07","latency":"90.44µs"} -{"level":"debug","ts":"2023-08-03T05:58:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:07","latency":"100.165µs"} -{"level":"debug","ts":"2023-08-03T05:58:11.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:12","latency":"95.808µs"} -{"level":"debug","ts":"2023-08-03T05:58:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:12","latency":"93.034µs"} -{"level":"debug","ts":"2023-08-03T05:58:16.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:17","latency":"98.662µs"} -{"level":"debug","ts":"2023-08-03T05:58:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:17","latency":"79.379µs"} -{"level":"debug","ts":"2023-08-03T05:58:21.670Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:58:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:22","latency":"93.096µs"} -{"level":"debug","ts":"2023-08-03T05:58:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:22","latency":"89.132µs"} -{"level":"debug","ts":"2023-08-03T05:58:26.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:27","latency":"92.357µs"} -{"level":"debug","ts":"2023-08-03T05:58:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:27","latency":"91.86µs"} -{"level":"debug","ts":"2023-08-03T05:58:31.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:58:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:32","latency":"104.682µs"} -{"level":"debug","ts":"2023-08-03T05:58:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:32","latency":"91.49µs"} -{"level":"debug","ts":"2023-08-03T05:58:36.672Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:58:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:37","latency":"77.442µs"} -{"level":"debug","ts":"2023-08-03T05:58:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:37","latency":"92.597µs"} -{"level":"debug","ts":"2023-08-03T05:58:41.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:58:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:42","latency":"93.261µs"} -{"level":"debug","ts":"2023-08-03T05:58:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:42","latency":"72.318µs"} -{"level":"debug","ts":"2023-08-03T05:58:46.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:58:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:47","latency":"86.592µs"} -{"level":"debug","ts":"2023-08-03T05:58:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:47","latency":"94.806µs"} -{"level":"debug","ts":"2023-08-03T05:58:51.674Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:58:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:52","latency":"93.978µs"} -{"level":"debug","ts":"2023-08-03T05:58:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:52","latency":"89.617µs"} -{"level":"debug","ts":"2023-08-03T05:58:56.675Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:58:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:57","latency":"111.54µs"} -{"level":"debug","ts":"2023-08-03T05:58:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:58:57","latency":"90.347µs"} -{"level":"debug","ts":"2023-08-03T05:59:01.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:02","latency":"95.789µs"} -{"level":"debug","ts":"2023-08-03T05:59:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:02","latency":"113.673µs"} -{"level":"debug","ts":"2023-08-03T05:59:06.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:07","latency":"100.881µs"} -{"level":"debug","ts":"2023-08-03T05:59:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:07","latency":"107.028µs"} -{"level":"debug","ts":"2023-08-03T05:59:11.678Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T05:59:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:12","latency":"92.633µs"} -{"level":"debug","ts":"2023-08-03T05:59:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:12","latency":"102.25µs"} -{"level":"debug","ts":"2023-08-03T05:59:16.678Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:59:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:17","latency":"110.699µs"} -{"level":"debug","ts":"2023-08-03T05:59:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:17","latency":"110.28µs"} -{"level":"debug","ts":"2023-08-03T05:59:21.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:22","latency":"93.723µs"} -{"level":"debug","ts":"2023-08-03T05:59:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:22","latency":"94.319µs"} -{"level":"debug","ts":"2023-08-03T05:59:26.680Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:59:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:27","latency":"107.471µs"} -{"level":"debug","ts":"2023-08-03T05:59:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:27","latency":"76.506µs"} -{"level":"debug","ts":"2023-08-03T05:59:31.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:32","latency":"76.519µs"} -{"level":"debug","ts":"2023-08-03T05:59:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:32","latency":"119.758µs"} -{"level":"debug","ts":"2023-08-03T05:59:36.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:37","latency":"89.951µs"} -{"level":"debug","ts":"2023-08-03T05:59:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:37","latency":"108.314µs"} -{"level":"debug","ts":"2023-08-03T05:59:41.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:59:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:42","latency":"93.691µs"} -{"level":"debug","ts":"2023-08-03T05:59:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:42","latency":"95.728µs"} -{"level":"debug","ts":"2023-08-03T05:59:46.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T05:59:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:47","latency":"100.401µs"} -{"level":"debug","ts":"2023-08-03T05:59:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:47","latency":"74.605µs"} -{"level":"debug","ts":"2023-08-03T05:59:51.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T05:59:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:52","latency":"101.39µs"} -{"level":"debug","ts":"2023-08-03T05:59:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:52","latency":"111.343µs"} -{"level":"debug","ts":"2023-08-03T05:59:56.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T05:59:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:57","latency":"87.733µs"} -{"level":"debug","ts":"2023-08-03T05:59:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 05:59:57","latency":"89.257µs"} -{"level":"debug","ts":"2023-08-03T06:00:01.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:02","latency":"103.463µs"} -{"level":"debug","ts":"2023-08-03T06:00:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:02","latency":"155.541µs"} -{"level":"debug","ts":"2023-08-03T06:00:06.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:07","latency":"88.581µs"} -{"level":"debug","ts":"2023-08-03T06:00:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:07","latency":"89.587µs"} -{"level":"debug","ts":"2023-08-03T06:00:11.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:00:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:12","latency":"96.943µs"} -{"level":"debug","ts":"2023-08-03T06:00:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:12","latency":"80.59µs"} -{"level":"debug","ts":"2023-08-03T06:00:16.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:00:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:17","latency":"103.763µs"} -{"level":"debug","ts":"2023-08-03T06:00:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:17","latency":"100.267µs"} -{"level":"debug","ts":"2023-08-03T06:00:21.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:00:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:22","latency":"100.694µs"} -{"level":"debug","ts":"2023-08-03T06:00:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:22","latency":"104.244µs"} -{"level":"debug","ts":"2023-08-03T06:00:26.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:27","latency":"92.827µs"} -{"level":"debug","ts":"2023-08-03T06:00:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:27","latency":"89.338µs"} -{"level":"debug","ts":"2023-08-03T06:00:31.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:00:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:32","latency":"89.331µs"} -{"level":"debug","ts":"2023-08-03T06:00:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:32","latency":"97.5µs"} -{"level":"debug","ts":"2023-08-03T06:00:36.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:00:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:37","latency":"93.991µs"} -{"level":"debug","ts":"2023-08-03T06:00:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:37","latency":"91.491µs"} -{"level":"debug","ts":"2023-08-03T06:00:41.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:00:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:42","latency":"97.414µs"} -{"level":"debug","ts":"2023-08-03T06:00:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:42","latency":"92.684µs"} -{"level":"debug","ts":"2023-08-03T06:00:46.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:00:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:47","latency":"95.57µs"} -{"level":"debug","ts":"2023-08-03T06:00:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:47","latency":"118.366µs"} -{"level":"debug","ts":"2023-08-03T06:00:51.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:00:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:52","latency":"93.645µs"} -{"level":"debug","ts":"2023-08-03T06:00:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:52","latency":"100.005µs"} -{"level":"debug","ts":"2023-08-03T06:00:56.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:00:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:57","latency":"114.654µs"} -{"level":"debug","ts":"2023-08-03T06:00:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:00:57","latency":"158.472µs"} -{"level":"debug","ts":"2023-08-03T06:01:01.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:02","latency":"91.368µs"} -{"level":"debug","ts":"2023-08-03T06:01:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:02","latency":"85.789µs"} -{"level":"debug","ts":"2023-08-03T06:01:06.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:07","latency":"109.272µs"} -{"level":"debug","ts":"2023-08-03T06:01:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:07","latency":"81.069µs"} -{"level":"debug","ts":"2023-08-03T06:01:11.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:01:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:12","latency":"102.075µs"} -{"level":"debug","ts":"2023-08-03T06:01:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:12","latency":"106.616µs"} -{"level":"debug","ts":"2023-08-03T06:01:16.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:17","latency":"91.648µs"} -{"level":"debug","ts":"2023-08-03T06:01:17.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:17","latency":"100.953µs"} -{"level":"debug","ts":"2023-08-03T06:01:21.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:22","latency":"82.921µs"} -{"level":"debug","ts":"2023-08-03T06:01:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:22","latency":"103.245µs"} -{"level":"debug","ts":"2023-08-03T06:01:26.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:27","latency":"92.625µs"} -{"level":"debug","ts":"2023-08-03T06:01:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:27","latency":"93.821µs"} -{"level":"debug","ts":"2023-08-03T06:01:31.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:32","latency":"92.865µs"} -{"level":"debug","ts":"2023-08-03T06:01:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:32","latency":"96.804µs"} -{"level":"debug","ts":"2023-08-03T06:01:36.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:01:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:37","latency":"100.56µs"} -{"level":"debug","ts":"2023-08-03T06:01:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:37","latency":"102.449µs"} -{"level":"debug","ts":"2023-08-03T06:01:41.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:42","latency":"97.247µs"} -{"level":"debug","ts":"2023-08-03T06:01:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:42","latency":"87.67µs"} -{"level":"debug","ts":"2023-08-03T06:01:46.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:01:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:47","latency":"94.695µs"} -{"level":"debug","ts":"2023-08-03T06:01:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:47","latency":"101.891µs"} -{"level":"debug","ts":"2023-08-03T06:01:51.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:01:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:52","latency":"89.582µs"} -{"level":"debug","ts":"2023-08-03T06:01:52.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:52","latency":"96.679µs"} -{"level":"debug","ts":"2023-08-03T06:01:56.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:01:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:57","latency":"103.417µs"} -{"level":"debug","ts":"2023-08-03T06:01:57.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:01:57","latency":"97.9µs"} -{"level":"debug","ts":"2023-08-03T06:02:01.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:02:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:02","latency":"82.334µs"} -{"level":"debug","ts":"2023-08-03T06:02:02.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:02","latency":"124.626µs"} -{"level":"info","ts":"2023-08-03T06:02:06.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersDetected":0,"statusByPeer":"map[]","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","peersToDetect":0,"peersUndetected":0} -{"level":"debug","ts":"2023-08-03T06:02:06.702Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:07","latency":"91.923µs"} -{"level":"debug","ts":"2023-08-03T06:02:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:07","latency":"80.05µs"} -{"level":"debug","ts":"2023-08-03T06:02:11.703Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:12","latency":"92.656µs"} -{"level":"debug","ts":"2023-08-03T06:02:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:12","latency":"100.119µs"} -{"level":"debug","ts":"2023-08-03T06:02:16.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:17","latency":"99.552µs"} -{"level":"debug","ts":"2023-08-03T06:02:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:17","latency":"80.429µs"} -{"level":"debug","ts":"2023-08-03T06:02:19.614Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:19","latency":"71.202µs"} -{"level":"debug","ts":"2023-08-03T06:02:19.819Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:02:19","latency":"53.452µs"} -{"level":"debug","ts":"2023-08-03T06:02:21.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:02:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:22","latency":"91.945µs"} -{"level":"debug","ts":"2023-08-03T06:02:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:22","latency":"94.98µs"} -{"level":"debug","ts":"2023-08-03T06:02:26.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:27","latency":"101.193µs"} -{"level":"debug","ts":"2023-08-03T06:02:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:27","latency":"105.521µs"} -{"level":"debug","ts":"2023-08-03T06:02:31.706Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:32","latency":"98.68µs"} -{"level":"debug","ts":"2023-08-03T06:02:32.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:32","latency":"88.285µs"} -{"level":"debug","ts":"2023-08-03T06:02:36.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:37","latency":"97.739µs"} -{"level":"debug","ts":"2023-08-03T06:02:37.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:37","latency":"89.976µs"} -{"level":"debug","ts":"2023-08-03T06:02:41.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:42","latency":"98.455µs"} -{"level":"debug","ts":"2023-08-03T06:02:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:42","latency":"79.38µs"} -{"level":"debug","ts":"2023-08-03T06:02:46.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:47","latency":"117.554µs"} -{"level":"debug","ts":"2023-08-03T06:02:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:47","latency":"112.505µs"} -{"level":"debug","ts":"2023-08-03T06:02:51.709Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:02:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:52","latency":"114.822µs"} -{"level":"debug","ts":"2023-08-03T06:02:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:52","latency":"93.218µs"} -{"level":"debug","ts":"2023-08-03T06:02:56.709Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:02:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:57","latency":"93.115µs"} -{"level":"debug","ts":"2023-08-03T06:02:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:02:57","latency":"187.901µs"} -{"level":"debug","ts":"2023-08-03T06:03:01.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:02","latency":"96.287µs"} -{"level":"debug","ts":"2023-08-03T06:03:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:02","latency":"96.535µs"} -{"level":"debug","ts":"2023-08-03T06:03:06.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:07","latency":"95.541µs"} -{"level":"debug","ts":"2023-08-03T06:03:07.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:07","latency":"108.991µs"} -{"level":"debug","ts":"2023-08-03T06:03:11.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:12","latency":"118.382µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:12","latency":"123.425µs"} -{"level":"debug","ts":"2023-08-03T06:03:12.337Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:03:12","latency":"4.099652ms"} -{"level":"info","ts":"2023-08-03T06:03:12.548Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:03:12.548Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:03:12.548Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","peers":["12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690"]} -{"level":"debug","ts":"2023-08-03T06:03:12.548Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-03T06:03:12.549Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:03:12.549Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:03:12.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.809Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"info","ts":"2023-08-03T06:03:12.809Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:03:12.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:12.810Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:12.810Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","duration":795} -{"level":"info","ts":"2023-08-03T06:03:12.810Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"info","ts":"2023-08-03T06:03:12.810Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:03:12.811Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy\\\"\\n\\n\\nocrKeyBundleID = \\\"3c7f6cf7f77743e1d4dac8a6234546bca3407f1d00b1e1979ba6d78bd4186b64\\\" \\n\\ntransmitterID = \\\"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw@10.14.104.202:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:03:12","latency":"269.803685ms"} -{"level":"debug","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","newConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-03T06:03:12.897Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"bootstraps":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","streamName":"ragedisco/v1","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:12.898Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","id":"ragep2p","peerIDs":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} -{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","loaded":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"],"numLoaded":1,"id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","queried":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"],"numQueried":5,"found":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"],"numFound":1} -{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"PeerV2","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oracleID":0,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","Addrs":["10.14.104.202:6690"]}],"oracles":["12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"]} -{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"ab82444d2298d6e72b3a0737ec27100ce3da7bd1569f25a2ea19aed502623eb5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:12.901Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","oracleID":0,"_id":"OCREndpointV2","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"PeerV2","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"ne":1,"previousNe":0} -{"level":"info","ts":"2023-08-03T06:03:12.902Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":4,"epoch":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:12.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw"} -{"level":"warn","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"warn","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:03:13.012Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:13.014Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"out","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","remoteAddr":"10.14.104.202:6690"} -{"level":"info","ts":"2023-08-03T06:03:13.015Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw","streamID":"d2b31da9de8d4fe01d3d26b075ff93943f8e2940cfc71e6de4d9d2576f0dc870","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:13.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX Counter:0 Addrs:[10.14.72.41:6690 127.0.0.1:6690] Sig:rBN7riDQ30iddcGT3KU41naiUqznLdyEC2VLWZyOuwMPStipE9rKEFkCmnz1x+3HabT5vkg3ZhUEJZoQhLSnDA==}","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"info","ts":"2023-08-03T06:03:13.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWQAPULiPZqEQqpcW3yoaPR4Rd3QjS2ksqaMwYe2kYMtgw Counter:0 Addrs:[10.14.104.202:6690 127.0.0.1:6690] Sig:8fPCUAEez4NfloVlJJSaA2OERHd4J2e07s0uVX7UKulUNcR4Apwqu+P8yuGxp+rB0VFU9pJWgOvOYDi5vVaoCg==}","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"info","ts":"2023-08-03T06:03:13.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","in":"processAnnouncement","announcement":"{PeerID:12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd Counter:0 Addrs:[10.14.116.75:6690 127.0.0.1:6690] Sig:xvb6BL46dRrn1NC1ud924QAiOisXIOPuxJX/rmI+BrKHTlihgb/0Nf+YJkbUamMy7QGIqlhCe0V7Lgs3PqkFAg==}","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:03:13.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV Counter:0 Addrs:[10.14.31.21:6690 127.0.0.1:6690] Sig:e/g6LSuLG3IME2Hg+JAX5nUsYpfy/xywcLSYMEXo3hnRGKb3z7PyuwY1Z4PmjKEETZkSjJ09xANK2Y7o2un4BQ==}"} -{"level":"debug","ts":"2023-08-03T06:03:13.671Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.758Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:13.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:14.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.790Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.877Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:15.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:16.823Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.910Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:16.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.114Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:17","latency":"93.444µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:17","latency":"89.499µs"} -{"level":"debug","ts":"2023-08-03T06:03:17.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:17.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.014Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:18.669Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"debug","ts":"2023-08-03T06:03:18.669Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:18.669Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:03:18.671Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","direction":"out","remoteAddr":"10.14.116.75:6690"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"out","remoteAddr":"10.14.31.21:6690","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"cc43b64864e45393b9e752fe11bce91da1f651f3bb78aa5303b93f6f90f440e5","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","id":"ragep2p","remotePeerID":"12D3KooWH3gfhm9xaeCf4HERM6K66FKhdq93usZQY2VTFXXN7iYd","streamID":"ff18ff06bf842b516df5098d1106c64be7c0290941d8c76054c39245bfb72e9b","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:03:18.672Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.72.41:6690","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","direction":"out"} -{"level":"debug","ts":"2023-08-03T06:03:18.673Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV","id":"ragep2p","streamID":"c2c602dc5e5b94366a7a681628da16e8691a4e4367c670cfd42bbdb59bbfe343"} -{"level":"info","ts":"2023-08-03T06:03:18.673Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"8f49efc27eb9c32063c42920f1577869efb3d47689f1ac4fd4367d8ead84ce08","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWS7wZ7DWEMz6yYEj2SdhpJKDzUwrveg3kSMQ7fbjMPMHV"} -{"level":"debug","ts":"2023-08-03T06:03:18.673Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":2,"candidateEpochs":[2,2,2]} -{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001027728} -{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.000977864} -{"level":"debug","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:146","msg":"logging as debug due to context cancellation: ReportGeneration: ReportingPlugin.Observation errored","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":1,"round":1,"error":"error in Observation: DataSource.Observe returned an error: task inputs: too many errors; JuelsPerFeeCoinDataSource.Observe returned an error: task inputs: too many errors","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"leader":4} -{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"leader":4,"epoch":1,"e":1,"l":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":2,"leader":2} -{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"394125269763093e8ee6e5635034a4343b2414603524c44a71275477f2aee41d","streamName":"ocr/0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX"} -{"level":"info","ts":"2023-08-03T06:03:18.674Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWLkA9GU8bZJme6zL1qc2n2LWRDZ7mAewuyYXmSGVLc3VX","id":"ragep2p","streamName":"ragedisco/v1","streamID":"dd10193aafc129bb815d64097c0003034d2f18a44031537543835274ee9fc087","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:18.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.051Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.224Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:19.993Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.080Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:20.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.073Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.181Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:21.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:22.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:22","latency":"95.279µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:22","latency":"547.14µs"} -{"level":"debug","ts":"2023-08-03T06:03:22.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:23.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.163Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:24.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.286Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:25.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.268Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.553Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:26.714Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:27","latency":"90.285µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:27","latency":"119.541µs"} -{"level":"debug","ts":"2023-08-03T06:03:27.291Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.378Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:27.985Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:03:28.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.465Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.561Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:28.734Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.506Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.627Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:29.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.516Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:30.830Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.582Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.669Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.714Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:03:31.735Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"candidateEpochs":[3,3,3],"newEpoch":3} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":2,"e":2,"l":2,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:03:31.793Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:31.794Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.003171846} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00320524} -{"level":"debug","ts":"2023-08-03T06:03:31.797Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"leader":4,"round":1,"observation":"CLOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:31.908Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:32","latency":"92.662µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:32","latency":"117.742µs"} -{"level":"debug","ts":"2023-08-03T06:03:32.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.734Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:32.932Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.822Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:33.965Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.806Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.893Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:34.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:35.799Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":1},"initialRound":true,"unfulfilledRequest":true,"result":true,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"alphaReportInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"oid":0,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":3,"Round":1,"H":[80,128,194,63,200,222,187,92,94,114,45,235,58,123,90,18,255,40,5,45,249,253,117,235,161,158,144,84,66,10,179,136],"AttestedReport":{"Report":"ZMtDMwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"iKEewnEfqqEDJ+q50Dx4F3DoTJSfQHt6DJSC3F9TSgBZOo3lnv4uqT77W/FSsVgmxHIYGROWFNMkLIm5cR0K6wA=","Signer":1},{"Signature":"M/wbYYdYHg09rvctQUCLRnnv5Q4jUfyNPhugkQiHYKIMmNlY+Q6kZH1H3+OYnfIx0JGFdRKUqVbuJa0w3tpTOgE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:35.801Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"sender":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"sender":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001285639} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001423733} -{"level":"debug","ts":"2023-08-03T06:03:35.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observation":"CLeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:35.828Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:35.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.715Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:03:36.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:36.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.033Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:37","latency":"94.235µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:37","latency":"94.261µs"} -{"level":"debug","ts":"2023-08-03T06:03:37.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.103Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:38.999Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.172Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:39.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:39.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","unfulfilledRequest":false,"initialRound":false,"reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","deltaCTimeout":true,"alphaReportInfinite":false,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":2},"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"leader":4,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":3,"Round":2,"H":[87,154,80,50,179,96,175,29,88,51,67,146,208,211,146,18,130,43,221,171,72,177,117,239,202,147,198,166,5,101,214,43],"AttestedReport":{"Report":"ZMtDNwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ble5Q12KQ0upWJzVzjI7DRCxMDMIASaCZv1NpCM14RgLd7gEyJOE+VyYCTNszcNTm28yiz9AbdsDO+SxM8LmvAE=","Signer":3},{"Signature":"HFSYkyV4Yf4R9tyby/o41YOFXyTL9ZF680CRO3LMzRkbL88GzgvoinzOBG4pl5njydEWtGteLKjtGl5IMMHHpwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"result":true,"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:39.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":0,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001330488} -{"level":"debug","ts":"2023-08-03T06:03:39.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001396642} -{"level":"debug","ts":"2023-08-03T06:03:39.808Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observation":"CLuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-03T06:03:40.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.200Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:40.223Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.138Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.227Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:41.716Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:42.106Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:42","latency":"100.093µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:42","latency":"103.15µs"} -{"level":"debug","ts":"2023-08-03T06:03:42.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.280Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:42.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.072Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:03:43.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:43.391Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:43.809Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":3,"Round":3},"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:03:31.000Z","unfulfilledRequest":false,"initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"alphaReportInfinite":false,"deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"leader":4,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":3,"leader":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","roundMax":3,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:03:43.810Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":3,"sender":4,"oid":0} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"event":{"Epoch":3,"Round":3,"H":[95,66,223,13,89,52,138,218,219,32,239,130,204,254,43,182,70,194,55,255,240,63,216,213,1,139,145,80,33,198,23,239],"AttestedReport":{"Report":"ZMtDOwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/3VKDmpXCkegFfFBUgnuAqswiiGe03M+MvFD09tT3jE/BbKswy5S9rnlIV2NYCYHl+XBZhCvxuYHcCEZnH2FTAA=","Signer":0},{"Signature":"+7i1w8myT4bHWqeiFfaTELfQ7/mSfkkg5w3NqpiMuE4k+dR9Lq3k/EJa4ECsQlcwUuUrRYlJ22hXX9tyZ7YGQQE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":3,"sender":0,"epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaAcceptPPB":0,"result":true,"reportEpochRound":{"Epoch":3,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":4,"candidateEpochs":[4,4,4]} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":3,"leader":4,"e":3,"l":4} -{"level":"debug","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"sender":3} -{"level":"info","ts":"2023-08-03T06:03:43.811Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:43.812Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001263688} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.00132707} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"round":1,"observation":"CL+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"sender":0,"msgEpoch":4,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"observationCount":1,"requiredObservationCount":3,"oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:43.813Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"msgEpoch":4,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1,"observationCount":2,"requiredObservationCount":3,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"msgRound":1,"round":1,"sender":4,"msgEpoch":4} -{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"observationCount":3,"requiredObservationCount":3,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":3,"msgEpoch":4,"msgRound":1,"round":1,"oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:43.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:43.897Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:43.898Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:43.898Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-03T06:03:43.984Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326","signature":"5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"} -{"level":"debug","ts":"2023-08-03T06:03:43.984Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326"} -{"level":"debug","ts":"2023-08-03T06:03:44.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042611}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.407Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:44.535Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326","signature":"5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"} -{"level":"debug","ts":"2023-08-03T06:03:44.535Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"],"id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326"} -{"level":"debug","ts":"2023-08-03T06:03:44.535Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"1a1e8bb9-3af9-45fe-a4e2-0cbe8d9d2326","signatures":["5Rteo3uka5EKkm89tyMeGyJF91oZutKs57E3ruBUyuZdugBTRUhN64t8tVXqxYaToeRjZpWayjAS9ZidX2nAoFqQ"]} -{"level":"debug","ts":"2023-08-03T06:03:45.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.420Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:45.507Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.283Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.441Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.528Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:46.717Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:47","latency":"106.517µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:47","latency":"86.191µs"} -{"level":"debug","ts":"2023-08-03T06:03:47.331Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.505Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.541Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:47.628Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:47.815Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","unfulfilledRequest":false,"alphaReportPPB":0,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":1},"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:03:39.000Z","deltaCTimeout":true,"alphaReportInfinite":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":4,"Round":1,"H":[137,222,173,165,54,115,177,217,224,140,118,188,58,45,240,172,204,123,115,13,103,13,46,96,48,78,210,36,254,11,2,174],"AttestedReport":{"Report":"ZMtDPwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Qw8cEZ0dIR41tsnyYXaE2wBGQc4ky7yGJ5zUtOHdeSwDLq/ho2t96pEJ9LdX3XeuU3nu5rj+ZD5YMZ+eCAhjTgE=","Signer":0},{"Signature":"p//FtJvP0C+0/QNW+blsVGsnoI3s9Qvn2tBLPhlJ4TFfN3to4ak8unl68dB4rjirzuDQzm/MATomx1uBgUvaEAA=","Signer":4}]}},"oid":0} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:03:47.816Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001358127} -{"level":"debug","ts":"2023-08-03T06:03:47.817Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.00139733} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2,"observation":"CMOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"msgRound":2,"round":2,"sender":0,"msgEpoch":4,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"observationCount":1,"requiredObservationCount":3,"oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"msgEpoch":4,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":2,"requiredObservationCount":3,"round":2,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":4,"msgEpoch":4,"msgRound":2,"oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"leader":0,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:47.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":2,"sender":3,"msgEpoch":4,"msgRound":2,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:47.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:48.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.596Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042619}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:48.683Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.667Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.668Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:49.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.515Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.689Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.703Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:50.790Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042623}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:51.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:51.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:03:43.000Z","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":2},"deviation":true,"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":4,"Round":2,"H":[160,165,57,213,1,123,67,155,163,182,133,97,214,142,167,15,192,94,237,107,210,5,6,164,187,187,21,95,172,191,48,145],"AttestedReport":{"Report":"ZMtDQwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"roYienHlvQ0Kf5Ip6+NUGMGYL1bjYwlKgsbJTpxHePE2bmEkO5BzL3qCXfq6FmEKHYgu5pcNNlKprA14EJwlKgA=","Signer":0},{"Signature":"5S3SNfBmrP+iJIyNhpJVHIiaqzrZdldLF4EGzApdYkMqlulTxKjbbI4ZiBGhSMiWWSUvtTLwrNVK+lrb+vij7AE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":4,"Round":1},"alphaAcceptInfinite":false,"result":true,"deviates":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:03:51.821Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"info","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001305635} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001414326} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"round":3,"observation":"CMeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":4,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":0,"msgEpoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":3,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"msgEpoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"requiredObservationCount":3,"round":3,"observationCount":2} -{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"leader":0,"round":3,"sender":4,"msgEpoch":4,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"round":3,"observationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":3,"sender":3,"msgEpoch":4,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:03:51.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:03:51.882Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:51.908Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:51.908Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:03:51.995Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"69305a83-003e-48ed-9ecb-63993e79ab19","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"} -{"level":"debug","ts":"2023-08-03T06:03:51.995Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV","id":"69305a83-003e-48ed-9ecb-63993e79ab19"} -{"level":"debug","ts":"2023-08-03T06:03:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:52","latency":"94.058µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:52","latency":"87.843µs"} -{"level":"debug","ts":"2023-08-03T06:03:52.489Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"} -{"level":"debug","ts":"2023-08-03T06:03:52.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.809Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:52.896Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.097Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"69305a83-003e-48ed-9ecb-63993e79ab19","signature":"5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"} -{"level":"debug","ts":"2023-08-03T06:03:53.097Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"69305a83-003e-48ed-9ecb-63993e79ab19","signatures":["5cNYSD8SVCL9XtxYWe9SA3aqDJZVst97q4i88E4C6VQ1kQ1YCjaqc6vG2nSebnLNm7a1RUWcE4e8Rd7Nqjom1YWV"]} -{"level":"debug","ts":"2023-08-03T06:03:53.614Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.788Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:53.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.633Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:54.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:55.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","initialRound":false,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:03:47.000Z","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":4,"Round":3},"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":4,"msgRound":3,"leader":0} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":4,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":4,"round":3,"oid":0} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":4,"Round":3,"H":[209,208,176,171,199,111,209,250,77,44,240,88,232,137,46,53,187,34,124,127,221,94,251,27,16,92,100,53,195,28,192,251],"AttestedReport":{"Report":"ZMtDRwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1GHKpVbDU0Lnyb2xET7c0K9Htit1Nk8s2mQbJY2vVRQfHB+AnoEfqPCAfQcFfNs0pYnmuKHfN52/8Wl/Mv+EVAA=","Signer":0},{"Signature":"d2nfIv5dusvfvGnEOgd1AejuhjchQ04vbmgprV4kR+QZEdUMXuGsCZrwpfv+Qryb5nYdbKjMA1mFPB/0pgK23QE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"deviates":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"round":4,"msgRound":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"info","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","newEpoch":5,"candidateEpochs":[5,5,5],"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"sender":1} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"leader":0,"e":4,"l":0} -{"level":"info","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"oid":0} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:55.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:03:55.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001236301} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001285082} -{"level":"debug","ts":"2023-08-03T06:03:55.830Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"leader":4,"round":1,"observation":"CMuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:03:55.849Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042627}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.895Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:55.914Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:55.914Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:03:55.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.000Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"175f899c-1e4c-4205-adab-a3be08edfd8f","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"} -{"level":"debug","ts":"2023-08-03T06:03:56.000Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j","id":"175f899c-1e4c-4205-adab-a3be08edfd8f"} -{"level":"debug","ts":"2023-08-03T06:03:56.351Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"} -{"level":"debug","ts":"2023-08-03T06:03:56.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:03:56.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.953Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:56.971Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"175f899c-1e4c-4205-adab-a3be08edfd8f","signature":"5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"} -{"level":"debug","ts":"2023-08-03T06:03:56.971Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"175f899c-1e4c-4205-adab-a3be08edfd8f","signatures":["5mcREsZdHQeaLfGiVVmhxEMPMpYu7cUXYRdWwqo79Hh8fFWmw4XD9hof5zKdMDfVSCLmY8BDxtZN8rRzycBizd7j"]} -{"level":"debug","ts":"2023-08-03T06:03:57.041Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:57","latency":"102.001µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:03:57","latency":"82.276µs"} -{"level":"debug","ts":"2023-08-03T06:03:57.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.966Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:57.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.160Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:03:58.813Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:58.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.052Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.140Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:59.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","unfulfilledRequest":false,"result":true,"alphaReportPPB":0,"initialRound":false,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:51.000Z","deltaC":0,"deltaCTimeout":true,"deviation":true,"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-03T06:03:59.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":4,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"round":1,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":5,"Round":1,"H":[92,40,230,145,76,130,123,101,148,226,254,145,74,33,96,49,158,213,162,224,5,115,222,175,73,248,226,250,35,166,44,253],"AttestedReport":{"Report":"ZMtDSwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"HgXWgJPZnV6K7B0hWjhvWn86bRpTTCTJeTpZQffRBGw+5Q5099e2yWbofgUIflncQN+zcfBDFP5eOzG5Lh6PDQE=","Signer":3},{"Signature":"N/33JeCFeZlLIYyxGvsYsK/3lpsq8rSnO58WlVDpSeZ25J17wDiJekBrxM5Qv07P6vSMs30RLFx1ieM7ax456gE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"deviates":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"info","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:03:59.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001493828} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001523135} -{"level":"debug","ts":"2023-08-03T06:03:59.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"round":2,"observation":"CM+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":0} -{"level":"debug","ts":"2023-08-03T06:03:59.869Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:03:59.920Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:03:59.920Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:00.007Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} -{"level":"debug","ts":"2023-08-03T06:04:00.007Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5"} -{"level":"debug","ts":"2023-08-03T06:04:00.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:00.218Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} -{"level":"debug","ts":"2023-08-03T06:04:00.850Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} -{"level":"debug","ts":"2023-08-03T06:04:00.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042631}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.164Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.252Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:01.478Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} -{"level":"debug","ts":"2023-08-03T06:04:01.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:04:01.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.075Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5","signature":"532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"} -{"level":"debug","ts":"2023-08-03T06:04:02.075Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"],"id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5"} -{"level":"debug","ts":"2023-08-03T06:04:02.075Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"dc2c45df-5eb6-4564-b169-ea6766f8e8c5","signatures":["532YD3AeYUUHGCEZKN5FeiTz4tQCEpzRoaCJGkVoM64pTUvhKzAWS9svQpJgF5n3PijWaF4eYqvwPyZMpz4bqXsz"]} -{"level":"debug","ts":"2023-08-03T06:04:02.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:02","latency":"99.557µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:02","latency":"76.377µs"} -{"level":"debug","ts":"2023-08-03T06:04:02.261Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:02.989Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.315Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:03.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:03.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:03:55.000Z","initialRound":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","result":true,"unfulfilledRequest":false,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":2},"alphaReportPPB":0,"deviation":true} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"oid":0} -{"level":"debug","ts":"2023-08-03T06:04:03.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":5,"Round":2,"H":[103,151,251,101,116,226,141,66,89,17,82,112,178,248,97,232,159,26,13,43,143,13,172,25,238,169,91,38,134,77,38,238],"AttestedReport":{"Report":"ZMtDTwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6zKo3hdD8DPSnMgV6U5SSAX/ydTmtvVCy/oNg08nfJ5d24aE1Wmgkg53HBp9EdCJrzyPoVgE0yH+foboOUTsPgE=","Signer":0},{"Signature":"VtekG7GKHb7SCv+xmbZcxlclAzSubXO/mo0MwDVCl0AUoa2Q/Ht5wdYgjH2NgzEQcUrdAfCJQFRRD4G+0B2htgA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"info","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:03.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001283235} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00131368} -{"level":"debug","ts":"2023-08-03T06:04:03.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"leader":4,"round":3,"observation":"CNOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:03.925Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:03.925Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:04.003Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.012Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"} -{"level":"debug","ts":"2023-08-03T06:04:04.012Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36"} -{"level":"debug","ts":"2023-08-03T06:04:04.184Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042635}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.283Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"} -{"level":"debug","ts":"2023-08-03T06:04:04.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:04.874Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36","signature":"4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"} -{"level":"debug","ts":"2023-08-03T06:04:04.874Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"6351b0ec-a7bc-4a16-a350-0f3e04134f36","signatures":["4VHnBCB3AzBbw9sPxk5uSX447iYZ9cCafSh9cDMoZkqTVG4UsUPykh3Lyuf3Ys8GFanRiYRukR8JCqphqd92W6pG"]} -{"level":"debug","ts":"2023-08-03T06:04:05.075Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.424Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:05.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.346Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.587Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:06.720Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:07.195Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:07","latency":"88.116µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:07","latency":"97.575µs"} -{"level":"debug","ts":"2023-08-03T06:04:07.368Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:07.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:07.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviation":true,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":5,"Round":3},"result":true,"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z"} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":5,"leader":4,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","roundMax":3,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":3,"sender":4,"epoch":5,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":5,"Round":3,"H":[111,7,96,55,197,111,43,223,219,154,67,27,14,184,54,21,71,154,25,227,219,194,254,14,36,41,66,44,74,125,200,246],"AttestedReport":{"Report":"ZMtDUwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"cyV44LDq39B2VC8nwLLP/WaTgB2K2zCnlWFNePdXjhwviqdbZeZKEM1IsJHO3kBv5vyt526g+9tIonpUqVvkZgA=","Signer":0},{"Signature":"oLON79WPgmnUoDwVm6tJthxookxsDERpYovoKsPJ7sgyGAu39+LJcBhczK1wyjiWzAWxgPLKDio1LBaVB+V8WwA=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:07.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","latestAcceptedEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":5,"round":3,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"candidateEpochs":[6,6,6],"newEpoch":6} -{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":5,"leader":4,"oid":0,"e":5,"l":4} -{"level":"info","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":5,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:07.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001284916} -{"level":"debug","ts":"2023-08-03T06:04:07.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001354533} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"observation":"CNeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":0,"msgEpoch":6,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1,"observationCount":1,"requiredObservationCount":3,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":1,"msgEpoch":6,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1,"sender":4,"msgEpoch":6,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1,"observationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:07.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"sender":3,"msgEpoch":6,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:07.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:08.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:08.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.737Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:09.824Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.766Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:10.853Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.476Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.721Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:11.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:11.846Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":1},"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:03:59.000Z","unfulfilledRequest":false,"deviation":true,"deltaCTimeout":true,"initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","result":true,"deltaC":0,"alphaReportInfinite":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:11.847Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":6,"Round":1,"H":[82,186,55,200,212,208,241,35,159,112,128,219,99,130,126,4,106,190,178,244,34,199,146,163,147,128,26,217,148,3,248,32],"AttestedReport":{"Report":"ZMtDVwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1qJg/vMHWE/W9PlNBb3ArP8hMwARQq2xH+/TK6qJF+srVjnjhaLLNjTfGaZKpVY0ElI1CyPcl549S2EyPneJCQE=","Signer":0},{"Signature":"i0dFLpzzSDKDFks/8S/YAWVxuAqv7NR+aQvlmOLBvQFyK+sSfyn8FsXYWE7TCAiAPQOl5NdAxMiNPOXiacwIeQA=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":5,"Round":2},"reportEpochRound":{"Epoch":6,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"info","ts":"2023-08-03T06:04:11.848Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001269424} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001356931} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"round":2,"observation":"CNuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"round":1,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":1,"sender":3,"epoch":6,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"sender":0,"msgEpoch":6,"msgRound":2,"oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:11.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"requiredObservationCount":3,"round":2,"observationCount":1} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"msgEpoch":6,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"round":2,"observationCount":2,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":6,"leader":0,"round":2,"sender":4,"msgEpoch":6,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observationCount":3,"requiredObservationCount":3,"oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:11.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:11.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":2,"sender":3,"msgEpoch":6} -{"level":"debug","ts":"2023-08-03T06:04:11.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:11.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:11.935Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy) + transmissions (DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:11.935Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:12.021Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fc527a5e-853e-4443-b17b-108f6c92379b","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"} -{"level":"debug","ts":"2023-08-03T06:04:12.022Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh","id":"fc527a5e-853e-4443-b17b-108f6c92379b"} -{"level":"debug","ts":"2023-08-03T06:04:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:12","latency":"96.623µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:12","latency":"100.095µs"} -{"level":"debug","ts":"2023-08-03T06:04:12.293Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"} -{"level":"debug","ts":"2023-08-03T06:04:12.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042639}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:12.897Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fc527a5e-853e-4443-b17b-108f6c92379b","signature":"5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"} -{"level":"debug","ts":"2023-08-03T06:04:12.897Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fc527a5e-853e-4443-b17b-108f6c92379b","signatures":["5NJiuDhTQgWP4wRJLrwsevL9Vos7mAP5MbY6xBG3Qg22ErtkW9YPLaFwKSSgt8PYzhdDrgbftW1HRTbDqL7XhyGh"]} -{"level":"debug","ts":"2023-08-03T06:04:12.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.009Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.247Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:04:13.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.589Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:13.996Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.441Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:14.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.064Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:15.690Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042647}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:15.850Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","deltaC":0,"initialRound":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:04:07.000Z","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportPPB":0,"alphaReportInfinite":false,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":6,"Round":2,"H":[43,200,21,225,228,161,248,233,67,67,239,120,74,93,0,133,203,8,159,36,165,53,129,2,93,147,10,228,237,123,229,70],"AttestedReport":{"Report":"ZMtDWwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"y/s0A8cDb2z2DiQbEsaA37Qlu1jrgd26XblNLRBJVsIb4MjadHbLXUdIy4dFWNfwuGzPLNKIBRDUzmGQKKjgIgE=","Signer":0},{"Signature":"Ap9I77YR9pohb9oyj5gRIGQxbUseSui6G6EcZv4MesMrN5OKEqP4C6KBkeXxUecD1fWcm7m0yvculjnhwuvomAA=","Signer":4}]}},"oid":0} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":6,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:15.852Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001377671} -{"level":"debug","ts":"2023-08-03T06:04:15.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001367142} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"observation":"CN+GraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":6,"round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"sender":4,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"sender":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":3,"sender":0,"msgEpoch":6,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observationCount":1,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":3,"sender":1,"msgEpoch":6} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"observationCount":2,"requiredObservationCount":3,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"msgEpoch":6,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"observationCount":3,"requiredObservationCount":3,"oid":0} -{"level":"debug","ts":"2023-08-03T06:04:15.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:15.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":6,"msgRound":3,"oid":0,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:15.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:16.089Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.176Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:16.722Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:16.785Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:17","latency":"94.572µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:17","latency":"93.735µs"} -{"level":"debug","ts":"2023-08-03T06:04:17.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.709Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:17.882Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.777Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:18.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.163Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:19.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:19.855Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","lastTransmissionTimestamp":"2023-08-03T06:04:11.000Z","result":true,"deviation":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":6,"Round":3},"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"round":4,"oid":0,"epoch":6,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":6,"Round":3,"H":[63,155,75,185,68,79,109,146,131,97,40,234,94,28,216,101,247,99,37,84,153,5,31,58,145,111,12,92,80,98,237,226],"AttestedReport":{"Report":"ZMtDXwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"7BJJF8tMMJasXq5Cs/Kra6TD6tKD6I/svMFmnFBP/4osQoyjYxuoKYTlM5lpmg/SMVsG9p1NUzTAwx/01dnbeQA=","Signer":0},{"Signature":"nhFNW+KOgejmAS+iY8toEU5CgedHbu9fT0eEZboD5QBYYIZm9ikaA4iGRJFL6YVKSLWGuQnFsVJxlY3q5GMZCQA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","result":true,"contractEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":2},"deviates":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"msgRound":3,"oid":0,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:19.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":6} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","l":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"leader":0,"e":6} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","sender":1,"epoch":6,"round":3} -{"level":"info","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":6,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:19.858Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001355775} -{"level":"debug","ts":"2023-08-03T06:04:19.859Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.0014145} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":1,"observation":"COOGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":0,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"msgEpoch":7,"msgRound":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":1,"msgEpoch":7,"oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","msgRound":1} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"sender":4,"msgEpoch":7,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:19.860Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:19.861Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":1,"sender":3,"msgEpoch":7,"msgRound":1,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:19.861Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:19.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042651}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.218Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:20.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.013Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:21.723Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:21.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.038Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:22","latency":"98.507µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:22","latency":"92.482µs"} -{"level":"debug","ts":"2023-08-03T06:04:22.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:22.955Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.128Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:23.513Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:23.861Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","unfulfilledRequest":false,"deviation":true,"initialRound":false,"alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:04:15.000Z","result":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":1},"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:04:23.862Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"msgRound":1,"oid":0,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":7,"Round":1,"H":[37,62,239,58,235,149,180,149,181,188,197,27,18,127,71,239,18,34,234,167,19,167,19,188,72,82,159,243,19,145,118,140],"AttestedReport":{"Report":"ZMtDYwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"M4clrlcDOH9alnsRSZzg0ABXmOps3IZVGHXojXL54KFQWNAjbi/BCWgSbMRu/JOnuX0HuNzSAI+m+G3veoBGYAE=","Signer":0},{"Signature":"K02LIqaIywKFgwrNI44c45GB/XLM72Em8sBzG7u/g9hlmZT/+pwW0g+JC4O4sGaRZDLrHyPhcsiwICuQVyosaQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":7,"Round":1},"latestAcceptedEpochRound":{"Epoch":6,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:23.863Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001455097} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00146203} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"observation":"COeGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":4,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.864Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"sender":0,"msgEpoch":7,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"requiredObservationCount":3,"round":2,"observationCount":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"sender":1,"msgEpoch":7,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"observationCount":2,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":2,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"sender":4,"msgEpoch":7} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":2,"observationCount":3} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":2,"sender":3,"msgEpoch":7,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:04:23.865Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:23.998Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.171Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042655}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:24.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.611Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:25.802Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":1},"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"info","ts":"2023-08-03T06:04:25.802Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:26.119Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.533Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:26.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:27.197Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:27","latency":"91.562µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:27","latency":"91.364µs"} -{"level":"debug","ts":"2023-08-03T06:04:27.370Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.590Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:27.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:27.866Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","initialRound":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:04:19.000Z","deviation":true,"deltaC":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"alphaReportPPB":0,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":2},"result":true} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":7,"Round":2,"H":[202,62,131,106,136,254,158,172,188,184,89,44,183,200,237,29,217,104,231,191,85,246,146,158,25,53,194,120,189,162,213,64],"AttestedReport":{"Report":"ZMtDZwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"EXDvRgt8T9fhw8jXg1ZjQKcOvCtcd0mbzoUP+SMefexcOFRbd5HB8Tn12raYJcpSJSZccf0yy5sYT3Uac3tP6AE=","Signer":0},{"Signature":"fpyRl4tSWWqrJAb0s/i24NJHLtDZD6Jddn6zvA2DOl12x95St/g/SWsSnNujwOHnEU4Kmv7ABSwOxu5f6fU5lgA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":7,"Round":1},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":7,"Round":2},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:27.867Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:27.868Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00141027} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001549653} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"leader":0,"round":3,"observation":"COuGraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":2,"sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":0,"msgEpoch":7,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"observationCount":1,"requiredObservationCount":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":7,"round":3,"sender":4,"msgEpoch":7,"msgRound":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"observationCount":2,"requiredObservationCount":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":3,"sender":1,"msgEpoch":7,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observationCount":3,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:27.869Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:27.870Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":7,"msgRound":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:27.870Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:28.259Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.334Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:04:28.432Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042659}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.643Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:28.730Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.282Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.702Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:29.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:30.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.323Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.496Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:04:31.743Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:31.830Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:31.870Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":7,"Round":3},"deltaCTimeout":true,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportPPB":0,"unfulfilledRequest":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"deviation":true,"deltaC":0,"result":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":7,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgRound":3,"round":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","event":{"Epoch":7,"Round":3,"H":[193,94,191,226,184,192,152,3,168,115,49,189,78,246,182,219,14,114,226,63,51,180,150,16,52,194,183,150,236,247,220,180],"AttestedReport":{"Report":"ZMtDawQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"a3BDHVnXGo1XLow9XkxFapkWqjdE1EiqKyhzldg5X8AdMW0KgltlryqAESB6zFm5lZsmsSm6gKirH47VCUxuXgE=","Signer":0},{"Signature":"k9rA3eUaWoB3AlzTMZzH5SUwQlXBWl9945qGGjoDj9xy2A1pKr0g4M4qI4+o+OE7+SDPTtFXmhCfTq+tQYjncAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":7,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":7,"Round":3},"latestAcceptedEpochRound":{"Epoch":7,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:31.872Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":1,"epoch":7,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"leader":0,"e":7,"l":0} -{"level":"info","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":8,"leader":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:31.873Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":7,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:32","latency":"90.838µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:32","latency":"95.341µs"} -{"level":"debug","ts":"2023-08-03T06:04:32.338Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.512Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.786Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:32.873Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.562Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.868Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:33.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.477Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.650Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.886Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:34.973Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.685Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:35.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.575Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.726Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:36.749Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:36.929Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:37","latency":"111.625µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:37","latency":"113.196µs"} -{"level":"debug","ts":"2023-08-03T06:04:37.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:37.817Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":4,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-03T06:04:37.817Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:37.818Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.019Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.106Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:38.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.800Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:39.973Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.168Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.256Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:40.865Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.262Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:41.727Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:04:41.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:42","latency":"91.88µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:42","latency":"96.817µs"} -{"level":"debug","ts":"2023-08-03T06:04:42.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.328Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:42.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.161Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.320Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:43.421Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:04:44.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.418Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:44.505Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.114Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.288Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:45.602Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.380Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.570Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.657Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:46.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:47","latency":"97.723µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:47","latency":"99.347µs"} -{"level":"debug","ts":"2023-08-03T06:04:47.295Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:47.694Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:48.716Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:49.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.427Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:50.764Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.481Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.654Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.729Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:04:51.810Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:51.873Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","candidateEpochs":[9,9,9],"newEpoch":9} -{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":8,"leader":2,"e":8,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"info","ts":"2023-08-03T06:04:51.874Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:51.875Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.00127707} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001293866} -{"level":"debug","ts":"2023-08-03T06:04:51.876Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observation":"CIOHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:52","latency":"106.597µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:52","latency":"106.453µs"} -{"level":"debug","ts":"2023-08-03T06:04:52.483Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:52.836Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.522Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.695Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.793Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:53.880Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.602Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.776Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:54.934Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.693Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.853Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:55.866Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:55.878Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","unfulfilledRequest":false,"alphaReportInfinite":false,"deltaC":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":1},"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deviation":true,"initialRound":false,"deltaCTimeout":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":1,"oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":3,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":9,"Round":1,"H":[158,232,100,62,221,149,125,212,140,144,107,167,62,116,158,244,9,219,25,64,190,146,84,6,64,171,186,73,192,186,40,166],"AttestedReport":{"Report":"ZMtDgwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"bCRGC2UxiuHaahTiMbi/VF3aMGShRkC0KqWLXDzsgxhQFT+e/23Yca5Flw5zs5WKx4IVLLTm4ia2PIgezwd+PwA=","Signer":1},{"Signature":"3WpFxOQpWScehzKlL3AVYgU2PIalffTorKs+5kzkbhci++3cWL6u2c5oYMvc3ElJN3a+K/v2MFH+wojWi+ipxAE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":9,"Round":1},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":7,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:04:55.879Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":1,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:55.880Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001255222} -{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001292893} -{"level":"debug","ts":"2023-08-03T06:04:55.881Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2,"observation":"CIeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:04:55.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.730Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:04:56.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:56.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:57","latency":"94.101µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:04:57","latency":"100.245µs"} -{"level":"debug","ts":"2023-08-03T06:04:57.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.843Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":7,"Round":2},"reportEpochRound":{"Epoch":5,"Round":3}} -{"level":"info","ts":"2023-08-03T06:04:57.843Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:04:57.937Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:57.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.508Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:04:58.849Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:58.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.057Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:04:59.883Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","initialRound":false,"result":true,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"deviation":true,"alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-03T06:04:59.884Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":9,"Round":2,"H":[100,84,14,10,104,168,40,239,235,63,116,31,79,230,127,34,239,110,136,140,45,245,94,233,3,62,41,201,31,131,125,225],"AttestedReport":{"Report":"ZMtDhwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"6M5/JUe3X5MDsD1G1IEHcqCod5/EOiOkwJkN8CI9xwJ12SXRl2GHNfrj/MR8s+TAhTdZZuUgrXH+NWHMmEVdgwE=","Signer":1},{"Signature":"jEhfMw9lgJAfPBDH/Ei85OTQFxDYFVwFwroQhf720bgpOLsMXcZxUqZnDVKzigv0Shp4RS6YyHF0w1BpFLzZ5QA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","latestAcceptedEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":9,"Round":2},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:04:59.885Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","epoch":9,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001236557} -{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.00126559} -{"level":"debug","ts":"2023-08-03T06:04:59.886Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observation":"CIuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-03T06:04:59.909Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:04:59.983Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:00.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.004Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.089Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:01.731Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:01.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.084Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.172Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:02","latency":"100.276µs"} -{"level":"debug","ts":"2023-08-03T06:05:02.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:02","latency":"99.912µs"} -{"level":"debug","ts":"2023-08-03T06:05:03.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.159Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:03.260Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042663}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:03.888Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportPPB":0,"deviation":true,"unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:04:23.000Z","alphaReportInfinite":false,"initialRound":false,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":9,"Round":3},"deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":9,"leader":3,"round":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"epoch":9} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":9,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"event":{"Epoch":9,"Round":3,"H":[160,73,7,0,111,28,156,19,163,67,26,231,35,29,53,151,37,124,132,231,47,29,85,202,123,116,196,46,99,0,12,67],"AttestedReport":{"Report":"ZMtDiwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"3h1ilLmVy4MTqjVd3BXVHIr21dhm+SZ6F49Jj/aKkx1uozg3YyEB+LR3BtQ8GVhZXerVqRk2DW2+BqoyD01klgA=","Signer":1},{"Signature":"8iXhUITvIjJJnOaXw8y+hKHR2h4ZtER7RpwOqggJmLce2aiCuGtVv5ByfMjBEJEpEYNNRBU0AAmmw1GozZqWdQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportEpochRound":{"Epoch":9,"Round":3},"result":true,"contractEpochRound":{"Epoch":7,"Round":2},"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"info","ts":"2023-08-03T06:05:03.889Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","e":9,"l":3,"leader":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9} -{"level":"info","ts":"2023-08-03T06:05:03.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-03T06:05:03.890Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":9,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-03T06:05:04.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.268Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:04.273Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042695}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.141Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.314Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:05.353Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.227Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.344Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.431Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:06.731Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:07","latency":"104.826µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:07","latency":"95.95µs"} -{"level":"debug","ts":"2023-08-03T06:05:07.230Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.350Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.404Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:07.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.236Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.381Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.409Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:08.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.280Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.454Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:09.857Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":6,"Round":3},"reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-03T06:05:09.857Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:10.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.506Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:10.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.465Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.648Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:11.732Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:12","latency":"105.204µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:12","latency":"102.58µs"} -{"level":"debug","ts":"2023-08-03T06:05:12.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.595Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:12.682Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.328Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.595Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:05:13.669Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:13.863Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":7,"Round":1}} -{"level":"info","ts":"2023-08-03T06:05:13.863Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:14.380Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:14.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.444Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.618Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:15.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.502Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.732Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:16.821Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:16.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:17","latency":"102.254µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:17","latency":"104.38µs"} -{"level":"debug","ts":"2023-08-03T06:05:17.582Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:17.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.786Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:18.950Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.646Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:19.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:20.838Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.006Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.093Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.710Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:21.733Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:21.873Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":7,"Round":3}} -{"level":"info","ts":"2023-08-03T06:05:21.873Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:21.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.098Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.186Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:22","latency":"92.811µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:22","latency":"86.639µs"} -{"level":"debug","ts":"2023-08-03T06:05:22.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:22.921Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.808Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"candidateEpochs":[11,11,11],"newEpoch":11} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":10,"leader":2,"e":10,"l":2} -{"level":"info","ts":"2023-08-03T06:05:23.890Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"leader":2,"epoch":11} -{"level":"debug","ts":"2023-08-03T06:05:23.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.226Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:24.885Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:25.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.157Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.413Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:26.734Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:05:26.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:27","latency":"97.342µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:27","latency":"92.771µs"} -{"level":"debug","ts":"2023-08-03T06:05:27.410Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:27.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.169Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:28.682Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:05:29.061Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:29.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.088Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.261Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:30.568Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.183Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.356Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.617Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:31.735Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:32","latency":"79.531µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.200Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:32","latency":"126.632µs"} -{"level":"debug","ts":"2023-08-03T06:05:32.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.411Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:32.713Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.438Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.678Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:33.766Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.336Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.726Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:34.813Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.605Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.804Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:35.891Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.736Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:05:36.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:36.903Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:37","latency":"96.955µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:37","latency":"97.727µs"} -{"level":"debug","ts":"2023-08-03T06:05:37.533Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:37.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.744Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:38.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.042Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.789Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:39.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.083Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.688Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:40.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.040Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.128Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.737Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM"} -{"level":"debug","ts":"2023-08-03T06:05:41.771Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:41.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.094Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:42","latency":"126.932µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:42","latency":"88.869µs"} -{"level":"debug","ts":"2023-08-03T06:05:42.853Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.770Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq"} -{"level":"debug","ts":"2023-08-03T06:05:43.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:43.891Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"newEpoch":12,"candidateEpochs":[12,12,12]} -{"level":"info","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":2,"epoch":11,"e":11,"l":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"info","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:43.892Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001358091} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001393873} -{"level":"debug","ts":"2023-08-03T06:05:43.893Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"leader":0,"round":1,"observation":"CLeHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":12,"msgRound":1,"round":1,"sender":0,"oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"leader":0,"observationCount":1,"requiredObservationCount":3,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":4,"msgEpoch":12,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"requiredObservationCount":3,"round":1,"observationCount":2} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","msgEpoch":12,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:43.894Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:43.895Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":3,"msgEpoch":12,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} -{"level":"debug","ts":"2023-08-03T06:05:43.895Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} -{"level":"debug","ts":"2023-08-03T06:05:44.058Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:44.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.226Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:45.880Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1}} -{"level":"info","ts":"2023-08-03T06:05:45.880Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:45.938Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.311Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:46.738Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:47.003Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.177Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:47","latency":"117.222µs"} -{"level":"debug","ts":"2023-08-03T06:05:47.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:47","latency":"99.734µs"} -{"level":"debug","ts":"2023-08-03T06:05:47.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:47.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:47.896Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"unfulfilledRequest":false,"alphaReportPPB":0,"result":true,"deltaCTimeout":true,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","deltaC":0,"timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":1,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":12,"Round":1,"H":[167,39,199,18,183,107,6,93,111,62,215,255,184,87,18,232,246,121,81,174,216,105,228,243,196,104,139,45,159,91,177,72],"AttestedReport":{"Report":"ZMtDtwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9gNLwPP+ClJhTX7NsKPOXorBFzgqd+2UlX9TJ8weNIs/PxblhJJ+xO1xAx4Wh27fNI+gwPqWH09ELWRPasWQawA=","Signer":0},{"Signature":"q/mraM9mGz5/5b0Kdq5D6FKlq3RizaRnnnv+DBHJ8oteh4RbWB6srbexYGWf+qQxpa/Z5cVgSaUw82wmAPkaPAE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":12,"Round":1},"contractEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:05:47.897Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001389412} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001543538} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"observation":"CLuHraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2,"msgRound":1,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":2,"msgRound":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":1,"sender":0,"epoch":12,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"sender":4,"epoch":12,"round":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":1,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":1} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":1,"sender":3,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"sender":0,"msgEpoch":12,"msgRound":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":1,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":4,"msgEpoch":12,"msgRound":2,"oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":2,"observationCount":2,"requiredObservationCount":3,"oid":0,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":2,"sender":1,"msgEpoch":12,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"round":2,"observationCount":3,"requiredObservationCount":3,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:47.899Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"round":2,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:47.900Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"msgEpoch":12,"msgRound":2,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:05:47.900Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:48.102Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.276Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:48.565Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.186Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.648Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:49.885Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":3},"reportEpochRound":{"Epoch":9,"Round":2}} -{"level":"info","ts":"2023-08-03T06:05:49.885Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:50.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.436Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:50.723Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.351Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.526Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.688Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:51.739Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDtSL2CrPxwKHygcEawPbmEgiqzJPRUEvTFC1bZaYppvM","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:05:51.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-03T06:05:51.901Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviation":true,"deltaC":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:04:59.000Z","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","Epoch":12,"Round":2},"deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","initialRound":false} -{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"leader":0,"round":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2} -{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","event":{"Epoch":12,"Round":2,"H":[203,249,215,232,75,17,54,31,73,249,43,4,33,131,104,95,139,252,141,153,140,131,47,124,153,176,202,210,231,154,29,40],"AttestedReport":{"Report":"ZMtDuwQAAQMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"uB4xuadLMTbddQvjjWH1/CtvyZiE5bjV6qwGAYb8L6MSYE6ybiTqjTfkx5TY3uEQ186yD9PMHpJj9+STHjo29AE=","Signer":0},{"Signature":"02395+MmLi8ttLxEaeONzS5DBiWrGElvPNxXI9F3aasP4pYkia4ATzpWZNSVoVm649IWzqfWva/SB8RSlZXxLAE=","Signer":4}]}},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":3},"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","reportEpochRound":{"Epoch":12,"Round":2},"latestAcceptedEpochRound":{"Epoch":12,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:05:51.902Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81"} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":0,"jobName":"","specID":1,"runTime":0.001416368} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","specID":1,"runTime":0.001549645} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"round":3,"observation":"CL+HraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"round":3,"msgRound":2,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","epoch":12,"round":3,"msgRound":2,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"round":2,"sender":4,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7"} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","sender":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":2} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":0,"msgEpoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","requiredObservationCount":3,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"round":3,"observationCount":1} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","oid":0,"epoch":12,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","round":3,"sender":1,"msgEpoch":12,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"observationCount":2,"requiredObservationCount":3,"leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","round":3,"sender":4,"msgEpoch":12,"msgRound":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} -{"level":"debug","ts":"2023-08-03T06:05:51.904Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","observationCount":3,"requiredObservationCount":3,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:51.905Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":3} -{"level":"debug","ts":"2023-08-03T06:05:51.905Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","leader":0,"configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"round":3,"sender":3,"msgEpoch":12,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:05:51.905Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0,"epoch":12,"leader":0} -{"level":"debug","ts":"2023-08-03T06:05:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:52","latency":"92.44µs"} -{"level":"debug","ts":"2023-08-03T06:05:52.199Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.201","errors":"","servedAt":"2023-08-03 06:05:52","latency":"94.411µs"} -{"level":"debug","ts":"2023-08-03T06:05:52.362Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:52.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042699}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:52.721Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:52.808Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:53.387Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:53.560Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042747}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:53.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:53.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy, result (config digest): 0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:53.889Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","reportingPlugin":"NumericalMedian","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","contractEpochRound":{"Epoch":12,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3}} -{"level":"info","ts":"2023-08-03T06:05:53.890Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-3dfddaf5-d091-48ac-8d48-b715c86a6a81","contractID":"41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","transmitterID":"GrEHsUuQciXtCACRH3GSWVnxHmFzNm2gDYnFc9GP8KDq","configDigest":"0003b0a280a997255f8c819d3efde5eeb2062ab671e5a67db78ee206e6f706d7","oid":0} -{"level":"debug","ts":"2023-08-03T06:05:54.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:54.608Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: DHpkQok2ydvfbxXdjdpX6SZtKue1ohLQM7YLgiWvkKL8, result: {5 1691042747}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-03T06:05:54.826Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: 41aqczim7J81icVLMxH7bXcaAB1AASFxPGKZTSyMUiEy","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log deleted file mode 100644 index 528fce700..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/qa-mock-adapter_0/qa-mock-adapter.log +++ /dev/null @@ -1,305 +0,0 @@ -5:56AM INF Starting external adapter Port=:6060 -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:57AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:58AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -5:59AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:00AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:01AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Five Endpoint=/five Result=5 -6:02AM INF Five Endpoint=/five Result=5 -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Index Endpoint=/ -6:02AM INF Five Endpoint=/five Result=5 -6:02AM INF Five Endpoint=/five Result=5 -6:02AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Index Endpoint=/ -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Index Endpoint=/ -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:03AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Index Endpoint=/ -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:04AM INF Five Endpoint=/five Result=5 -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Index Endpoint=/ -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Index Endpoint=/ -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Index Endpoint=/ -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 -6:05AM INF Five Endpoint=/five Result=5 diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log deleted file mode 100644 index eefa18a7f..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-24500-1691042738/sol_0/sol-val.log +++ /dev/null @@ -1,2248 +0,0 @@ -Ledger location: test-ledger -Log: test-ledger/validator.log -Initializing... -Waiting for fees to stabilize 1... -Waiting for fees to stabilize 2... -Connecting... -Identity: 5vyT24QtBF8szwq5H9V6zU3KovT1SVQzYVexiAmToTsj -Genesis Hash: EAPfNFhUk9oiCPSBxaz6thAzrCkewAB31yyApBahd7R4 -Version: 1.13.3 -Shred Version: 19542 -Gossip Address: 127.0.0.1:1024 -TPU Address: 127.0.0.1:1027 -JSON RPC URL: http://127.0.0.1:8899 -00:00:02 | Processed Slot: 1 | Confirmed Slot: 1 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 0 | ◎500.000000000 -00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 -00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 -00:00:02 | Processed Slot: 3 | Confirmed Slot: 3 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 2 | ◎499.999990000 -00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 -00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 -00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 -00:00:03 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 -00:00:04 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 -00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 -00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 -00:00:04 | Processed Slot: 8 | Confirmed Slot: 8 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 7 | ◎499.999965000 -00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 -00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 -00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 -00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999955000 -00:00:06 | Processed Slot: 11 | Confirmed Slot: 11 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999950000 -00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 -00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 -00:00:06 | Processed Slot: 13 | Confirmed Slot: 13 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 12 | ◎499.999940000 -00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 -00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 -00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 -00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 -00:00:08 | Processed Slot: 16 | Confirmed Slot: 16 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 15 | ◎499.999925000 -00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 -00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 -00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 -00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 -00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 -00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 -00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 -00:00:10 | Processed Slot: 21 | Confirmed Slot: 21 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 20 | ◎499.999900000 -00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 -00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 -00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 -00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 -00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 -00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 -00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 -00:00:12 | Processed Slot: 26 | Confirmed Slot: 26 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 25 | ◎499.999875000 -00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 -00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 -00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 -00:00:13 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 -00:00:13 | Processed Slot: 29 | Confirmed Slot: 29 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 28 | ◎499.999860000 -00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 -00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 -00:00:14 | Processed Slot: 31 | Confirmed Slot: 31 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 30 | ◎499.999850000 -00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 -00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 -00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 -00:00:15 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 -00:00:15 | Processed Slot: 34 | Confirmed Slot: 34 | Finalized Slot: 2 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 33 | ◎499.999835000 -00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 -00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 -00:00:16 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 -00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 -00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 -00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 -00:00:17 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 -00:00:17 | Processed Slot: 39 | Confirmed Slot: 39 | Finalized Slot: 7 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 38 | ◎499.999810000 -00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 -00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 -00:00:18 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 -00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 -00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 -00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 -00:00:19 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 -00:00:19 | Processed Slot: 44 | Confirmed Slot: 44 | Finalized Slot: 12 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 43 | ◎499.999785000 -00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 -00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 -00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 -00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 -00:00:20 | Processed Slot: 47 | Confirmed Slot: 47 | Finalized Slot: 15 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 46 | ◎499.999770000 -00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 -00:00:21 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 -00:00:21 | Processed Slot: 49 | Confirmed Slot: 49 | Finalized Slot: 17 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 48 | ◎499.999760000 -00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 -00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 -00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 -00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 -00:00:22 | Processed Slot: 52 | Confirmed Slot: 52 | Finalized Slot: 20 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 51 | ◎499.999745000 -00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 -00:00:23 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 -00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 -00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 -00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 -00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 -00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 -00:00:24 | Processed Slot: 57 | Confirmed Slot: 57 | Finalized Slot: 25 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 56 | ◎499.999720000 -00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 -00:00:25 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 -00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 -00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 -00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 -00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 -00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 -00:00:26 | Processed Slot: 62 | Confirmed Slot: 62 | Finalized Slot: 30 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 61 | ◎499.999695000 -00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 -00:00:27 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 -00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 -00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 -00:00:27 | Processed Slot: 65 | Confirmed Slot: 65 | Finalized Slot: 33 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 64 | ◎499.999680000 -00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 -00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 -00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 -00:00:28 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 -00:00:29 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 -00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 -00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 -00:00:29 | Processed Slot: 70 | Confirmed Slot: 70 | Finalized Slot: 38 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 69 | ◎499.999655000 -00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 -00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 -00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 -00:00:30 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 -00:00:31 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 -00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 -00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 -00:00:31 | Processed Slot: 75 | Confirmed Slot: 75 | Finalized Slot: 43 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 74 | ◎499.999630000 -00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 -00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 -00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 -00:00:32 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 -00:00:33 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 -00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 -00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 -00:00:33 | Processed Slot: 80 | Confirmed Slot: 80 | Finalized Slot: 48 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 79 | ◎499.999605000 -00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 -00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 -00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 -00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 -00:00:35 | Processed Slot: 83 | Confirmed Slot: 83 | Finalized Slot: 51 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 82 | ◎499.999590000 -00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 -00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 -00:00:35 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 -00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 -00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 -00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 -00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 -00:00:37 | Processed Slot: 88 | Confirmed Slot: 88 | Finalized Slot: 56 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 87 | ◎499.999565000 -00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 -00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 -00:00:37 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 -00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 -00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 -00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 -00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 -00:00:39 | Processed Slot: 93 | Confirmed Slot: 93 | Finalized Slot: 61 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 92 | ◎499.999540000 -00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 -00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 -00:00:39 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 -00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 -00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 -00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 -00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 -00:00:41 | Processed Slot: 98 | Confirmed Slot: 98 | Finalized Slot: 66 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 97 | ◎499.999515000 -00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 -00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 -00:00:41 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 -00:00:42 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 -00:00:42 | Processed Slot: 101 | Confirmed Slot: 101 | Finalized Slot: 69 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 100 | ◎499.999500000 -00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 -00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 -00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 -00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 -00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 -00:00:43 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 -00:00:44 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 -00:00:44 | Processed Slot: 106 | Confirmed Slot: 106 | Finalized Slot: 74 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 105 | ◎499.999475000 -00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 -00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 -00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 -00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 -00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 -00:00:45 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 -00:00:46 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 -00:00:46 | Processed Slot: 111 | Confirmed Slot: 111 | Finalized Slot: 79 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 110 | ◎499.999450000 -00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 -00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 -00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 -00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 -00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 -00:00:47 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 -00:00:48 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 -00:00:48 | Processed Slot: 116 | Confirmed Slot: 116 | Finalized Slot: 84 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 115 | ◎499.999425000 -00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 -00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 -00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 -00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 -00:00:49 | Processed Slot: 119 | Confirmed Slot: 119 | Finalized Slot: 87 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 118 | ◎499.999410000 -00:00:49 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 -00:00:50 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 -00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 -00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 -00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 -00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 -00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 -00:00:51 | Processed Slot: 124 | Confirmed Slot: 124 | Finalized Slot: 92 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 123 | ◎499.999385000 -00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 -00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 -00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 -00:00:52 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 -00:00:53 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 -00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 -00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 -00:00:53 | Processed Slot: 129 | Confirmed Slot: 129 | Finalized Slot: 97 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 128 | ◎499.999360000 -00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 -00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 -00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 -00:00:54 | Processed Slot: 132 | Confirmed Slot: 131 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999350000 -00:00:55 | Processed Slot: 132 | Confirmed Slot: 132 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999345000 -00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 -00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 -00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 133 | ◎499.999335000 -00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 -00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 -00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 -00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 -00:00:57 | Processed Slot: 137 | Confirmed Slot: 137 | Finalized Slot: 105 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 136 | ◎499.999320000 -00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 -00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 -00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 138 | ◎499.999310000 -00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999307500 -00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999307500 -00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999307500 -00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999307500 -00:00:59 | Processed Slot: 142 | Confirmed Slot: 142 | Finalized Slot: 110 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999305000 -00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 -00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 -00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999295000 -00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999290000 -00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999290000 -00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 -00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 -00:01:01 | Processed Slot: 147 | Confirmed Slot: 147 | Finalized Slot: 115 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999280000 -00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 -00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 -00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999270000 -00:01:02 | Processed Slot: 150 | Confirmed Slot: 149 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 153 | ◎499.999270000 -00:01:02 | Processed Slot: 150 | Confirmed Slot: 150 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 153 | ◎499.999265000 -00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 -00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 -00:01:03 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999255000 -00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 156 | ◎499.999250000 -00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 156 | ◎499.999250000 -00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 -00:01:04 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 -00:01:04 | Processed Slot: 155 | Confirmed Slot: 155 | Finalized Slot: 123 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 158 | ◎499.999240000 -00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 -00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 -00:01:05 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 -00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 -00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 -00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 -00:01:06 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 -00:01:06 | Processed Slot: 160 | Confirmed Slot: 160 | Finalized Slot: 128 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 163 | ◎499.999215000 -00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 -00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 -00:01:07 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 -00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 -00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 -00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 -00:01:08 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 -00:01:08 | Processed Slot: 165 | Confirmed Slot: 165 | Finalized Slot: 133 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 168 | ◎499.999190000 -00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 -00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 -00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 -00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 -00:01:09 | Processed Slot: 168 | Confirmed Slot: 168 | Finalized Slot: 136 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 171 | ◎499.999175000 -00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 -00:01:10 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 -00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 -00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 -00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 -00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 -00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 -00:01:11 | Processed Slot: 173 | Confirmed Slot: 173 | Finalized Slot: 141 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 176 | ◎499.999150000 -00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 -00:01:12 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 -00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 -00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 -00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 -00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 -00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 -00:01:13 | Processed Slot: 178 | Confirmed Slot: 178 | Finalized Slot: 146 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 181 | ◎499.999125000 -00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 -00:01:14 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 -00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 -00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 -00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 -00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 -00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 -00:01:15 | Processed Slot: 183 | Confirmed Slot: 183 | Finalized Slot: 151 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 186 | ◎499.999100000 -00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 -00:01:16 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 -00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 -00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 -00:01:16 | Processed Slot: 186 | Confirmed Slot: 186 | Finalized Slot: 154 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 189 | ◎499.999085000 -00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 -00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 -00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 -00:01:17 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 -00:01:18 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 -00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 -00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 -00:01:18 | Processed Slot: 191 | Confirmed Slot: 191 | Finalized Slot: 159 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 194 | ◎499.999060000 -00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 -00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 -00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 -00:01:19 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 -00:01:20 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 -00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 -00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 -00:01:20 | Processed Slot: 196 | Confirmed Slot: 196 | Finalized Slot: 164 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 199 | ◎499.999035000 -00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 -00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 -00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 -00:01:21 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 -00:01:22 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 -00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 -00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 -00:01:22 | Processed Slot: 201 | Confirmed Slot: 201 | Finalized Slot: 169 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 204 | ◎499.999010000 -00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 -00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 -00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 -00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 -00:01:24 | Processed Slot: 204 | Confirmed Slot: 204 | Finalized Slot: 172 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 207 | ◎499.998995000 -00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 -00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 -00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 -00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 -00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 -00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 -00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 -00:01:26 | Processed Slot: 209 | Confirmed Slot: 209 | Finalized Slot: 177 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 212 | ◎499.998970000 -00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 -00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 -00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 -00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 -00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 -00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 -00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 -00:01:28 | Processed Slot: 214 | Confirmed Slot: 214 | Finalized Slot: 182 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 217 | ◎499.998945000 -00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 -00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 -00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 -00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 -00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 -00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 -00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 -00:01:30 | Processed Slot: 219 | Confirmed Slot: 219 | Finalized Slot: 187 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 222 | ◎499.998920000 -00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 -00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 -00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 -00:01:31 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 -00:01:31 | Processed Slot: 222 | Confirmed Slot: 222 | Finalized Slot: 190 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 225 | ◎499.998905000 -00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 -00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 -00:01:32 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 -00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 -00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 -00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 -00:01:33 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 -00:01:33 | Processed Slot: 227 | Confirmed Slot: 227 | Finalized Slot: 195 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 230 | ◎499.998880000 -00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 -00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 -00:01:34 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 -00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 -00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 -00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 -00:01:35 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 -00:01:35 | Processed Slot: 232 | Confirmed Slot: 232 | Finalized Slot: 200 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 235 | ◎499.998855000 -00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 -00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 -00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 -00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 -00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 -00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 -00:01:37 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 -00:01:37 | Processed Slot: 237 | Confirmed Slot: 237 | Finalized Slot: 205 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 240 | ◎499.998830000 -00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998825000 -00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998825000 -00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 -00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 -00:01:38 | Processed Slot: 240 | Confirmed Slot: 240 | Finalized Slot: 208 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 243 | ◎499.998815000 -00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 -00:01:39 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 -00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998805000 -00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998800000 -00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998800000 -00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 -00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 -00:01:40 | Processed Slot: 245 | Confirmed Slot: 245 | Finalized Slot: 213 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 248 | ◎499.998790000 -00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 -00:01:41 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 -00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998780000 -00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998775000 -00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998775000 -00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 -00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 -00:01:42 | Processed Slot: 250 | Confirmed Slot: 250 | Finalized Slot: 218 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 253 | ◎499.998765000 -00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 -00:01:43 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 -00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998755000 -00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998750000 -00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998750000 -00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 -00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 -00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998740000 -00:01:44 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998735000 -00:01:45 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998735000 -00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 -00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 -00:01:45 | Processed Slot: 258 | Confirmed Slot: 258 | Finalized Slot: 226 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 261 | ◎499.998725000 -00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 -00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 -00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998715000 -00:01:46 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998710000 -00:01:47 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998710000 -00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 -00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 -00:01:47 | Processed Slot: 263 | Confirmed Slot: 263 | Finalized Slot: 231 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 266 | ◎499.998700000 -00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 -00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 -00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998690000 -00:01:48 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998685000 -00:01:49 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998685000 -00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 -00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 -00:01:49 | Processed Slot: 268 | Confirmed Slot: 268 | Finalized Slot: 236 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 271 | ◎499.998675000 -00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 -00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 -00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998665000 -00:01:50 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998660000 -00:01:51 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998660000 -00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 -00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 -00:01:51 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 276 | ◎499.998650000 -00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 277 | ◎499.998645000 -00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 277 | ◎499.998645000 -00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 -00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 -00:01:53 | Processed Slot: 276 | Confirmed Slot: 276 | Finalized Slot: 244 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 279 | ◎499.998635000 -00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 -00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 -00:01:53 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 281 | ◎499.998625000 -00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 282 | ◎499.998620000 -00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 282 | ◎499.998620000 -00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 -00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 -00:01:55 | Processed Slot: 281 | Confirmed Slot: 281 | Finalized Slot: 249 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 284 | ◎499.998610000 -00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 -00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 -00:01:55 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 286 | ◎499.998600000 -00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 287 | ◎499.998595000 -00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 287 | ◎499.998595000 -00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 -00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 -00:01:57 | Processed Slot: 286 | Confirmed Slot: 286 | Finalized Slot: 254 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 289 | ◎499.998585000 -00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 -00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 -00:01:57 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 291 | ◎499.998575000 -00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 292 | ◎499.998570000 -00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 292 | ◎499.998570000 -00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 -00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 -00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 294 | ◎499.998560000 -00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 295 | ◎499.998555000 -00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 295 | ◎499.998555000 -00:01:59 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 -00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 -00:02:00 | Processed Slot: 294 | Confirmed Slot: 294 | Finalized Slot: 262 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 297 | ◎499.998545000 -00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 -00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 -00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 299 | ◎499.998535000 -00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 300 | ◎499.998530000 -00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 300 | ◎499.998530000 -00:02:01 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 -00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 -00:02:02 | Processed Slot: 299 | Confirmed Slot: 299 | Finalized Slot: 267 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 302 | ◎499.998520000 -00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 -00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 -00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 304 | ◎499.998510000 -00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 305 | ◎499.998505000 -00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 305 | ◎499.998505000 -00:02:03 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 -00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 -00:02:04 | Processed Slot: 304 | Confirmed Slot: 304 | Finalized Slot: 272 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 307 | ◎499.998495000 -00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 -00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 -00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998485000 -00:02:05 | Processed Slot: 307 | Confirmed Slot: 306 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 310 | ◎499.998485000 -00:02:05 | Processed Slot: 307 | Confirmed Slot: 307 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 310 | ◎499.998480000 -00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 -00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 -00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 312 | ◎499.998470000 -00:02:06 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 313 | ◎499.998465000 -00:02:07 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 313 | ◎499.998465000 -00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 -00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 -00:02:07 | Processed Slot: 312 | Confirmed Slot: 312 | Finalized Slot: 280 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 315 | ◎499.998455000 -00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 -00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 -00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 317 | ◎499.998445000 -00:02:08 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 318 | ◎499.998440000 -00:02:09 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 318 | ◎499.998440000 -00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 -00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 -00:02:09 | Processed Slot: 317 | Confirmed Slot: 317 | Finalized Slot: 285 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 320 | ◎499.998430000 -00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 -00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 -00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 322 | ◎499.998420000 -00:02:10 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 323 | ◎499.998415000 -00:02:11 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 323 | ◎499.998415000 -00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 -00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 -00:02:11 | Processed Slot: 322 | Confirmed Slot: 322 | Finalized Slot: 290 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 325 | ◎499.998405000 -00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998400000 -00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998400000 -00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 327 | ◎499.998395000 -00:02:12 | Processed Slot: 325 | Confirmed Slot: 324 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 328 | ◎499.998395000 -00:02:13 | Processed Slot: 325 | Confirmed Slot: 325 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 328 | ◎499.998390000 -00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 -00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 -00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 330 | ◎499.998380000 -00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 331 | ◎499.998375000 -00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 331 | ◎499.998375000 -00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 -00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 -00:02:15 | Processed Slot: 330 | Confirmed Slot: 330 | Finalized Slot: 298 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 333 | ◎499.998365000 -00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 -00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 -00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 335 | ◎499.998355000 -00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 336 | ◎499.998350000 -00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 336 | ◎499.998350000 -00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 -00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 -00:02:17 | Processed Slot: 335 | Confirmed Slot: 335 | Finalized Slot: 303 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 338 | ◎499.998340000 -00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 -00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 -00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 340 | ◎499.998330000 -00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 341 | ◎499.998325000 -00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 341 | ◎499.998325000 -00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 -00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 -00:02:19 | Processed Slot: 340 | Confirmed Slot: 340 | Finalized Slot: 308 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 343 | ◎499.998315000 -00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998310000 -00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998310000 -00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 345 | ◎499.998305000 -00:02:20 | Processed Slot: 343 | Confirmed Slot: 342 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 346 | ◎499.998305000 -00:02:20 | Processed Slot: 343 | Confirmed Slot: 343 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 346 | ◎499.998300000 -00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 -00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 -00:02:21 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 348 | ◎499.998290000 -00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 349 | ◎499.998285000 -00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 349 | ◎499.998285000 -00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 -00:02:22 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 -00:02:22 | Processed Slot: 348 | Confirmed Slot: 348 | Finalized Slot: 316 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 351 | ◎499.998275000 -00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 -00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 -00:02:23 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 353 | ◎499.998265000 -00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 354 | ◎499.998260000 -00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 354 | ◎499.998260000 -00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 -00:02:24 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 -00:02:24 | Processed Slot: 353 | Confirmed Slot: 353 | Finalized Slot: 321 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 356 | ◎499.998250000 -00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 -00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 -00:02:25 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 358 | ◎499.998240000 -00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 359 | ◎499.998235000 -00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 359 | ◎499.998235000 -00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 -00:02:26 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 -00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 361 | ◎499.998225000 -00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 362 | ◎499.998220000 -00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 362 | ◎499.998220000 -00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 363 | ◎499.998215000 -00:02:27 | Processed Slot: 361 | Confirmed Slot: 360 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 364 | ◎499.998215000 -00:02:27 | Processed Slot: 361 | Confirmed Slot: 361 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 364 | ◎499.998210000 -00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 -00:02:28 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 -00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 366 | ◎499.998200000 -00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 367 | ◎499.998195000 -00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 367 | ◎499.998195000 -00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 -00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 -00:02:29 | Processed Slot: 366 | Confirmed Slot: 366 | Finalized Slot: 334 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 369 | ◎499.998185000 -00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 -00:02:30 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 -00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 371 | ◎499.998175000 -00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 372 | ◎499.998170000 -00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 372 | ◎499.998170000 -00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 -00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 -00:02:31 | Processed Slot: 371 | Confirmed Slot: 371 | Finalized Slot: 339 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 374 | ◎499.998160000 -00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 -00:02:32 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 -00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 376 | ◎499.998150000 -00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 377 | ◎499.998145000 -00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 377 | ◎499.998145000 -00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 -00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 -00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 379 | ◎499.998135000 -00:02:33 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 380 | ◎499.998130000 -00:02:34 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 380 | ◎499.998130000 -00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 381 | ◎499.998125000 -00:02:34 | Processed Slot: 379 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 382 | ◎499.998125000 -00:02:34 | Processed Slot: 379 | Confirmed Slot: 379 | Finalized Slot: 347 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 382 | ◎499.998120000 -00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 -00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 -00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 384 | ◎499.998110000 -00:02:35 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 385 | ◎499.998105000 -00:02:36 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 385 | ◎499.998105000 -00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 -00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 -00:02:36 | Processed Slot: 384 | Confirmed Slot: 384 | Finalized Slot: 352 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 387 | ◎499.998095000 -00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 -00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 -00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.998085000 -00:02:37 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 390 | ◎499.998080000 -00:02:38 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 390 | ◎499.998080000 -00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 -00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 -00:02:38 | Processed Slot: 389 | Confirmed Slot: 389 | Finalized Slot: 357 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 392 | ◎499.998070000 -00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 -00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 -00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 394 | ◎499.998060000 -00:02:39 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 395 | ◎499.998055000 -00:02:40 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 395 | ◎499.998055000 -00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 -00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 -00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 397 | ◎499.998045000 -00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 398 | ◎499.998040000 -00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 398 | ◎499.998040000 -00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 -00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 -00:02:42 | Processed Slot: 397 | Confirmed Slot: 397 | Finalized Slot: 365 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 400 | ◎499.998030000 -00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 -00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 -00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 402 | ◎499.998020000 -00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 403 | ◎499.998015000 -00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 403 | ◎499.998015000 -00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 -00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 -00:02:44 | Processed Slot: 402 | Confirmed Slot: 402 | Finalized Slot: 370 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 405 | ◎499.998005000 -00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 -00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 -00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 407 | ◎499.997995000 -00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 408 | ◎499.997990000 -00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 408 | ◎499.997990000 -00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 -00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 -00:02:46 | Processed Slot: 407 | Confirmed Slot: 407 | Finalized Slot: 375 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 410 | ◎499.997980000 -00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 -00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 -00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 412 | ◎499.997970000 -00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 413 | ◎499.997965000 -00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 413 | ◎499.997965000 -00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 -00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 -00:02:48 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 415 | ◎499.997955000 -00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 416 | ◎499.997950000 -00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 416 | ◎499.997950000 -00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 -00:02:49 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 -00:02:49 | Processed Slot: 415 | Confirmed Slot: 415 | Finalized Slot: 383 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 418 | ◎499.997940000 -00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 -00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 -00:02:50 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 420 | ◎499.997930000 -00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 421 | ◎499.997925000 -00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 421 | ◎499.997925000 -00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 -00:02:51 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 -00:02:51 | Processed Slot: 420 | Confirmed Slot: 420 | Finalized Slot: 388 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 423 | ◎499.997915000 -00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 -00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 -00:02:52 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 425 | ◎499.997905000 -00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 426 | ◎499.997900000 -00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 426 | ◎499.997900000 -00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 -00:02:53 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 -00:02:53 | Processed Slot: 425 | Confirmed Slot: 425 | Finalized Slot: 393 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 428 | ◎499.997890000 -00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 -00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 -00:02:54 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 430 | ◎499.997880000 -00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 431 | ◎499.997875000 -00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 431 | ◎499.997875000 -00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 -00:02:55 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 -00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.997865000 -00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 434 | ◎499.997860000 -00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 434 | ◎499.997860000 -00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 -00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 -00:02:56 | Processed Slot: 433 | Confirmed Slot: 433 | Finalized Slot: 401 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 436 | ◎499.997850000 -00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 -00:02:57 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 -00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 438 | ◎499.997840000 -00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 439 | ◎499.997835000 -00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 439 | ◎499.997835000 -00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 -00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 -00:02:58 | Processed Slot: 438 | Confirmed Slot: 438 | Finalized Slot: 406 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 441 | ◎499.997825000 -00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 -00:02:59 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 -00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 443 | ◎499.997815000 -00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 444 | ◎499.997810000 -00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 444 | ◎499.997810000 -00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 -00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 -00:03:00 | Processed Slot: 443 | Confirmed Slot: 443 | Finalized Slot: 411 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 446 | ◎499.997800000 -00:03:00 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997795000 -00:03:01 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997795000 -00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 448 | ◎499.997790000 -00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 449 | ◎499.997785000 -00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 449 | ◎499.997785000 -00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 -00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 -00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 451 | ◎499.997775000 -00:03:02 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 452 | ◎499.997770000 -00:03:03 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 452 | ◎499.997770000 -00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 -00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 -00:03:03 | Processed Slot: 451 | Confirmed Slot: 451 | Finalized Slot: 419 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 454 | ◎499.997760000 -00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 -00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 -00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 456 | ◎499.997750000 -00:03:04 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 457 | ◎499.997745000 -00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 457 | ◎499.997745000 -00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 -00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 -00:03:05 | Processed Slot: 456 | Confirmed Slot: 456 | Finalized Slot: 424 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 459 | ◎499.997735000 -00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 -00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 -00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 461 | ◎499.997725000 -00:03:06 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 462 | ◎499.997720000 -00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 462 | ◎499.997720000 -00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 -00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 -00:03:07 | Processed Slot: 461 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 464 | ◎499.997710000 -00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997705000 -00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997705000 -00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 466 | ◎499.997700000 -00:03:08 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 467 | ◎499.997695000 -00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 467 | ◎499.997695000 -00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 -00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 -00:03:09 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 469 | ◎499.997685000 -00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 470 | ◎499.997680000 -00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 470 | ◎499.997680000 -00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 -00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 -00:03:11 | Processed Slot: 469 | Confirmed Slot: 469 | Finalized Slot: 437 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 472 | ◎499.997670000 -00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 -00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 -00:03:11 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 474 | ◎499.997660000 -00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 475 | ◎499.997655000 -00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 475 | ◎499.997655000 -00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 -00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 -00:03:13 | Processed Slot: 474 | Confirmed Slot: 474 | Finalized Slot: 442 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 477 | ◎499.997645000 -00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 -00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 -00:03:13 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 479 | ◎499.997635000 -00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 480 | ◎499.997630000 -00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 480 | ◎499.997630000 -00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 -00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 -00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 482 | ◎499.997620000 -00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 483 | ◎499.997615000 -00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 483 | ◎499.997615000 -00:03:15 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 484 | ◎499.997610000 -00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 485 | ◎499.997605000 -00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 485 | ◎499.997605000 -00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 -00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 -00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 487 | ◎499.997595000 -00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 488 | ◎499.997590000 -00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 488 | ◎499.997590000 -00:03:17 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 -00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 -00:03:18 | Processed Slot: 487 | Confirmed Slot: 487 | Finalized Slot: 455 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 490 | ◎499.997580000 -00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 -00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 -00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 492 | ◎499.997570000 -00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 493 | ◎499.997565000 -00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 493 | ◎499.997565000 -00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 -00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 -00:03:20 | Processed Slot: 492 | Confirmed Slot: 492 | Finalized Slot: 460 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 495 | ◎499.997555000 -00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 -00:03:21 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 -00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 497 | ◎499.997545000 -00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 498 | ◎499.997540000 -00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 498 | ◎499.997540000 -00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 -00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 -00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 500 | ◎499.997530000 -00:03:22 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 501 | ◎499.997525000 -00:03:23 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 501 | ◎499.997525000 -00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 502 | ◎499.997520000 -00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 503 | ◎499.997515000 -00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 503 | ◎499.997515000 -00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 -00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 -00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 505 | ◎499.997505000 -00:03:24 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 506 | ◎499.997500000 -00:03:25 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 506 | ◎499.997500000 -00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 -00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 -00:03:25 | Processed Slot: 505 | Confirmed Slot: 505 | Finalized Slot: 473 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.997490000 -00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 -00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 -00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 510 | ◎499.997480000 -00:03:26 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 511 | ◎499.997475000 -00:03:27 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 511 | ◎499.997475000 -00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 -00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 -00:03:27 | Processed Slot: 510 | Confirmed Slot: 510 | Finalized Slot: 478 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 513 | ◎499.997465000 -00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 -00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 -00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 515 | ◎499.997455000 -00:03:28 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 516 | ◎499.997450000 -00:03:29 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 516 | ◎499.997450000 -00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 -00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 -00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 518 | ◎499.997440000 -00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 519 | ◎499.997435000 -00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 519 | ◎499.997435000 -00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 520 | ◎499.997430000 -00:03:30 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 521 | ◎499.997425000 -00:03:31 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 521 | ◎499.997425000 -00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 -00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 -00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 523 | ◎499.997415000 -00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 524 | ◎499.997410000 -00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 524 | ◎499.997410000 -00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 -00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 -00:03:33 | Processed Slot: 523 | Confirmed Slot: 523 | Finalized Slot: 491 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 526 | ◎499.997400000 -00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 -00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 -00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 528 | ◎499.997390000 -00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 529 | ◎499.997385000 -00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 529 | ◎499.997385000 -00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 -00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 -00:03:35 | Processed Slot: 528 | Confirmed Slot: 528 | Finalized Slot: 496 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 531 | ◎499.997375000 -00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 -00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 -00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 533 | ◎499.997365000 -00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 534 | ◎499.997360000 -00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 534 | ◎499.997360000 -00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 -00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 -00:03:37 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 536 | ◎499.997350000 -00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 537 | ◎499.997345000 -00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 537 | ◎499.997345000 -00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 538 | ◎499.997340000 -00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 539 | ◎499.997335000 -00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 539 | ◎499.997335000 -00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 -00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 -00:03:39 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 541 | ◎499.997325000 -00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 542 | ◎499.997320000 -00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 542 | ◎499.997320000 -00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 -00:03:40 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 -00:03:40 | Processed Slot: 541 | Confirmed Slot: 541 | Finalized Slot: 509 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 544 | ◎499.997310000 -00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 -00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 -00:03:41 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 546 | ◎499.997300000 -00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 547 | ◎499.997295000 -00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 547 | ◎499.997295000 -00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 -00:03:42 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 -00:03:42 | Processed Slot: 546 | Confirmed Slot: 546 | Finalized Slot: 514 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 549 | ◎499.997285000 -00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997280000 -00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997280000 -00:03:43 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 551 | ◎499.997275000 -00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 552 | ◎499.997270000 -00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 552 | ◎499.997270000 -00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 -00:03:44 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 -00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 554 | ◎499.997260000 -00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 555 | ◎499.997255000 -00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 555 | ◎499.997255000 -00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 556 | ◎499.997250000 -00:03:45 | Processed Slot: 554 | Confirmed Slot: 553 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 557 | ◎499.997245000 -00:03:45 | Processed Slot: 554 | Confirmed Slot: 554 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 557 | ◎499.997245000 -00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 -00:03:46 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 -00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 559 | ◎499.997235000 -00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 560 | ◎499.997230000 -00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 560 | ◎499.997230000 -00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 -00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 -00:03:47 | Processed Slot: 559 | Confirmed Slot: 559 | Finalized Slot: 527 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 562 | ◎499.997220000 -00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 -00:03:48 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 -00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 564 | ◎499.997210000 -00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 565 | ◎499.997205000 -00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 565 | ◎499.997205000 -00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 -00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 -00:03:49 | Processed Slot: 564 | Confirmed Slot: 564 | Finalized Slot: 532 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 567 | ◎499.997195000 -00:03:49 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997190000 -00:03:50 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997190000 -00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 569 | ◎499.997185000 -00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 570 | ◎499.997180000 -00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 570 | ◎499.997180000 -00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 -00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 -00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 572 | ◎499.997170000 -00:03:51 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 573 | ◎499.997165000 -00:03:52 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 573 | ◎499.997165000 -00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 574 | ◎499.997160000 -00:03:52 | Processed Slot: 572 | Confirmed Slot: 571 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 575 | ◎499.997160000 -00:03:52 | Processed Slot: 572 | Confirmed Slot: 572 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 575 | ◎499.997155000 -00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 -00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 -00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 577 | ◎499.997145000 -00:03:53 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 578 | ◎499.997140000 -00:03:54 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 578 | ◎499.997140000 -00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 -00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 -00:03:54 | Processed Slot: 577 | Confirmed Slot: 577 | Finalized Slot: 545 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 580 | ◎499.997130000 -00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 -00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 -00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 582 | ◎499.997120000 -00:03:55 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 583 | ◎499.997115000 -00:03:56 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 583 | ◎499.997115000 -00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 -00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 -00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 585 | ◎499.997105000 -00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 586 | ◎499.997100000 -00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 586 | ◎499.997100000 -00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 587 | ◎499.997095000 -00:03:57 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 588 | ◎499.997090000 -00:03:58 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 588 | ◎499.997090000 -00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 -00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 -00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 590 | ◎499.997080000 -00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 591 | ◎499.997075000 -00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 591 | ◎499.997075000 -00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 592 | ◎499.997070000 -00:03:59 | Processed Slot: 590 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 593 | ◎499.997070000 -00:04:00 | Processed Slot: 590 | Confirmed Slot: 590 | Finalized Slot: 558 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 593 | ◎499.997065000 -00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 -00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 -00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 595 | ◎499.997055000 -00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 596 | ◎499.997050000 -00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 596 | ◎499.997050000 -00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 -00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 -00:04:02 | Processed Slot: 595 | Confirmed Slot: 595 | Finalized Slot: 563 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 598 | ◎499.997040000 -00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 -00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 -00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 600 | ◎499.997030000 -00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 601 | ◎499.997025000 -00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 601 | ◎499.997025000 -00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 -00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 -00:04:04 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 603 | ◎499.997015000 -00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 604 | ◎499.997010000 -00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 604 | ◎499.997010000 -00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 605 | ◎499.997005000 -00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 606 | ◎499.997000000 -00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 606 | ◎499.997000000 -00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 -00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 -00:04:06 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 608 | ◎499.996990000 -00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 609 | ◎499.996985000 -00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 609 | ◎499.996985000 -00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 -00:04:07 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 -00:04:07 | Processed Slot: 608 | Confirmed Slot: 608 | Finalized Slot: 576 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 611 | ◎499.996975000 -00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 -00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 -00:04:08 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 613 | ◎499.996965000 -00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 614 | ◎499.996960000 -00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 614 | ◎499.996960000 -00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 -00:04:09 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 -00:04:09 | Processed Slot: 613 | Confirmed Slot: 613 | Finalized Slot: 581 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 616 | ◎499.996950000 -00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 -00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 -00:04:10 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 618 | ◎499.996940000 -00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 619 | ◎499.996935000 -00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 619 | ◎499.996935000 -00:04:10 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 -00:04:11 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 -00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 621 | ◎499.996925000 -00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 622 | ◎499.996920000 -00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 622 | ◎499.996920000 -00:04:12 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 623 | ◎499.996915000 -00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 624 | ◎499.996910000 -00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 624 | ◎499.996910000 -00:04:12 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 -00:04:13 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 -00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 626 | ◎499.996900000 -00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 627 | ◎499.996895000 -00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 627 | ◎499.996895000 -00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 -00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 -00:04:14 | Processed Slot: 626 | Confirmed Slot: 626 | Finalized Slot: 594 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 629 | ◎499.996885000 -00:04:14 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 -00:04:15 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 -00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 631 | ◎499.996875000 -00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 632 | ◎499.996870000 -00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 632 | ◎499.996870000 -00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 -00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 -00:04:16 | Processed Slot: 631 | Confirmed Slot: 631 | Finalized Slot: 599 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 634 | ◎499.996860000 -00:04:16 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 -00:04:17 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 -00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 636 | ◎499.996850000 -00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 637 | ◎499.996845000 -00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 637 | ◎499.996845000 -00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 -00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 -00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 639 | ◎499.996835000 -00:04:18 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 640 | ◎499.996830000 -00:04:19 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 640 | ◎499.996830000 -00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 641 | ◎499.996825000 -00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 642 | ◎499.996820000 -00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 642 | ◎499.996820000 -00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 -00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 -00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 644 | ◎499.996810000 -00:04:20 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 645 | ◎499.996805000 -00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 645 | ◎499.996805000 -00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 -00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 -00:04:21 | Processed Slot: 644 | Confirmed Slot: 644 | Finalized Slot: 612 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 647 | ◎499.996795000 -00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 -00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 -00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 649 | ◎499.996785000 -00:04:22 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 650 | ◎499.996780000 -00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 650 | ◎499.996780000 -00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 -00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 -00:04:23 | Processed Slot: 649 | Confirmed Slot: 649 | Finalized Slot: 617 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 652 | ◎499.996770000 -00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 -00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 -00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 654 | ◎499.996760000 -00:04:24 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 655 | ◎499.996755000 -00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 655 | ◎499.996755000 -00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 -00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 -00:04:25 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 657 | ◎499.996745000 -00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 658 | ◎499.996740000 -00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 658 | ◎499.996740000 -00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 659 | ◎499.996735000 -00:04:26 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 660 | ◎499.996730000 -00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 660 | ◎499.996730000 -00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 -00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 -00:04:27 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 662 | ◎499.996720000 -00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 663 | ◎499.996715000 -00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 663 | ◎499.996715000 -00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 -00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 -00:04:29 | Processed Slot: 662 | Confirmed Slot: 662 | Finalized Slot: 630 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 665 | ◎499.996705000 -00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 -00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 -00:04:29 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 667 | ◎499.996695000 -00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 668 | ◎499.996690000 -00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 668 | ◎499.996690000 -00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 -00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 -00:04:31 | Processed Slot: 667 | Confirmed Slot: 667 | Finalized Slot: 635 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 670 | ◎499.996680000 -00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996675000 -00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996675000 -00:04:31 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 672 | ◎499.996670000 -00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 673 | ◎499.996665000 -00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 673 | ◎499.996665000 -00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 -00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 -00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 675 | ◎499.996655000 -00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 676 | ◎499.996650000 -00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 676 | ◎499.996650000 -00:04:34 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 677 | ◎499.996645000 -00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 678 | ◎499.996640000 -00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 678 | ◎499.996640000 -00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 -00:04:35 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 -00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 680 | ◎499.996630000 -00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 681 | ◎499.996625000 -00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 681 | ◎499.996625000 -00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 -00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 -00:04:36 | Processed Slot: 680 | Confirmed Slot: 680 | Finalized Slot: 648 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 683 | ◎499.996615000 -00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 -00:04:37 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 -00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 685 | ◎499.996605000 -00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 686 | ◎499.996600000 -00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 686 | ◎499.996600000 -00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 -00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 -00:04:38 | Processed Slot: 685 | Confirmed Slot: 685 | Finalized Slot: 653 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 688 | ◎499.996590000 -00:04:38 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996585000 -00:04:39 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996585000 -00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 690 | ◎499.996580000 -00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 691 | ◎499.996575000 -00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 691 | ◎499.996575000 -00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 -00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 -00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 693 | ◎499.996565000 -00:04:40 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 694 | ◎499.996560000 -00:04:41 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 694 | ◎499.996560000 -00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 695 | ◎499.996555000 -00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 696 | ◎499.996550000 -00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 696 | ◎499.996550000 -00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 -00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 -00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 698 | ◎499.996540000 -00:04:42 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 699 | ◎499.996535000 -00:04:43 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 699 | ◎499.996535000 -00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 -00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 -00:04:43 | Processed Slot: 698 | Confirmed Slot: 698 | Finalized Slot: 666 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 701 | ◎499.996525000 -00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 -00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 -00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 703 | ◎499.996515000 -00:04:44 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 704 | ◎499.996510000 -00:04:45 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 704 | ◎499.996510000 -00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 -00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 -00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 706 | ◎499.996500000 -00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 707 | ◎499.996495000 -00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 707 | ◎499.996495000 -00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 708 | ◎499.996490000 -00:04:46 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 709 | ◎499.996485000 -00:04:47 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 709 | ◎499.996485000 -00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 -00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 -00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 711 | ◎499.996475000 -00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 712 | ◎499.996470000 -00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 712 | ◎499.996470000 -00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 713 | ◎499.996465000 -00:04:48 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 714 | ◎499.996460000 -00:04:49 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 714 | ◎499.996460000 -00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 -00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 -00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 716 | ◎499.996450000 -00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 717 | ◎499.996445000 -00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 717 | ◎499.996445000 -00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 -00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 -00:04:51 | Processed Slot: 716 | Confirmed Slot: 716 | Finalized Slot: 684 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 719 | ◎499.996435000 -00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 -00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 -00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 721 | ◎499.996425000 -00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 722 | ◎499.996420000 -00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 722 | ◎499.996420000 -00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 -00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 -00:04:53 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 724 | ◎499.996410000 -00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 725 | ◎499.996405000 -00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 725 | ◎499.996405000 -00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 726 | ◎499.996400000 -00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 727 | ◎499.996395000 -00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 727 | ◎499.996395000 -00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 -00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 -00:04:55 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 729 | ◎499.996385000 -00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 730 | ◎499.996380000 -00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 730 | ◎499.996380000 -00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 731 | ◎499.996375000 -00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 732 | ◎499.996370000 -00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 732 | ◎499.996370000 -00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 -00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 -00:04:57 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 734 | ◎499.996360000 -00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 735 | ◎499.996355000 -00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 735 | ◎499.996355000 -00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 -00:04:58 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 -00:04:58 | Processed Slot: 734 | Confirmed Slot: 734 | Finalized Slot: 702 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 737 | ◎499.996345000 -00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 -00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 -00:04:59 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 739 | ◎499.996335000 -00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 740 | ◎499.996330000 -00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 740 | ◎499.996330000 -00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 -00:05:00 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 -00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 742 | ◎499.996320000 -00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 743 | ◎499.996315000 -00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 743 | ◎499.996315000 -00:05:01 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 744 | ◎499.996310000 -00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 745 | ◎499.996305000 -00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 745 | ◎499.996305000 -00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 -00:05:02 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 -00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 747 | ◎499.996295000 -00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 748 | ◎499.996290000 -00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 748 | ◎499.996290000 -00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 749 | ◎499.996285000 -00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 750 | ◎499.996280000 -00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 750 | ◎499.996280000 -00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 -00:05:04 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 -00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 752 | ◎499.996270000 -00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 753 | ◎499.996265000 -00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 753 | ◎499.996265000 -00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 -00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 -00:05:05 | Processed Slot: 752 | Confirmed Slot: 752 | Finalized Slot: 720 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 755 | ◎499.996255000 -00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 -00:05:06 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 -00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 757 | ◎499.996245000 -00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 758 | ◎499.996240000 -00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 758 | ◎499.996240000 -00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 -00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 -00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 760 | ◎499.996230000 -00:05:07 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 761 | ◎499.996225000 -00:05:08 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 761 | ◎499.996225000 -00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 762 | ◎499.996220000 -00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 763 | ◎499.996215000 -00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 763 | ◎499.996215000 -00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 -00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 -00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 765 | ◎499.996205000 -00:05:09 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 766 | ◎499.996200000 -00:05:10 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 766 | ◎499.996200000 -00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 767 | ◎499.996195000 -00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 768 | ◎499.996190000 -00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 768 | ◎499.996190000 -00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 -00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 -00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 770 | ◎499.996180000 -00:05:11 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 771 | ◎499.996175000 -00:05:12 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 771 | ◎499.996175000 -00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 -00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 -00:05:12 | Processed Slot: 770 | Confirmed Slot: 770 | Finalized Slot: 738 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 773 | ◎499.996165000 -00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996160000 -00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996160000 -00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 775 | ◎499.996155000 -00:05:13 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 776 | ◎499.996150000 -00:05:14 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 776 | ◎499.996150000 -00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 -00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 -00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 778 | ◎499.996140000 -00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 779 | ◎499.996135000 -00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 779 | ◎499.996135000 -00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 780 | ◎499.996130000 -00:05:15 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 781 | ◎499.996125000 -00:05:16 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 781 | ◎499.996125000 -00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 -00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 -00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 783 | ◎499.996115000 -00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 784 | ◎499.996110000 -00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 784 | ◎499.996110000 -00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 785 | ◎499.996105000 -00:05:17 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 786 | ◎499.996100000 -00:05:18 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 786 | ◎499.996100000 -00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 -00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 -00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 788 | ◎499.996090000 -00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 789 | ◎499.996085000 -00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 789 | ◎499.996085000 -00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 -00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 -00:05:20 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 791 | ◎499.996075000 -00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 792 | ◎499.996070000 -00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 792 | ◎499.996070000 -00:05:20 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 793 | ◎499.996065000 -00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 794 | ◎499.996060000 -00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 794 | ◎499.996060000 -00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 -00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 -00:05:22 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 796 | ◎499.996050000 -00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 797 | ◎499.996045000 -00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 797 | ◎499.996045000 -00:05:22 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 798 | ◎499.996040000 -00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 799 | ◎499.996035000 -00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 799 | ◎499.996035000 -00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 -00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 -00:05:24 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 801 | ◎499.996025000 -00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 802 | ◎499.996020000 -00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 802 | ◎499.996020000 -00:05:24 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 803 | ◎499.996015000 -00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 804 | ◎499.996010000 -00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 804 | ◎499.996010000 -00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 -00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 -00:05:26 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 806 | ◎499.996000000 -00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 807 | ◎499.995995000 -00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 807 | ◎499.995995000 -00:05:26 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 -00:05:27 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 -00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 809 | ◎499.995985000 -00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 810 | ◎499.995980000 -00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 810 | ◎499.995980000 -00:05:28 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 811 | ◎499.995975000 -00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 812 | ◎499.995970000 -00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 812 | ◎499.995970000 -00:05:28 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 -00:05:29 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 -00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 814 | ◎499.995960000 -00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 815 | ◎499.995955000 -00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 815 | ◎499.995955000 -00:05:30 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 816 | ◎499.995950000 -00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 817 | ◎499.995945000 -00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 817 | ◎499.995945000 -00:05:30 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 -00:05:31 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 -00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 819 | ◎499.995935000 -00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 820 | ◎499.995930000 -00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 820 | ◎499.995930000 -00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 821 | ◎499.995925000 -00:05:32 | Processed Slot: 819 | Confirmed Slot: 818 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 822 | ◎499.995925000 -00:05:32 | Processed Slot: 819 | Confirmed Slot: 819 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 822 | ◎499.995920000 -00:05:32 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 -00:05:33 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 -00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 824 | ◎499.995910000 -00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 825 | ◎499.995905000 -00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 825 | ◎499.995905000 -00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 -00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 -00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 827 | ◎499.995895000 -00:05:34 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 828 | ◎499.995890000 -00:05:35 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 828 | ◎499.995890000 -00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 829 | ◎499.995885000 -00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 830 | ◎499.995880000 -00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 830 | ◎499.995880000 -00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 -00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 -00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 832 | ◎499.995870000 -00:05:36 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 833 | ◎499.995865000 -00:05:37 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 833 | ◎499.995865000 -00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 834 | ◎499.995860000 -00:05:37 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 835 | ◎499.995855000 -00:05:37 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 835 | ◎499.995855000 -00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 -00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 -00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 837 | ◎499.995845000 -00:05:38 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 838 | ◎499.995840000 -00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 838 | ◎499.995840000 -00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 839 | ◎499.995835000 -00:05:39 | Processed Slot: 837 | Confirmed Slot: 836 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 840 | ◎499.995835000 -00:05:39 | Processed Slot: 837 | Confirmed Slot: 837 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 840 | ◎499.995830000 -00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 -00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 -00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 842 | ◎499.995820000 -00:05:40 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 843 | ◎499.995815000 -00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 843 | ◎499.995815000 -00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 -00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 -00:05:41 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 845 | ◎499.995805000 -00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 846 | ◎499.995800000 -00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 846 | ◎499.995800000 -00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 847 | ◎499.995795000 -00:05:42 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 848 | ◎499.995790000 -00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 848 | ◎499.995790000 -00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 -00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 -00:05:43 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 850 | ◎499.995780000 -00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 851 | ◎499.995775000 -00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 851 | ◎499.995775000 -00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 852 | ◎499.995770000 -00:05:44 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 853 | ◎499.995765000 -00:05:45 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 853 | ◎499.995765000 -00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 -00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 -00:05:45 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 855 | ◎499.995755000 -00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 856 | ◎499.995750000 -00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 856 | ◎499.995750000 -00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 857 | ◎499.995745000 -00:05:47 | Processed Slot: 855 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 858 | ◎499.995745000 -00:05:47 | Processed Slot: 855 | Confirmed Slot: 855 | Finalized Slot: 823 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 858 | ◎499.995740000 -00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 -00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 -00:05:48 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 860 | ◎499.995730000 -00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 861 | ◎499.995725000 -00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 861 | ◎499.995725000 -00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 -00:05:49 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 -00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 863 | ◎499.995715000 -00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 864 | ◎499.995710000 -00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 864 | ◎499.995710000 -00:05:50 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 865 | ◎499.995705000 -00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 866 | ◎499.995700000 -00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 866 | ◎499.995700000 -00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 -00:05:51 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 -00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 868 | ◎499.995690000 -00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 869 | ◎499.995685000 -00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 869 | ◎499.995685000 -00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 870 | ◎499.995680000 -00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 871 | ◎499.995675000 -00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 871 | ◎499.995675000 -00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 -00:05:53 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 -00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 873 | ◎499.995665000 -00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 874 | ◎499.995660000 -00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 874 | ◎499.995660000 -00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 -00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 -00:05:54 | Processed Slot: 873 | Confirmed Slot: 873 | Finalized Slot: 841 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 876 | ◎499.995650000 -00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 -00:05:55 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 -00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 878 | ◎499.995640000 -00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 879 | ◎499.995635000 -00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 879 | ◎499.995635000 -00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 -00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 -00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 881 | ◎499.995625000 -00:05:56 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 882 | ◎499.995620000 -00:05:57 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 882 | ◎499.995620000 -00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 883 | ◎499.995615000 -00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 884 | ◎499.995610000 -00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 884 | ◎499.995610000 -00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 -00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 -00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 886 | ◎499.995600000 -00:05:58 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 887 | ◎499.995595000 -00:05:59 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 887 | ◎499.995595000 -00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 888 | ◎499.995590000 -00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 889 | ◎499.995585000 -00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 889 | ◎499.995585000 -00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 -00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 -00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 891 | ◎499.995575000 -00:06:00 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 892 | ◎499.995570000 -00:06:01 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 892 | ◎499.995570000 -00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 -00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 -00:06:01 | Processed Slot: 891 | Confirmed Slot: 891 | Finalized Slot: 859 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 894 | ◎499.995560000 -00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995555000 -00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995555000 -00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 896 | ◎499.995550000 -00:06:02 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 897 | ◎499.995545000 -00:06:03 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 897 | ◎499.995545000 -00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 -00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 -00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 899 | ◎499.995535000 -00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 900 | ◎499.995530000 -00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 900 | ◎499.995530000 -00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 901 | ◎499.995525000 -00:06:04 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 902 | ◎499.995520000 -00:06:05 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 902 | ◎499.995520000 -00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 -00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 -00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 904 | ◎499.995510000 -00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 905 | ◎499.995505000 -00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 905 | ◎499.995505000 -00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 906 | ◎499.995500000 -00:06:06 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 907 | ◎499.995495000 -00:06:07 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 907 | ◎499.995495000 -00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 -00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 -00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 909 | ◎499.995485000 -00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 910 | ◎499.995480000 -00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 910 | ◎499.995480000 -00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 -00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 -00:06:09 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 912 | ◎499.995470000 -00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 913 | ◎499.995465000 -00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 913 | ◎499.995465000 -00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 914 | ◎499.995460000 -00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 915 | ◎499.995455000 -00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 915 | ◎499.995455000 -00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 -00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 -00:06:11 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 917 | ◎499.995445000 -00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 918 | ◎499.995440000 -00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 918 | ◎499.995440000 -00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 919 | ◎499.995435000 -00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 920 | ◎499.995430000 -00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 920 | ◎499.995430000 -00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 -00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 -00:06:13 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 922 | ◎499.995420000 -00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 923 | ◎499.995415000 -00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 923 | ◎499.995415000 -00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 924 | ◎499.995410000 -00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 925 | ◎499.995405000 -00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 925 | ◎499.995405000 -00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 -00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 -00:06:15 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 927 | ◎499.995395000 -00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 928 | ◎499.995390000 -00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 928 | ◎499.995390000 -00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 -00:06:16 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 -00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 930 | ◎499.995380000 -00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 931 | ◎499.995375000 -00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 931 | ◎499.995375000 -00:06:17 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 932 | ◎499.995370000 -00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 933 | ◎499.995365000 -00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 933 | ◎499.995365000 -00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 -00:06:18 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 -00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 935 | ◎499.995355000 -00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 936 | ◎499.995350000 -00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 936 | ◎499.995350000 -00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 937 | ◎499.995345000 -00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 938 | ◎499.995340000 -00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 938 | ◎499.995340000 -00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 -00:06:20 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 -00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 940 | ◎499.995330000 -00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 941 | ◎499.995325000 -00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 941 | ◎499.995325000 -00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 942 | ◎499.995320000 -00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 943 | ◎499.995315000 -00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 943 | ◎499.995315000 -00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 -00:06:22 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 -00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 945 | ◎499.995305000 -00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 946 | ◎499.995300000 -00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 946 | ◎499.995300000 -00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 -00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 -00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 948 | ◎499.995290000 -00:06:23 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 949 | ◎499.995285000 -00:06:24 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 949 | ◎499.995285000 -00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 950 | ◎499.995280000 -00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 951 | ◎499.995275000 -00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 951 | ◎499.995275000 -00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 -00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 -00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 953 | ◎499.995265000 -00:06:25 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 954 | ◎499.995260000 -00:06:26 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 954 | ◎499.995260000 -00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 955 | ◎499.995255000 -00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 956 | ◎499.995250000 -00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 956 | ◎499.995250000 -00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 -00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 -00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 958 | ◎499.995240000 -00:06:27 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 959 | ◎499.995235000 -00:06:28 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 959 | ◎499.995235000 -00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 960 | ◎499.995230000 -00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 961 | ◎499.995225000 -00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 961 | ◎499.995225000 -00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 -00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 -00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 963 | ◎499.995215000 -00:06:29 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 964 | ◎499.995210000 -00:06:30 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 964 | ◎499.995210000 -00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 -00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 -00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 966 | ◎499.995200000 -00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 967 | ◎499.995195000 -00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 967 | ◎499.995195000 -00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 968 | ◎499.995190000 -00:06:31 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 969 | ◎499.995185000 -00:06:32 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 969 | ◎499.995185000 -00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 -00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 -00:06:32 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 971 | ◎499.995175000 -00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 972 | ◎499.995170000 -00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 972 | ◎499.995170000 -00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 973 | ◎499.995165000 -00:06:33 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 974 | ◎499.995160000 -00:06:34 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 974 | ◎499.995160000 -00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 -00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 -00:06:34 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 976 | ◎499.995150000 -00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 977 | ◎499.995145000 -00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 977 | ◎499.995145000 -00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 978 | ◎499.995140000 -00:06:35 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 979 | ◎499.995135000 -00:06:36 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 979 | ◎499.995135000 -00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 -00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 -00:06:36 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 981 | ◎499.995125000 -00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 982 | ◎499.995120000 -00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 982 | ◎499.995120000 -00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 -00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 -00:06:38 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 984 | ◎499.995110000 -00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 985 | ◎499.995105000 -00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 985 | ◎499.995105000 -00:06:38 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 986 | ◎499.995100000 -00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 987 | ◎499.995095000 -00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 987 | ◎499.995095000 -00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 -00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 -00:06:40 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 989 | ◎499.995085000 -00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 990 | ◎499.995080000 -00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 990 | ◎499.995080000 -00:06:40 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 991 | ◎499.995075000 -00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 992 | ◎499.995070000 -00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 992 | ◎499.995070000 -00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 -00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 -00:06:42 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 994 | ◎499.995060000 -00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 995 | ◎499.995055000 -00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 995 | ◎499.995055000 -00:06:42 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 996 | ◎499.995050000 -00:06:43 | Processed Slot: 994 | Confirmed Slot: 993 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 997 | ◎499.995050000 -00:06:43 | Processed Slot: 994 | Confirmed Slot: 994 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 997 | ◎499.995045000 -00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995040000 -00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995040000 -00:06:44 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 999 | ◎499.995035000 -00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1000 | ◎499.995030000 -00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1000 | ◎499.995030000 -00:06:44 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 -00:06:45 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 -00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1002 | ◎499.995020000 -00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎499.995015000 -00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎499.995015000 -00:06:46 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1004 | ◎499.995010000 -00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1005 | ◎499.995005000 -00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1005 | ◎499.995005000 -00:06:46 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 -00:06:47 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 -00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1007 | ◎499.994995000 -00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1008 | ◎499.994990000 -00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1008 | ◎499.994990000 -00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1009 | ◎499.994985000 -00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1010 | ◎499.994980000 -00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1010 | ◎499.994980000 -00:06:48 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 -00:06:49 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 -00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1012 | ◎499.994970000 -00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1013 | ◎499.994965000 -00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1013 | ◎499.994965000 -00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 -00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 -00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎499.994955000 -00:06:50 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1016 | ◎499.994950000 -00:06:51 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1016 | ◎499.994950000 -00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1017 | ◎499.994945000 -00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1018 | ◎499.994940000 -00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1018 | ◎499.994940000 -00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 -00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 -00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1020 | ◎499.994930000 -00:06:52 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1021 | ◎499.994925000 -00:06:53 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1021 | ◎499.994925000 -00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1022 | ◎499.994920000 -00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1023 | ◎499.994915000 -00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1023 | ◎499.994915000 -00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 -00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 -00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1025 | ◎499.994905000 -00:06:54 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1026 | ◎499.994900000 -00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1026 | ◎499.994900000 -00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1027 | ◎499.994895000 -00:06:55 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1028 | ◎499.994890000 -00:06:55 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1028 | ◎499.994890000 -00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 -00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 -00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1030 | ◎499.994880000 -00:06:56 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1031 | ◎499.994875000 -00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1031 | ◎499.994875000 -00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 -00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 -00:06:57 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1033 | ◎499.994865000 -00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1034 | ◎499.994860000 -00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1034 | ◎499.994860000 -00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1035 | ◎499.994855000 -00:06:58 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1036 | ◎499.994850000 -00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1036 | ◎499.994850000 -00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 -00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 -00:06:59 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1038 | ◎499.994840000 -00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1039 | ◎499.994835000 -00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1039 | ◎499.994835000 -00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1040 | ◎499.994830000 -00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1041 | ◎499.994825000 -00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1041 | ◎499.994825000 -00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 -00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 -00:07:02 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1043 | ◎499.994815000 -00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1044 | ◎499.994810000 -00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1044 | ◎499.994810000 -00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1045 | ◎499.994805000 -00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1046 | ◎499.994800000 -00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1046 | ◎499.994800000 -00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 -00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 -00:07:04 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1048 | ◎499.994790000 -00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1049 | ◎499.994785000 -00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1049 | ◎499.994785000 -00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 -00:07:05 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 -00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1051 | ◎499.994775000 -00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1052 | ◎499.994770000 -00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1052 | ◎499.994770000 -00:07:06 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1053 | ◎499.994765000 -00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1054 | ◎499.994760000 -00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1054 | ◎499.994760000 -00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 -00:07:07 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 -00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎499.994750000 -00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎499.994745000 -00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎499.994745000 -00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎499.994740000 -00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎499.994735000 -00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎499.994735000 -00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 -00:07:09 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 -00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎499.994725000 -00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎499.994720000 -00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎499.994720000 -00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎499.994715000 -00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎499.994710000 -00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎499.994710000 -00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 -00:07:11 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 -00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1066 | ◎499.994700000 -00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1067 | ◎499.994695000 -00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1067 | ◎499.994695000 -00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 -00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 -00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎499.994685000 -00:07:12 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1070 | ◎499.994680000 -00:07:13 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1070 | ◎499.994680000 -00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1071 | ◎499.994675000 -00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1072 | ◎499.994670000 -00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1072 | ◎499.994670000 -00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 -00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 -00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎499.994660000 -00:07:14 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1075 | ◎499.994655000 -00:07:15 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1075 | ◎499.994655000 -00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1076 | ◎499.994650000 -00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1077 | ◎499.994645000 -00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1077 | ◎499.994645000 -00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 -00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 -00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎499.994635000 -00:07:16 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1080 | ◎499.994630000 -00:07:17 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1080 | ◎499.994630000 -00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎499.994625000 -00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎499.994620000 -00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎499.994620000 -00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 -00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 -00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎499.994610000 -00:07:18 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎499.994605000 -00:07:19 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎499.994605000 -00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 -00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 -00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎499.994595000 -00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎499.994590000 -00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎499.994590000 -00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎499.994585000 -00:07:20 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎499.994580000 -00:07:21 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎499.994580000 -00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 -00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 -00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1092 | ◎499.994570000 -00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1093 | ◎499.994565000 -00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1093 | ◎499.994565000 -00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1094 | ◎499.994560000 -00:07:22 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1095 | ◎499.994555000 -00:07:23 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1095 | ◎499.994555000 -00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 -00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 -00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1097 | ◎499.994545000 -00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1098 | ◎499.994540000 -00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1098 | ◎499.994540000 -00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎499.994535000 -00:07:24 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1100 | ◎499.994530000 -00:07:25 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1100 | ◎499.994530000 -00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994525000 -00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994525000 -00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1102 | ◎499.994520000 -00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1103 | ◎499.994515000 -00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1103 | ◎499.994515000 -00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 -00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 -00:07:27 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1105 | ◎499.994505000 -00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1106 | ◎499.994500000 -00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1106 | ◎499.994500000 -00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1107 | ◎499.994495000 -00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎499.994490000 -00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎499.994490000 -00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 -00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 -00:07:29 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1110 | ◎499.994480000 -00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1111 | ◎499.994475000 -00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1111 | ◎499.994475000 -00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1112 | ◎499.994470000 -00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1113 | ◎499.994465000 -00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1113 | ◎499.994465000 -00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 -00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 -00:07:31 | Processed Slot: 1112 | Confirmed Slot: 1112 | Finalized Slot: 1080 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎499.994455000 -00:07:31 | Processed Slot: 1113 | Confirmed Slot: 1113 | Finalized Slot: 1081 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎499.994450000 -00:07:31 | Processed Slot: 1113 | Confirmed Slot: 1113 | Finalized Slot: 1081 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎499.994450000 -00:07:31 | Processed Slot: 1114 | Confirmed Slot: 1114 | Finalized Slot: 1082 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎499.994445000 -00:07:32 | Processed Slot: 1115 | Confirmed Slot: 1115 | Finalized Slot: 1083 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎499.994440000 -00:07:32 | Processed Slot: 1115 | Confirmed Slot: 1115 | Finalized Slot: 1083 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎499.994440000 -00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1116 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994435000 -00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1116 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994435000 -00:07:33 | Processed Slot: 1117 | Confirmed Slot: 1117 | Finalized Slot: 1085 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎499.994430000 -00:07:33 | Processed Slot: 1118 | Confirmed Slot: 1118 | Finalized Slot: 1086 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎499.994425000 -00:07:33 | Processed Slot: 1118 | Confirmed Slot: 1118 | Finalized Slot: 1086 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎499.994425000 -00:07:33 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 -00:07:34 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 -00:07:34 | Processed Slot: 1120 | Confirmed Slot: 1120 | Finalized Slot: 1088 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1123 | ◎499.994415000 -00:07:34 | Processed Slot: 1121 | Confirmed Slot: 1121 | Finalized Slot: 1089 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1124 | ◎499.994410000 -00:07:34 | Processed Slot: 1121 | Confirmed Slot: 1121 | Finalized Slot: 1089 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1124 | ◎499.994410000 -00:07:35 | Processed Slot: 1122 | Confirmed Slot: 1122 | Finalized Slot: 1090 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎499.994405000 -00:07:35 | Processed Slot: 1123 | Confirmed Slot: 1123 | Finalized Slot: 1091 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1126 | ◎499.994400000 -00:07:35 | Processed Slot: 1123 | Confirmed Slot: 1123 | Finalized Slot: 1091 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1126 | ◎499.994400000 -00:07:35 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 -00:07:36 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 -00:07:36 | Processed Slot: 1125 | Confirmed Slot: 1125 | Finalized Slot: 1093 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1128 | ◎499.994390000 -00:07:36 | Processed Slot: 1126 | Confirmed Slot: 1126 | Finalized Slot: 1094 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎499.994385000 -00:07:36 | Processed Slot: 1126 | Confirmed Slot: 1126 | Finalized Slot: 1094 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎499.994385000 -00:07:37 | Processed Slot: 1127 | Confirmed Slot: 1127 | Finalized Slot: 1095 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1130 | ◎499.994380000 -00:07:37 | Processed Slot: 1128 | Confirmed Slot: 1128 | Finalized Slot: 1096 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1131 | ◎499.994375000 -00:07:37 | Processed Slot: 1128 | Confirmed Slot: 1128 | Finalized Slot: 1096 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1131 | ◎499.994375000 -00:07:37 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 -00:07:38 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 -00:07:38 | Processed Slot: 1130 | Confirmed Slot: 1130 | Finalized Slot: 1098 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1133 | ◎499.994365000 -00:07:38 | Processed Slot: 1131 | Confirmed Slot: 1131 | Finalized Slot: 1099 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎499.994360000 -00:07:38 | Processed Slot: 1131 | Confirmed Slot: 1131 | Finalized Slot: 1099 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎499.994360000 -00:07:39 | Processed Slot: 1132 | Confirmed Slot: 1132 | Finalized Slot: 1100 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1135 | ◎499.994355000 -00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 -00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 -00:07:39 | Processed Slot: 1134 | Confirmed Slot: 1134 | Finalized Slot: 1102 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎499.994345000 -00:07:40 | Processed Slot: 1134 | Confirmed Slot: 1134 | Finalized Slot: 1102 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎499.994345000 -00:07:40 | Processed Slot: 1135 | Confirmed Slot: 1135 | Finalized Slot: 1103 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎499.994340000 -00:07:40 | Processed Slot: 1136 | Confirmed Slot: 1136 | Finalized Slot: 1104 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎499.994335000 -00:07:40 | Processed Slot: 1136 | Confirmed Slot: 1136 | Finalized Slot: 1104 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎499.994335000 -00:07:41 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 -00:07:41 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 -00:07:41 | Processed Slot: 1138 | Confirmed Slot: 1138 | Finalized Slot: 1106 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎499.994325000 -00:07:41 | Processed Slot: 1139 | Confirmed Slot: 1139 | Finalized Slot: 1107 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎499.994320000 -00:07:42 | Processed Slot: 1139 | Confirmed Slot: 1139 | Finalized Slot: 1107 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎499.994320000 -00:07:42 | Processed Slot: 1140 | Confirmed Slot: 1140 | Finalized Slot: 1108 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎499.994315000 -00:07:42 | Processed Slot: 1141 | Confirmed Slot: 1141 | Finalized Slot: 1109 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎499.994310000 -00:07:42 | Processed Slot: 1141 | Confirmed Slot: 1141 | Finalized Slot: 1109 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎499.994310000 -00:07:43 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 -00:07:43 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 -00:07:43 | Processed Slot: 1143 | Confirmed Slot: 1143 | Finalized Slot: 1111 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎499.994300000 -00:07:43 | Processed Slot: 1144 | Confirmed Slot: 1144 | Finalized Slot: 1112 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1147 | ◎499.994295000 -00:07:44 | Processed Slot: 1144 | Confirmed Slot: 1144 | Finalized Slot: 1112 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1147 | ◎499.994295000 -00:07:44 | Processed Slot: 1145 | Confirmed Slot: 1145 | Finalized Slot: 1113 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1148 | ◎499.994290000 -00:07:44 | Processed Slot: 1146 | Confirmed Slot: 1146 | Finalized Slot: 1114 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1149 | ◎499.994285000 -00:07:44 | Processed Slot: 1146 | Confirmed Slot: 1146 | Finalized Slot: 1114 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1149 | ◎499.994285000 -00:07:45 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 -00:07:45 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 -00:07:45 | Processed Slot: 1148 | Confirmed Slot: 1148 | Finalized Slot: 1116 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎499.994275000 -00:07:45 | Processed Slot: 1149 | Confirmed Slot: 1149 | Finalized Slot: 1117 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1152 | ◎499.994270000 -00:07:46 | Processed Slot: 1149 | Confirmed Slot: 1149 | Finalized Slot: 1117 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1152 | ◎499.994270000 -00:07:46 | Processed Slot: 1150 | Confirmed Slot: 1150 | Finalized Slot: 1118 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1153 | ◎499.994265000 -00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 -00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 -00:07:47 | Processed Slot: 1152 | Confirmed Slot: 1152 | Finalized Slot: 1120 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎499.994255000 -00:07:47 | Processed Slot: 1152 | Confirmed Slot: 1152 | Finalized Slot: 1120 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎499.994255000 -00:07:47 | Processed Slot: 1153 | Confirmed Slot: 1153 | Finalized Slot: 1121 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎499.994250000 -00:07:47 | Processed Slot: 1154 | Confirmed Slot: 1154 | Finalized Slot: 1122 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎499.994245000 -00:07:48 | Processed Slot: 1154 | Confirmed Slot: 1154 | Finalized Slot: 1122 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎499.994245000 -00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 -00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 -00:07:48 | Processed Slot: 1156 | Confirmed Slot: 1156 | Finalized Slot: 1124 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎499.994235000 -00:07:49 | Processed Slot: 1157 | Confirmed Slot: 1157 | Finalized Slot: 1125 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎499.994230000 -00:07:49 | Processed Slot: 1157 | Confirmed Slot: 1157 | Finalized Slot: 1125 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎499.994230000 -00:07:49 | Processed Slot: 1158 | Confirmed Slot: 1158 | Finalized Slot: 1126 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎499.994225000 -00:07:49 | Processed Slot: 1159 | Confirmed Slot: 1159 | Finalized Slot: 1127 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎499.994220000 -00:07:50 | Processed Slot: 1159 | Confirmed Slot: 1159 | Finalized Slot: 1127 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎499.994220000 -00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 -00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 -00:07:50 | Processed Slot: 1161 | Confirmed Slot: 1161 | Finalized Slot: 1129 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎499.994210000 -00:07:51 | Processed Slot: 1162 | Confirmed Slot: 1162 | Finalized Slot: 1130 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1165 | ◎499.994205000 -00:07:51 | Processed Slot: 1162 | Confirmed Slot: 1162 | Finalized Slot: 1130 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1165 | ◎499.994205000 -00:07:51 | Processed Slot: 1163 | Confirmed Slot: 1163 | Finalized Slot: 1131 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1166 | ◎499.994200000 -00:07:51 | Processed Slot: 1164 | Confirmed Slot: 1164 | Finalized Slot: 1132 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1167 | ◎499.994195000 -00:07:52 | Processed Slot: 1164 | Confirmed Slot: 1164 | Finalized Slot: 1132 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1167 | ◎499.994195000 -00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 -00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 -00:07:52 | Processed Slot: 1166 | Confirmed Slot: 1166 | Finalized Slot: 1134 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1169 | ◎499.994185000 -00:07:53 | Processed Slot: 1167 | Confirmed Slot: 1167 | Finalized Slot: 1135 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1170 | ◎499.994180000 -00:07:53 | Processed Slot: 1167 | Confirmed Slot: 1167 | Finalized Slot: 1135 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1170 | ◎499.994180000 -00:07:53 | Processed Slot: 1168 | Confirmed Slot: 1168 | Finalized Slot: 1136 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1171 | ◎499.994175000 -00:07:53 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 -00:07:54 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 -00:07:54 | Processed Slot: 1170 | Confirmed Slot: 1170 | Finalized Slot: 1138 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1173 | ◎499.994165000 -00:07:54 | Processed Slot: 1170 | Confirmed Slot: 1170 | Finalized Slot: 1138 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1173 | ◎499.994165000 -00:07:54 | Processed Slot: 1171 | Confirmed Slot: 1171 | Finalized Slot: 1139 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1174 | ◎499.994160000 -00:07:55 | Processed Slot: 1172 | Confirmed Slot: 1172 | Finalized Slot: 1140 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎499.994155000 -00:07:55 | Processed Slot: 1172 | Confirmed Slot: 1172 | Finalized Slot: 1140 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎499.994155000 -00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 -00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 -00:07:56 | Processed Slot: 1174 | Confirmed Slot: 1174 | Finalized Slot: 1142 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎499.994145000 -00:07:56 | Processed Slot: 1175 | Confirmed Slot: 1175 | Finalized Slot: 1143 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎499.994140000 -00:07:56 | Processed Slot: 1175 | Confirmed Slot: 1175 | Finalized Slot: 1143 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎499.994140000 -00:07:56 | Processed Slot: 1176 | Confirmed Slot: 1176 | Finalized Slot: 1144 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎499.994135000 -00:07:57 | Processed Slot: 1177 | Confirmed Slot: 1177 | Finalized Slot: 1145 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎499.994130000 -00:07:57 | Processed Slot: 1177 | Confirmed Slot: 1177 | Finalized Slot: 1145 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎499.994130000 -00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 -00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 -00:07:58 | Processed Slot: 1179 | Confirmed Slot: 1179 | Finalized Slot: 1147 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎499.994120000 -00:07:58 | Processed Slot: 1180 | Confirmed Slot: 1180 | Finalized Slot: 1148 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎499.994115000 -00:07:58 | Processed Slot: 1180 | Confirmed Slot: 1180 | Finalized Slot: 1148 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎499.994115000 -00:07:58 | Processed Slot: 1181 | Confirmed Slot: 1181 | Finalized Slot: 1149 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎499.994110000 -00:07:59 | Processed Slot: 1182 | Confirmed Slot: 1182 | Finalized Slot: 1150 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1185 | ◎499.994105000 -00:07:59 | Processed Slot: 1182 | Confirmed Slot: 1182 | Finalized Slot: 1150 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1185 | ◎499.994105000 -00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 -00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 -00:08:00 | Processed Slot: 1184 | Confirmed Slot: 1184 | Finalized Slot: 1152 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎499.994095000 -00:08:00 | Processed Slot: 1185 | Confirmed Slot: 1185 | Finalized Slot: 1153 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎499.994090000 -00:08:00 | Processed Slot: 1185 | Confirmed Slot: 1185 | Finalized Slot: 1153 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎499.994090000 -00:08:00 | Processed Slot: 1186 | Confirmed Slot: 1186 | Finalized Slot: 1154 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎499.994085000 -00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 -00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 -00:08:01 | Processed Slot: 1188 | Confirmed Slot: 1188 | Finalized Slot: 1156 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎499.994075000 -00:08:01 | Processed Slot: 1188 | Confirmed Slot: 1188 | Finalized Slot: 1156 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎499.994075000 -00:08:02 | Processed Slot: 1189 | Confirmed Slot: 1189 | Finalized Slot: 1157 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎499.994070000 -00:08:02 | Processed Slot: 1190 | Confirmed Slot: 1190 | Finalized Slot: 1158 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎499.994065000 -00:08:02 | Processed Slot: 1190 | Confirmed Slot: 1190 | Finalized Slot: 1158 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎499.994065000 -00:08:02 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 -00:08:03 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 -00:08:03 | Processed Slot: 1192 | Confirmed Slot: 1192 | Finalized Slot: 1160 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎499.994055000 -00:08:03 | Processed Slot: 1193 | Confirmed Slot: 1193 | Finalized Slot: 1161 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎499.994050000 -00:08:03 | Processed Slot: 1193 | Confirmed Slot: 1193 | Finalized Slot: 1161 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎499.994050000 -00:08:04 | Processed Slot: 1194 | Confirmed Slot: 1194 | Finalized Slot: 1162 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎499.994045000 -00:08:04 | Processed Slot: 1195 | Confirmed Slot: 1195 | Finalized Slot: 1163 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎499.994040000 -00:08:04 | Processed Slot: 1195 | Confirmed Slot: 1195 | Finalized Slot: 1163 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎499.994040000 -00:08:04 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 -00:08:05 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 -00:08:05 | Processed Slot: 1197 | Confirmed Slot: 1197 | Finalized Slot: 1165 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎499.994030000 -00:08:05 | Processed Slot: 1198 | Confirmed Slot: 1198 | Finalized Slot: 1166 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎499.994025000 -00:08:05 | Processed Slot: 1198 | Confirmed Slot: 1198 | Finalized Slot: 1166 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎499.994025000 -00:08:06 | Processed Slot: 1199 | Confirmed Slot: 1199 | Finalized Slot: 1167 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎499.994020000 -00:08:06 | Processed Slot: 1200 | Confirmed Slot: 1200 | Finalized Slot: 1168 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎499.994015000 -00:08:06 | Processed Slot: 1200 | Confirmed Slot: 1200 | Finalized Slot: 1168 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎499.994015000 -00:08:06 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 -00:08:07 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 -00:08:07 | Processed Slot: 1202 | Confirmed Slot: 1202 | Finalized Slot: 1170 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎499.994005000 -00:08:07 | Processed Slot: 1203 | Confirmed Slot: 1203 | Finalized Slot: 1171 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎499.994000000 -00:08:07 | Processed Slot: 1203 | Confirmed Slot: 1203 | Finalized Slot: 1171 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎499.994000000 -00:08:08 | Processed Slot: 1204 | Confirmed Slot: 1204 | Finalized Slot: 1172 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎499.993995000 -00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1204 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993995000 -00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1205 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993990000 -00:08:08 | Processed Slot: 1206 | Confirmed Slot: 1206 | Finalized Slot: 1174 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎499.993985000 -00:08:09 | Processed Slot: 1206 | Confirmed Slot: 1206 | Finalized Slot: 1174 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎499.993985000 -00:08:09 | Processed Slot: 1207 | Confirmed Slot: 1207 | Finalized Slot: 1175 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎499.993980000 -00:08:09 | Processed Slot: 1208 | Confirmed Slot: 1208 | Finalized Slot: 1176 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎499.993975000 -00:08:09 | Processed Slot: 1208 | Confirmed Slot: 1208 | Finalized Slot: 1176 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎499.993975000 -00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 -00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 -00:08:10 | Processed Slot: 1210 | Confirmed Slot: 1210 | Finalized Slot: 1178 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎499.993965000 -00:08:10 | Processed Slot: 1211 | Confirmed Slot: 1211 | Finalized Slot: 1179 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎499.993960000 -00:08:11 | Processed Slot: 1211 | Confirmed Slot: 1211 | Finalized Slot: 1179 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎499.993960000 -00:08:11 | Processed Slot: 1212 | Confirmed Slot: 1212 | Finalized Slot: 1180 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎499.993955000 -00:08:11 | Processed Slot: 1213 | Confirmed Slot: 1213 | Finalized Slot: 1181 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎499.993950000 -00:08:11 | Processed Slot: 1213 | Confirmed Slot: 1213 | Finalized Slot: 1181 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎499.993950000 -00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 -00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 -00:08:12 | Processed Slot: 1215 | Confirmed Slot: 1215 | Finalized Slot: 1183 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎499.993940000 -00:08:12 | Processed Slot: 1216 | Confirmed Slot: 1216 | Finalized Slot: 1184 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎499.993935000 -00:08:13 | Processed Slot: 1216 | Confirmed Slot: 1216 | Finalized Slot: 1184 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎499.993935000 -00:08:13 | Processed Slot: 1217 | Confirmed Slot: 1217 | Finalized Slot: 1185 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎499.993930000 -00:08:13 | Processed Slot: 1218 | Confirmed Slot: 1218 | Finalized Slot: 1186 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎499.993925000 -00:08:14 | Processed Slot: 1218 | Confirmed Slot: 1218 | Finalized Slot: 1186 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎499.993925000 -00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 -00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 -00:08:14 | Processed Slot: 1220 | Confirmed Slot: 1220 | Finalized Slot: 1188 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎499.993915000 -00:08:15 | Processed Slot: 1221 | Confirmed Slot: 1221 | Finalized Slot: 1189 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎499.993910000 -00:08:15 | Processed Slot: 1221 | Confirmed Slot: 1221 | Finalized Slot: 1189 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎499.993910000 -00:08:15 | Processed Slot: 1222 | Confirmed Slot: 1222 | Finalized Slot: 1190 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎499.993905000 -00:08:15 | Processed Slot: 1223 | Confirmed Slot: 1222 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993905000 -00:08:16 | Processed Slot: 1223 | Confirmed Slot: 1223 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993900000 -00:08:16 | Processed Slot: 1224 | Confirmed Slot: 1224 | Finalized Slot: 1192 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎499.993895000 -00:08:16 | Processed Slot: 1224 | Confirmed Slot: 1224 | Finalized Slot: 1192 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎499.993895000 -00:08:16 | Processed Slot: 1225 | Confirmed Slot: 1225 | Finalized Slot: 1193 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎499.993890000 -00:08:17 | Processed Slot: 1226 | Confirmed Slot: 1226 | Finalized Slot: 1194 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎499.993885000 -00:08:17 | Processed Slot: 1226 | Confirmed Slot: 1226 | Finalized Slot: 1194 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎499.993885000 -00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 -00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 -00:08:18 | Processed Slot: 1228 | Confirmed Slot: 1228 | Finalized Slot: 1196 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎499.993875000 -00:08:18 | Processed Slot: 1229 | Confirmed Slot: 1229 | Finalized Slot: 1197 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎499.993870000 -00:08:18 | Processed Slot: 1229 | Confirmed Slot: 1229 | Finalized Slot: 1197 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎499.993870000 -00:08:18 | Processed Slot: 1230 | Confirmed Slot: 1230 | Finalized Slot: 1198 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎499.993865000 -00:08:19 | Processed Slot: 1231 | Confirmed Slot: 1231 | Finalized Slot: 1199 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎499.993860000 -00:08:19 | Processed Slot: 1231 | Confirmed Slot: 1231 | Finalized Slot: 1199 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎499.993860000 -00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 -00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 -00:08:20 | Processed Slot: 1233 | Confirmed Slot: 1233 | Finalized Slot: 1201 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎499.993850000 -00:08:20 | Processed Slot: 1234 | Confirmed Slot: 1234 | Finalized Slot: 1202 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎499.993845000 -00:08:20 | Processed Slot: 1234 | Confirmed Slot: 1234 | Finalized Slot: 1202 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎499.993845000 -00:08:20 | Processed Slot: 1235 | Confirmed Slot: 1235 | Finalized Slot: 1203 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎499.993840000 -00:08:21 | Processed Slot: 1236 | Confirmed Slot: 1236 | Finalized Slot: 1204 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎499.993835000 -00:08:21 | Processed Slot: 1236 | Confirmed Slot: 1236 | Finalized Slot: 1204 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎499.993835000 -00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1237 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993830000 -00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1237 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993830000 -00:08:22 | Processed Slot: 1238 | Confirmed Slot: 1238 | Finalized Slot: 1206 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎499.993825000 -00:08:22 | Processed Slot: 1239 | Confirmed Slot: 1239 | Finalized Slot: 1207 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎499.993820000 -00:08:22 | Processed Slot: 1239 | Confirmed Slot: 1239 | Finalized Slot: 1207 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎499.993820000 -00:08:22 | Processed Slot: 1240 | Confirmed Slot: 1240 | Finalized Slot: 1208 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎499.993815000 -00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1240 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993815000 -00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1241 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993810000 -00:08:23 | Processed Slot: 1242 | Confirmed Slot: 1242 | Finalized Slot: 1210 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎499.993805000 -00:08:23 | Processed Slot: 1242 | Confirmed Slot: 1242 | Finalized Slot: 1210 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎499.993805000 -00:08:24 | Processed Slot: 1243 | Confirmed Slot: 1243 | Finalized Slot: 1211 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎499.993800000 -00:08:24 | Processed Slot: 1244 | Confirmed Slot: 1244 | Finalized Slot: 1212 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎499.993795000 -00:08:24 | Processed Slot: 1244 | Confirmed Slot: 1244 | Finalized Slot: 1212 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎499.993795000 -00:08:24 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 -00:08:25 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 -00:08:25 | Processed Slot: 1246 | Confirmed Slot: 1246 | Finalized Slot: 1214 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎499.993785000 -00:08:25 | Processed Slot: 1247 | Confirmed Slot: 1247 | Finalized Slot: 1215 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎499.993780000 -00:08:25 | Processed Slot: 1247 | Confirmed Slot: 1247 | Finalized Slot: 1215 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎499.993780000 -00:08:26 | Processed Slot: 1248 | Confirmed Slot: 1248 | Finalized Slot: 1216 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎499.993775000 -00:08:26 | Processed Slot: 1249 | Confirmed Slot: 1249 | Finalized Slot: 1217 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎499.993770000 -00:08:26 | Processed Slot: 1249 | Confirmed Slot: 1249 | Finalized Slot: 1217 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎499.993770000 -00:08:26 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 -00:08:27 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 -00:08:27 | Processed Slot: 1251 | Confirmed Slot: 1251 | Finalized Slot: 1219 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎499.993760000 -00:08:27 | Processed Slot: 1252 | Confirmed Slot: 1252 | Finalized Slot: 1220 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎499.993755000 -00:08:27 | Processed Slot: 1252 | Confirmed Slot: 1252 | Finalized Slot: 1220 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎499.993755000 -00:08:28 | Processed Slot: 1253 | Confirmed Slot: 1253 | Finalized Slot: 1221 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎499.993750000 -00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 -00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 -00:08:28 | Processed Slot: 1255 | Confirmed Slot: 1255 | Finalized Slot: 1223 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎499.993740000 -00:08:29 | Processed Slot: 1255 | Confirmed Slot: 1255 | Finalized Slot: 1223 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎499.993740000 -00:08:29 | Processed Slot: 1256 | Confirmed Slot: 1256 | Finalized Slot: 1224 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎499.993735000 -00:08:29 | Processed Slot: 1257 | Confirmed Slot: 1257 | Finalized Slot: 1225 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎499.993730000 -00:08:29 | Processed Slot: 1257 | Confirmed Slot: 1257 | Finalized Slot: 1225 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎499.993730000 -00:08:30 | Processed Slot: 1258 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎499.993725000 -00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993725000 -00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1259 | Finalized Slot: 1227 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993720000 -00:08:30 | Processed Slot: 1260 | Confirmed Slot: 1260 | Finalized Slot: 1228 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎499.993715000 -00:08:31 | Processed Slot: 1260 | Confirmed Slot: 1260 | Finalized Slot: 1228 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎499.993715000 -00:08:31 | Processed Slot: 1261 | Confirmed Slot: 1261 | Finalized Slot: 1229 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎499.993710000 -00:08:31 | Processed Slot: 1262 | Confirmed Slot: 1262 | Finalized Slot: 1230 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎499.993705000 -00:08:31 | Processed Slot: 1262 | Confirmed Slot: 1262 | Finalized Slot: 1230 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎499.993705000 -00:08:32 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 -00:08:32 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 -00:08:32 | Processed Slot: 1264 | Confirmed Slot: 1264 | Finalized Slot: 1232 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎499.993695000 -00:08:32 | Processed Slot: 1265 | Confirmed Slot: 1265 | Finalized Slot: 1233 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎499.993690000 -00:08:33 | Processed Slot: 1265 | Confirmed Slot: 1265 | Finalized Slot: 1233 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎499.993690000 -00:08:33 | Processed Slot: 1266 | Confirmed Slot: 1266 | Finalized Slot: 1234 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎499.993685000 -00:08:33 | Processed Slot: 1267 | Confirmed Slot: 1267 | Finalized Slot: 1235 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎499.993680000 -00:08:33 | Processed Slot: 1267 | Confirmed Slot: 1267 | Finalized Slot: 1235 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎499.993680000 -00:08:34 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 -00:08:34 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 -00:08:34 | Processed Slot: 1269 | Confirmed Slot: 1269 | Finalized Slot: 1237 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎499.993670000 -00:08:34 | Processed Slot: 1270 | Confirmed Slot: 1270 | Finalized Slot: 1238 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎499.993665000 -00:08:35 | Processed Slot: 1270 | Confirmed Slot: 1270 | Finalized Slot: 1238 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎499.993665000 -00:08:35 | Processed Slot: 1271 | Confirmed Slot: 1271 | Finalized Slot: 1239 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎499.993660000 -00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 -00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 -00:08:36 | Processed Slot: 1273 | Confirmed Slot: 1273 | Finalized Slot: 1241 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎499.993650000 -00:08:36 | Processed Slot: 1273 | Confirmed Slot: 1273 | Finalized Slot: 1241 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎499.993650000 -00:08:36 | Processed Slot: 1274 | Confirmed Slot: 1274 | Finalized Slot: 1242 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎499.993645000 -00:08:36 | Processed Slot: 1275 | Confirmed Slot: 1275 | Finalized Slot: 1243 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎499.993640000 -00:08:37 | Processed Slot: 1275 | Confirmed Slot: 1275 | Finalized Slot: 1243 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎499.993640000 -00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 -00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 -00:08:37 | Processed Slot: 1277 | Confirmed Slot: 1277 | Finalized Slot: 1245 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎499.993630000 -00:08:38 | Processed Slot: 1278 | Confirmed Slot: 1278 | Finalized Slot: 1246 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎499.993625000 -00:08:38 | Processed Slot: 1278 | Confirmed Slot: 1278 | Finalized Slot: 1246 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎499.993625000 -00:08:38 | Processed Slot: 1279 | Confirmed Slot: 1279 | Finalized Slot: 1247 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎499.993620000 -00:08:38 | Processed Slot: 1280 | Confirmed Slot: 1280 | Finalized Slot: 1248 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎499.993615000 -00:08:39 | Processed Slot: 1280 | Confirmed Slot: 1280 | Finalized Slot: 1248 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎499.993615000 -00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 -00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 -00:08:39 | Processed Slot: 1282 | Confirmed Slot: 1282 | Finalized Slot: 1250 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎499.993605000 -00:08:40 | Processed Slot: 1283 | Confirmed Slot: 1283 | Finalized Slot: 1251 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎499.993600000 -00:08:40 | Processed Slot: 1283 | Confirmed Slot: 1283 | Finalized Slot: 1251 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎499.993600000 -00:08:40 | Processed Slot: 1284 | Confirmed Slot: 1284 | Finalized Slot: 1252 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎499.993595000 -00:08:40 | Processed Slot: 1285 | Confirmed Slot: 1285 | Finalized Slot: 1253 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎499.993590000 -00:08:41 | Processed Slot: 1285 | Confirmed Slot: 1285 | Finalized Slot: 1253 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎499.993590000 -00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 -00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 -00:08:41 | Processed Slot: 1287 | Confirmed Slot: 1287 | Finalized Slot: 1255 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎499.993580000 -00:08:42 | Processed Slot: 1288 | Confirmed Slot: 1288 | Finalized Slot: 1256 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎499.993575000 -00:08:42 | Processed Slot: 1288 | Confirmed Slot: 1288 | Finalized Slot: 1256 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎499.993575000 -00:08:42 | Processed Slot: 1289 | Confirmed Slot: 1289 | Finalized Slot: 1257 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎499.993570000 -00:08:42 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 -00:08:43 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 -00:08:43 | Processed Slot: 1291 | Confirmed Slot: 1291 | Finalized Slot: 1259 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎499.993560000 -00:08:43 | Processed Slot: 1291 | Confirmed Slot: 1291 | Finalized Slot: 1259 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎499.993560000 -00:08:43 | Processed Slot: 1292 | Confirmed Slot: 1292 | Finalized Slot: 1260 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎499.993555000 -00:08:44 | Processed Slot: 1293 | Confirmed Slot: 1293 | Finalized Slot: 1261 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎499.993550000 -00:08:44 | Processed Slot: 1293 | Confirmed Slot: 1293 | Finalized Slot: 1261 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎499.993550000 -00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 -00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 -00:08:45 | Processed Slot: 1295 | Confirmed Slot: 1295 | Finalized Slot: 1263 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎499.993540000 -00:08:45 | Processed Slot: 1296 | Confirmed Slot: 1296 | Finalized Slot: 1264 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎499.993535000 -00:08:45 | Processed Slot: 1296 | Confirmed Slot: 1296 | Finalized Slot: 1264 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎499.993535000 -00:08:45 | Processed Slot: 1297 | Confirmed Slot: 1297 | Finalized Slot: 1265 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎499.993530000 -00:08:46 | Processed Slot: 1298 | Confirmed Slot: 1298 | Finalized Slot: 1266 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎499.993525000 -00:08:46 | Processed Slot: 1298 | Confirmed Slot: 1298 | Finalized Slot: 1266 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎499.993525000 -00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 -00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 -00:08:47 | Processed Slot: 1300 | Confirmed Slot: 1300 | Finalized Slot: 1268 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎499.993515000 -00:08:47 | Processed Slot: 1301 | Confirmed Slot: 1301 | Finalized Slot: 1269 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎499.993510000 -00:08:47 | Processed Slot: 1301 | Confirmed Slot: 1301 | Finalized Slot: 1269 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎499.993510000 -00:08:47 | Processed Slot: 1302 | Confirmed Slot: 1302 | Finalized Slot: 1270 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎499.993505000 -00:08:48 | Processed Slot: 1303 | Confirmed Slot: 1303 | Finalized Slot: 1271 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎499.993500000 -00:08:48 | Processed Slot: 1303 | Confirmed Slot: 1303 | Finalized Slot: 1271 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎499.993500000 -00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 -00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 -00:08:49 | Processed Slot: 1305 | Confirmed Slot: 1305 | Finalized Slot: 1273 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎499.993490000 -00:08:49 | Processed Slot: 1306 | Confirmed Slot: 1306 | Finalized Slot: 1274 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎499.993485000 -00:08:49 | Processed Slot: 1306 | Confirmed Slot: 1306 | Finalized Slot: 1274 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎499.993485000 -00:08:49 | Processed Slot: 1307 | Confirmed Slot: 1307 | Finalized Slot: 1275 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎499.993480000 -00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 -00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 -00:08:50 | Processed Slot: 1309 | Confirmed Slot: 1309 | Finalized Slot: 1277 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎499.993470000 -00:08:50 | Processed Slot: 1309 | Confirmed Slot: 1309 | Finalized Slot: 1277 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎499.993470000 -00:08:51 | Processed Slot: 1310 | Confirmed Slot: 1310 | Finalized Slot: 1278 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎499.993465000 -00:08:51 | Processed Slot: 1311 | Confirmed Slot: 1311 | Finalized Slot: 1279 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎499.993460000 -00:08:51 | Processed Slot: 1311 | Confirmed Slot: 1311 | Finalized Slot: 1279 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎499.993460000 -00:08:51 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 -00:08:52 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 -00:08:52 | Processed Slot: 1313 | Confirmed Slot: 1313 | Finalized Slot: 1281 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎499.993450000 -00:08:52 | Processed Slot: 1314 | Confirmed Slot: 1314 | Finalized Slot: 1282 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎499.993445000 -00:08:52 | Processed Slot: 1314 | Confirmed Slot: 1314 | Finalized Slot: 1282 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎499.993445000 -00:08:53 | Processed Slot: 1315 | Confirmed Slot: 1315 | Finalized Slot: 1283 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎499.993440000 -00:08:53 | Processed Slot: 1316 | Confirmed Slot: 1316 | Finalized Slot: 1284 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎499.993435000 -00:08:53 | Processed Slot: 1316 | Confirmed Slot: 1316 | Finalized Slot: 1284 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎499.993435000 -00:08:53 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 -00:08:54 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 -00:08:54 | Processed Slot: 1318 | Confirmed Slot: 1318 | Finalized Slot: 1286 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎499.993425000 -00:08:54 | Processed Slot: 1319 | Confirmed Slot: 1319 | Finalized Slot: 1287 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎499.993420000 -00:08:54 | Processed Slot: 1319 | Confirmed Slot: 1319 | Finalized Slot: 1287 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎499.993420000 -00:08:55 | Processed Slot: 1320 | Confirmed Slot: 1320 | Finalized Slot: 1288 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎499.993415000 -00:08:55 | Processed Slot: 1321 | Confirmed Slot: 1321 | Finalized Slot: 1289 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎499.993410000 -00:08:55 | Processed Slot: 1321 | Confirmed Slot: 1321 | Finalized Slot: 1289 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎499.993410000 -00:08:55 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 -00:08:56 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 -00:08:56 | Processed Slot: 1323 | Confirmed Slot: 1323 | Finalized Slot: 1291 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎499.993400000 -00:08:56 | Processed Slot: 1324 | Confirmed Slot: 1324 | Finalized Slot: 1292 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎499.993395000 -00:08:56 | Processed Slot: 1324 | Confirmed Slot: 1324 | Finalized Slot: 1292 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎499.993395000 -00:08:57 | Processed Slot: 1325 | Confirmed Slot: 1325 | Finalized Slot: 1293 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎499.993390000 -00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 -00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 -00:08:57 | Processed Slot: 1327 | Confirmed Slot: 1327 | Finalized Slot: 1295 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎499.993380000 -00:08:58 | Processed Slot: 1327 | Confirmed Slot: 1327 | Finalized Slot: 1295 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎499.993380000 -00:08:58 | Processed Slot: 1328 | Confirmed Slot: 1328 | Finalized Slot: 1296 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎499.993375000 -00:08:58 | Processed Slot: 1329 | Confirmed Slot: 1329 | Finalized Slot: 1297 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎499.993370000 -00:08:58 | Processed Slot: 1329 | Confirmed Slot: 1329 | Finalized Slot: 1297 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎499.993370000 -00:08:59 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 -00:08:59 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 -00:08:59 | Processed Slot: 1331 | Confirmed Slot: 1331 | Finalized Slot: 1299 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎499.993360000 -00:08:59 | Processed Slot: 1332 | Confirmed Slot: 1332 | Finalized Slot: 1300 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎499.993355000 -00:09:00 | Processed Slot: 1332 | Confirmed Slot: 1332 | Finalized Slot: 1300 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎499.993355000 -00:09:00 | Processed Slot: 1333 | Confirmed Slot: 1333 | Finalized Slot: 1301 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎499.993350000 -00:09:00 | Processed Slot: 1334 | Confirmed Slot: 1334 | Finalized Slot: 1302 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎499.993345000 -00:09:00 | Processed Slot: 1334 | Confirmed Slot: 1334 | Finalized Slot: 1302 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎499.993345000 -00:09:01 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 -00:09:01 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 -00:09:01 | Processed Slot: 1336 | Confirmed Slot: 1336 | Finalized Slot: 1304 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎499.993335000 -00:09:01 | Processed Slot: 1337 | Confirmed Slot: 1337 | Finalized Slot: 1305 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎499.993330000 -00:09:02 | Processed Slot: 1337 | Confirmed Slot: 1337 | Finalized Slot: 1305 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎499.993330000 -00:09:02 | Processed Slot: 1338 | Confirmed Slot: 1338 | Finalized Slot: 1306 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎499.993325000 -00:09:02 | Processed Slot: 1339 | Confirmed Slot: 1339 | Finalized Slot: 1307 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎499.993320000 -00:09:02 | Processed Slot: 1339 | Confirmed Slot: 1339 | Finalized Slot: 1307 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎499.993320000 -00:09:03 | Processed Slot: 1340 | Confirmed Slot: 1340 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 -00:09:03 | Processed Slot: 1340 | Confirmed Slot: 1340 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 -00:09:03 | Processed Slot: 1341 | Confirmed Slot: 1341 | Finalized Slot: 1309 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎499.993310000 -00:09:03 | Processed Slot: 1342 | Confirmed Slot: 1342 | Finalized Slot: 1310 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎499.993305000 -00:09:04 | Processed Slot: 1342 | Confirmed Slot: 1342 | Finalized Slot: 1310 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎499.993305000 -00:09:04 | Processed Slot: 1343 | Confirmed Slot: 1343 | Finalized Slot: 1311 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎499.993300000 -00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 -00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 -00:09:05 | Processed Slot: 1345 | Confirmed Slot: 1345 | Finalized Slot: 1313 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎499.993290000 -00:09:05 | Processed Slot: 1345 | Confirmed Slot: 1345 | Finalized Slot: 1313 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎499.993290000 -00:09:05 | Processed Slot: 1346 | Confirmed Slot: 1346 | Finalized Slot: 1314 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎499.993285000 -00:09:05 | Processed Slot: 1347 | Confirmed Slot: 1347 | Finalized Slot: 1315 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎499.993280000 -00:09:06 | Processed Slot: 1347 | Confirmed Slot: 1347 | Finalized Slot: 1315 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎499.993280000 -00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 -00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 -00:09:06 | Processed Slot: 1349 | Confirmed Slot: 1349 | Finalized Slot: 1317 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎499.993270000 -00:09:07 | Processed Slot: 1350 | Confirmed Slot: 1350 | Finalized Slot: 1318 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎499.993265000 -00:09:07 | Processed Slot: 1350 | Confirmed Slot: 1350 | Finalized Slot: 1318 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎499.993265000 -00:09:07 | Processed Slot: 1351 | Confirmed Slot: 1351 | Finalized Slot: 1319 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎499.993260000 -00:09:07 | Processed Slot: 1352 | Confirmed Slot: 1352 | Finalized Slot: 1320 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎499.993255000 -00:09:08 | Processed Slot: 1352 | Confirmed Slot: 1352 | Finalized Slot: 1320 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎499.993255000 -00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 -00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 -00:09:08 | Processed Slot: 1354 | Confirmed Slot: 1354 | Finalized Slot: 1322 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎499.993245000 -00:09:09 | Processed Slot: 1355 | Confirmed Slot: 1355 | Finalized Slot: 1323 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎499.993240000 -00:09:09 | Processed Slot: 1355 | Confirmed Slot: 1355 | Finalized Slot: 1323 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎499.993240000 -00:09:09 | Processed Slot: 1356 | Confirmed Slot: 1356 | Finalized Slot: 1324 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎499.993235000 -00:09:09 | Processed Slot: 1357 | Confirmed Slot: 1357 | Finalized Slot: 1325 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎499.993230000 -00:09:10 | Processed Slot: 1357 | Confirmed Slot: 1357 | Finalized Slot: 1325 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎499.993230000 -00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1358 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993225000 -00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1358 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993225000 -00:09:10 | Processed Slot: 1359 | Confirmed Slot: 1359 | Finalized Slot: 1327 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎499.993220000 -00:09:11 | Processed Slot: 1360 | Confirmed Slot: 1360 | Finalized Slot: 1328 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎499.993215000 -00:09:11 | Processed Slot: 1360 | Confirmed Slot: 1360 | Finalized Slot: 1328 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎499.993215000 -00:09:11 | Processed Slot: 1361 | Confirmed Slot: 1361 | Finalized Slot: 1329 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎499.993210000 -00:09:11 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 -00:09:12 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 -00:09:12 | Processed Slot: 1363 | Confirmed Slot: 1363 | Finalized Slot: 1331 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎499.993200000 -00:09:12 | Processed Slot: 1363 | Confirmed Slot: 1363 | Finalized Slot: 1331 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎499.993200000 -00:09:12 | Processed Slot: 1364 | Confirmed Slot: 1364 | Finalized Slot: 1332 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1367 | ◎499.993195000 -00:09:13 | Processed Slot: 1365 | Confirmed Slot: 1365 | Finalized Slot: 1333 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1368 | ◎499.993190000 -00:09:13 | Processed Slot: 1365 | Confirmed Slot: 1365 | Finalized Slot: 1333 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1368 | ◎499.993190000 -00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 -00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 -00:09:14 | Processed Slot: 1367 | Confirmed Slot: 1367 | Finalized Slot: 1335 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1370 | ◎499.993180000 -00:09:14 | Processed Slot: 1368 | Confirmed Slot: 1368 | Finalized Slot: 1336 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1371 | ◎499.993175000 -00:09:14 | Processed Slot: 1368 | Confirmed Slot: 1368 | Finalized Slot: 1336 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1371 | ◎499.993175000 -00:09:14 | Processed Slot: 1369 | Confirmed Slot: 1369 | Finalized Slot: 1337 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1372 | ◎499.993170000 -00:09:15 | Processed Slot: 1370 | Confirmed Slot: 1370 | Finalized Slot: 1338 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1373 | ◎499.993165000 -00:09:15 | Processed Slot: 1370 | Confirmed Slot: 1370 | Finalized Slot: 1338 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1373 | ◎499.993165000 -00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 -00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 -00:09:16 | Processed Slot: 1372 | Confirmed Slot: 1372 | Finalized Slot: 1340 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1375 | ◎499.993155000 -00:09:16 | Processed Slot: 1373 | Confirmed Slot: 1373 | Finalized Slot: 1341 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎499.993150000 -00:09:16 | Processed Slot: 1373 | Confirmed Slot: 1373 | Finalized Slot: 1341 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎499.993150000 -00:09:16 | Processed Slot: 1374 | Confirmed Slot: 1374 | Finalized Slot: 1342 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎499.993145000 -00:09:17 | Processed Slot: 1375 | Confirmed Slot: 1375 | Finalized Slot: 1343 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎499.993140000 -00:09:17 | Processed Slot: 1375 | Confirmed Slot: 1375 | Finalized Slot: 1343 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎499.993140000 -00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1376 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993135000 -00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1376 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993135000 -00:09:18 | Processed Slot: 1377 | Confirmed Slot: 1377 | Finalized Slot: 1345 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎499.993130000 -00:09:18 | Processed Slot: 1378 | Confirmed Slot: 1378 | Finalized Slot: 1346 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎499.993125000 -00:09:18 | Processed Slot: 1378 | Confirmed Slot: 1378 | Finalized Slot: 1346 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎499.993125000 -00:09:18 | Processed Slot: 1379 | Confirmed Slot: 1379 | Finalized Slot: 1347 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎499.993120000 -00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 -00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 -00:09:19 | Processed Slot: 1381 | Confirmed Slot: 1381 | Finalized Slot: 1349 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1384 | ◎499.993110000 -00:09:19 | Processed Slot: 1381 | Confirmed Slot: 1381 | Finalized Slot: 1349 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1384 | ◎499.993110000 -00:09:20 | Processed Slot: 1382 | Confirmed Slot: 1382 | Finalized Slot: 1350 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1385 | ◎499.993105000 -00:09:20 | Processed Slot: 1383 | Confirmed Slot: 1383 | Finalized Slot: 1351 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1386 | ◎499.993100000 -00:09:20 | Processed Slot: 1383 | Confirmed Slot: 1383 | Finalized Slot: 1351 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1386 | ◎499.993100000 -00:09:20 | Processed Slot: 1384 | Confirmed Slot: 1384 | Finalized Slot: 1352 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1387 | ◎499.993095000 -00:09:21 | Processed Slot: 1384 | Confirmed Slot: 1384 | Finalized Slot: 1352 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1387 | ◎499.993095000 -00:09:21 | Processed Slot: 1385 | Confirmed Slot: 1385 | Finalized Slot: 1353 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1388 | ◎499.993090000 -00:09:21 | Processed Slot: 1386 | Confirmed Slot: 1386 | Finalized Slot: 1354 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1389 | ◎499.993085000 -00:09:21 | Processed Slot: 1386 | Confirmed Slot: 1386 | Finalized Slot: 1354 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1389 | ◎499.993085000 -00:09:22 | Processed Slot: 1387 | Confirmed Slot: 1387 | Finalized Slot: 1355 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1390 | ◎499.993080000 -00:09:22 | Processed Slot: 1388 | Confirmed Slot: 1388 | Finalized Slot: 1356 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1391 | ◎499.993075000 diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log deleted file mode 100644 index e5aa3f4ca..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-08 06:04:07.734 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:07.751 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC -2023-08-08 06:04:07.755 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-08 06:04:08.443 UTC [48] LOG: received fast shutdown request -.2023-08-08 06:04:08.447 UTC [48] LOG: aborting any active transactions -2023-08-08 06:04:08.448 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-08 06:04:08.448 UTC [50] LOG: shutting down -2023-08-08 06:04:08.539 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-08 06:04:08.553 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-08 06:04:08.553 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-08 06:04:08.555 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:08.629 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC -2023-08-08 06:04:08.634 UTC [1] LOG: database system is ready to accept connections -2023-08-08 06:04:10.034 UTC [92] FATAL: role "chainlink" does not exist -2023-08-08 06:04:11.240 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-08 06:04:11.240 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-08 06:04:11.240 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-08 06:04:11.240 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-08 06:04:11.241 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-08 06:04:11.241 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log deleted file mode 100644 index fca38a241..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_0/node.log +++ /dev/null @@ -1,1050 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-08T06:04:11.225Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:11.225Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:11.225Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:11.226Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-08T06:04:11.231Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:11.231Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:11.231Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"6756d5db-1f60-41f8-9942-9e3e9c29275a"} -{"level":"debug","ts":"2023-08-08T06:04:11.237Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"6756d5db-1f60-41f8-9942-9e3e9c29275a"} -{"level":"debug","ts":"2023-08-08T06:04:11.240Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/08 06:04:11 OK 0001_initial.sql -2023/08/08 06:04:11 OK 0002_gormv2.sql -2023/08/08 06:04:11 OK 0003_eth_logs_table.sql -2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql -2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql -2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql -2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/08 06:04:11 OK 0010_bridge_fk.sql -2023/08/08 06:04:11 OK 0011_latest_round_requested.sql -2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql -2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql -2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql -2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql -2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/08 06:04:11 OK 0018_add_node_version_table.sql -2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/08 06:04:11 OK 0020_remove_result_task.sql -2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql -2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql -2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql -2023/08/08 06:04:11 OK 0025_create_log_config_table.sql -2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql -2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/08 06:04:11 OK 0028_vrf_v2.sql -2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql -2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql -2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/08 06:04:12 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/08 06:04:12 OK 0034_webhook_external_initiator.sql -2023/08/08 06:04:12 OK 0035_create_feeds_managers.sql -2023/08/08 06:04:12 OK 0036_external_job_id.go -2023/08/08 06:04:12 OK 0037_cascade_deletes.sql -2023/08/08 06:04:12 OK 0038_create_csa_keys.sql -2023/08/08 06:04:12 OK 0039_remove_fmv2_precision.sql -2023/08/08 06:04:12 OK 0040_heads_l1_block_number.sql -2023/08/08 06:04:12 OK 0041_eth_tx_strategies.sql -2023/08/08 06:04:12 OK 0042_create_job_proposals.sql -2023/08/08 06:04:12 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/08 06:04:12 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/08 06:04:12 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/08 06:04:12 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/08 06:04:12 OK 0047_add_uuid_to_job_proposals.sql -2023/08/08 06:04:12 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/08 06:04:12 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/08 06:04:12 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/08 06:04:12 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/08 06:04:12 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/08 06:04:12 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/08 06:04:12 OK 0054_remove_legacy_pipeline.go -2023/08/08 06:04:12 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/08 06:04:12 OK 0056_multichain.go -2023/08/08 06:04:12 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/08 06:04:12 OK 0058_direct_request_whitelist.sql -2023/08/08 06:04:12 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/08 06:04:12 OK 0060_combine_keys_tables.sql -2023/08/08 06:04:12 OK 0061_multichain_relations.sql -2023/08/08 06:04:12 OK 0062_upgrade_keepers.sql -2023/08/08 06:04:12 OK 0063_add_job_proposal_timestamp.sql -2023/08/08 06:04:12 OK 0064_cascade_delete_chain_nodes.sql -2023/08/08 06:04:12 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/08 06:04:12 OK 0066_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/08 06:04:12 OK 0068_eth_tx_from_address_idx.sql -2023/08/08 06:04:12 OK 0069_remove_unused_columns.sql -2023/08/08 06:04:12 OK 0070_dynamic_fee_txes.sql -2023/08/08 06:04:12 OK 0071_allow_null_json_serializable.sql -2023/08/08 06:04:12 OK 0072_drop_unused_tables.sql -2023/08/08 06:04:12 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/08 06:04:12 OK 0074_simulation_eth_tx.sql -2023/08/08 06:04:12 OK 0075_unique_job_names.sql -2023/08/08 06:04:12 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/08 06:04:12 OK 0077_add_webauthn_table.sql -2023/08/08 06:04:12 OK 0078_only_one_version.sql -2023/08/08 06:04:12 OK 0079_vrf_v2_fields.sql -2023/08/08 06:04:12 OK 0080_drop_unused_cols.sql -2023/08/08 06:04:12 OK 0081_unconsumed_log_broadcasts.sql -2023/08/08 06:04:12 OK 0082_lease_lock.sql -2023/08/08 06:04:12 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/08 06:04:12 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/08 06:04:12 OK 0085_requested_confs_delay.sql -2023/08/08 06:04:12 OK 0086_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0087_ocr2_tables.sql -2023/08/08 06:04:12 OK 0088_vrfv2_request_timeout.sql -2023/08/08 06:04:12 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/08 06:04:12 OK 0090_ocr_new_timeouts.sql -2023/08/08 06:04:12 OK 0091_ocr2_relay.sql -2023/08/08 06:04:12 OK 0092_bptxm_tx_checkers.sql -2023/08/08 06:04:12 OK 0093_terra_txm.sql -2023/08/08 06:04:12 OK 0094_blockhash_store_job.sql -2023/08/08 06:04:12 OK 0095_terra_fcd.sql -2023/08/08 06:04:12 OK 0096_create_job_proposal_specs.sql -2023/08/08 06:04:12 OK 0097_bootstrap_spec.sql -2023/08/08 06:04:12 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/08 06:04:12 OK 0099_terra_msgs_created_at.sql -2023/08/08 06:04:12 OK 0100_bootstrap_config.sql -2023/08/08 06:04:12 OK 0101_generic_ocr2.sql -2023/08/08 06:04:12 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/08 06:04:12 OK 0103_terra_msgs_type_url.sql -2023/08/08 06:04:12 OK 0104_terra_cascade_delete.sql -2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql -2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql -2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql -2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql -2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql -2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql -2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql -2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/08 06:04:12 OK 0115_log_poller.sql -2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql -2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql -2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql -2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql -2023/08/08 06:04:12 OK 0121_remove_log_configs.sql -2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql -2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql -2023/08/08 06:04:12 OK 0126_remove_observation_source.sql -2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql -2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql -2023/08/08 06:04:12 OK 0131_add_multi_user.sql -2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql -2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql -2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql -2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql -2023/08/08 06:04:12 OK 0137_remove_tx_index.sql -2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql -2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql -2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql -2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/08 06:04:12 OK 0144_optimize_lp.sql -2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql -2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0148_dkg_shares.sql -2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql -2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql -2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql -2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql -2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql -2023/08/08 06:04:12 OK 0155_remove_terra.sql -2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql -2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql -2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql -2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/08 06:04:12 OK 0164_add_cosmos.sql -2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql -2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql -2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql -2023/08/08 06:04:12 OK 0168_drop_node_tables.sql -2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql -2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql -2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql -2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql -2023/08/08 06:04:12 OK 0174_vrf_owner.sql -2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql -2023/08/08 06:04:12 OK 0176_s4_shared_table.sql -2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql -2023/08/08 06:04:12 OK 0178_drop_access_list.sql -2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql -2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql -2023/08/08 06:04:13 OK 0182_nullable_feed_id.sql -2023/08/08 06:04:13 OK 0183_functions_new_fields.sql -2023/08/08 06:04:13 OK 0184_chains_tables_removal.sql -2023/08/08 06:04:13 OK 0185_create_mercury_transmit_requests.sql -2023/08/08 06:04:13 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:13.036Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:17.354Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID ff7af286de1cccd73dfbd0faee78d9282746ac5f0c7b6086d7c9f33426dbf7af for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:17.354Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:19.647Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 5VQgfwYGjJvdrfToRQwENv44vGNVyPERKCN2ypameS51","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:21.756Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 04c7127c322f80587dd3e3dec222bd38315d0515c6776975834bdd1621e93810","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.137Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:24.331Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:24.331Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.331Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-08T06:04:24.332Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-08T06:04:24.332Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-08T06:04:24.332Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.332Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-08T06:04:24.332Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-08T06:04:24.333Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 34917. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":34917} -{"level":"debug","ts":"2023-08-08T06:04:24.333Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":34917,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-08T06:04:24.334Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenPort":34917,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/34917","id":"PeerV1","v1peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:04:24.334Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"PeerV2"} -{"level":"debug","ts":"2023-08-08T06:04:24.335Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"saveLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","in":"recvLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:24.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:24.336Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-08T06:04:24.336Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:24.336Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.19s","version":"2.4.0@d0c54ea","appID":"6756d5db-1f60-41f8-9942-9e3e9c29275a"} -{"level":"debug","ts":"2023-08-08T06:04:24.337Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000708055} -{"level":"info","ts":"2023-08-08T06:04:24.344Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-08T06:04:24.348Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011057677} -{"level":"debug","ts":"2023-08-08T06:04:24.348Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.800Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.97891ms"} -{"level":"debug","ts":"2023-08-08T06:04:24.801Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:24","latency":"243.078µs"} -{"level":"debug","ts":"2023-08-08T06:04:29.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:04:29.449Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:04:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:29","latency":"123.189µs"} -{"level":"debug","ts":"2023-08-08T06:04:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:29","latency":"138.869µs"} -{"level":"info","ts":"2023-08-08T06:04:34.335Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-08T06:04:34.336Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:34","latency":"117.659µs"} -{"level":"debug","ts":"2023-08-08T06:04:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:34","latency":"121.154µs"} -{"level":"debug","ts":"2023-08-08T06:04:39.337Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:39","latency":"108.341µs"} -{"level":"debug","ts":"2023-08-08T06:04:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:39","latency":"123.142µs"} -{"level":"debug","ts":"2023-08-08T06:04:44.338Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:44","latency":"122.1µs"} -{"level":"debug","ts":"2023-08-08T06:04:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:44","latency":"101.193µs"} -{"level":"debug","ts":"2023-08-08T06:04:49.339Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:49","latency":"109.623µs"} -{"level":"debug","ts":"2023-08-08T06:04:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:49","latency":"119.621µs"} -{"level":"debug","ts":"2023-08-08T06:04:54.339Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:54","latency":"110.797µs"} -{"level":"debug","ts":"2023-08-08T06:04:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:54","latency":"112.709µs"} -{"level":"debug","ts":"2023-08-08T06:04:59.340Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:59","latency":"115.817µs"} -{"level":"debug","ts":"2023-08-08T06:04:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:04:59","latency":"109.718µs"} -{"level":"debug","ts":"2023-08-08T06:05:00.175Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:05:00.177Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-08T06:05:00.250Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-08T06:05:00.252Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:00","latency":"76.315941ms"} -{"level":"debug","ts":"2023-08-08T06:05:03.257Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:03","latency":"2.605815ms"} -{"level":"debug","ts":"2023-08-08T06:05:04.340Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:04","latency":"90.367µs"} -{"level":"debug","ts":"2023-08-08T06:05:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:04","latency":"99.755µs"} -{"level":"debug","ts":"2023-08-08T06:05:05.538Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:05","latency":"2.091878316s"} -{"level":"debug","ts":"2023-08-08T06:05:08.033Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:08","latency":"2.305292125s"} -{"level":"debug","ts":"2023-08-08T06:05:09.341Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:09","latency":"113.213µs"} -{"level":"debug","ts":"2023-08-08T06:05:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:09","latency":"111.039µs"} -{"level":"debug","ts":"2023-08-08T06:05:14.342Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:14","latency":"100.022µs"} -{"level":"debug","ts":"2023-08-08T06:05:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:14","latency":"86.157µs"} -{"level":"debug","ts":"2023-08-08T06:05:19.343Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:05:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:19","latency":"96.268µs"} -{"level":"debug","ts":"2023-08-08T06:05:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:19","latency":"95.229µs"} -{"level":"debug","ts":"2023-08-08T06:05:24.344Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:05:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:24","latency":"100.662µs"} -{"level":"debug","ts":"2023-08-08T06:05:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:24","latency":"99.645µs"} -{"level":"debug","ts":"2023-08-08T06:05:26.961Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:26","latency":"57.216µs"} -{"level":"debug","ts":"2023-08-08T06:05:27.149Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"53.315µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.344Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:29","latency":"97.424µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:29","latency":"100.59µs"} -{"level":"debug","ts":"2023-08-08T06:05:34.345Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:34","latency":"101.403µs"} -{"level":"debug","ts":"2023-08-08T06:05:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:34","latency":"86.651µs"} -{"level":"debug","ts":"2023-08-08T06:05:39.346Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:39","latency":"122.509µs"} -{"level":"debug","ts":"2023-08-08T06:05:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:39","latency":"102.938µs"} -{"level":"debug","ts":"2023-08-08T06:05:44.347Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:44","latency":"103.074µs"} -{"level":"debug","ts":"2023-08-08T06:05:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:44","latency":"77.536µs"} -{"level":"debug","ts":"2023-08-08T06:05:49.347Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:49","latency":"103.77µs"} -{"level":"debug","ts":"2023-08-08T06:05:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:49","latency":"102.31µs"} -{"level":"debug","ts":"2023-08-08T06:05:54.347Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:54","latency":"109.82µs"} -{"level":"debug","ts":"2023-08-08T06:05:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:54","latency":"108.619µs"} -{"level":"debug","ts":"2023-08-08T06:05:59.348Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:59","latency":"93.992µs"} -{"level":"debug","ts":"2023-08-08T06:05:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:05:59","latency":"90.462µs"} -{"level":"debug","ts":"2023-08-08T06:06:04.349Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:04","latency":"128.309µs"} -{"level":"debug","ts":"2023-08-08T06:06:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:04","latency":"107.141µs"} -{"level":"debug","ts":"2023-08-08T06:06:09.350Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:09","latency":"105.771µs"} -{"level":"debug","ts":"2023-08-08T06:06:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:09","latency":"106.957µs"} -{"level":"debug","ts":"2023-08-08T06:06:14.351Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:14","latency":"99.525µs"} -{"level":"debug","ts":"2023-08-08T06:06:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:14","latency":"105.686µs"} -{"level":"debug","ts":"2023-08-08T06:06:19.351Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:19","latency":"111.931µs"} -{"level":"debug","ts":"2023-08-08T06:06:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:19","latency":"106.863µs"} -{"level":"debug","ts":"2023-08-08T06:06:24.353Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:24","latency":"120.705µs"} -{"level":"debug","ts":"2023-08-08T06:06:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:24","latency":"131.523µs"} -{"level":"debug","ts":"2023-08-08T06:06:29.353Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:06:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:29","latency":"104.916µs"} -{"level":"debug","ts":"2023-08-08T06:06:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:29","latency":"77.424µs"} -{"level":"debug","ts":"2023-08-08T06:06:34.353Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:34","latency":"104.184µs"} -{"level":"debug","ts":"2023-08-08T06:06:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:34","latency":"88.715µs"} -{"level":"debug","ts":"2023-08-08T06:06:39.354Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:39","latency":"94.66µs"} -{"level":"debug","ts":"2023-08-08T06:06:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:39","latency":"105.854µs"} -{"level":"debug","ts":"2023-08-08T06:06:44.355Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:06:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:44","latency":"96.545µs"} -{"level":"debug","ts":"2023-08-08T06:06:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:44","latency":"96.516µs"} -{"level":"debug","ts":"2023-08-08T06:06:49.355Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:49","latency":"89.606µs"} -{"level":"debug","ts":"2023-08-08T06:06:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:49","latency":"96.951µs"} -{"level":"debug","ts":"2023-08-08T06:06:54.356Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:54","latency":"108.123µs"} -{"level":"debug","ts":"2023-08-08T06:06:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:54","latency":"87.973µs"} -{"level":"debug","ts":"2023-08-08T06:06:59.357Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:59","latency":"125.067µs"} -{"level":"debug","ts":"2023-08-08T06:06:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:06:59","latency":"136.11µs"} -{"level":"debug","ts":"2023-08-08T06:07:04.358Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:04","latency":"106.13µs"} -{"level":"debug","ts":"2023-08-08T06:07:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:04","latency":"123.173µs"} -{"level":"debug","ts":"2023-08-08T06:07:09.359Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:09.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:09","latency":"108.782µs"} -{"level":"debug","ts":"2023-08-08T06:07:09.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:09","latency":"109.043µs"} -{"level":"debug","ts":"2023-08-08T06:07:14.359Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:14","latency":"130.735µs"} -{"level":"debug","ts":"2023-08-08T06:07:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:14","latency":"123.396µs"} -{"level":"debug","ts":"2023-08-08T06:07:19.360Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:19","latency":"130.134µs"} -{"level":"debug","ts":"2023-08-08T06:07:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:19","latency":"119.504µs"} -{"level":"debug","ts":"2023-08-08T06:07:24.361Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:24","latency":"116.399µs"} -{"level":"debug","ts":"2023-08-08T06:07:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:24","latency":"116.907µs"} -{"level":"debug","ts":"2023-08-08T06:07:29.362Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:07:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:29","latency":"92.731µs"} -{"level":"debug","ts":"2023-08-08T06:07:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:29","latency":"97.117µs"} -{"level":"debug","ts":"2023-08-08T06:07:34.362Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:34","latency":"108.439µs"} -{"level":"debug","ts":"2023-08-08T06:07:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:34","latency":"115.874µs"} -{"level":"debug","ts":"2023-08-08T06:07:39.363Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:07:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:39","latency":"126.143µs"} -{"level":"debug","ts":"2023-08-08T06:07:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:39","latency":"144.308µs"} -{"level":"debug","ts":"2023-08-08T06:07:44.363Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:44","latency":"115.397µs"} -{"level":"debug","ts":"2023-08-08T06:07:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:44","latency":"115.604µs"} -{"level":"debug","ts":"2023-08-08T06:07:49.364Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:49","latency":"112.679µs"} -{"level":"debug","ts":"2023-08-08T06:07:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:49","latency":"111.434µs"} -{"level":"debug","ts":"2023-08-08T06:07:54.365Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:54","latency":"132.513µs"} -{"level":"debug","ts":"2023-08-08T06:07:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:54","latency":"129.096µs"} -{"level":"debug","ts":"2023-08-08T06:07:59.366Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:59","latency":"107.335µs"} -{"level":"debug","ts":"2023-08-08T06:07:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:07:59","latency":"111.499µs"} -{"level":"debug","ts":"2023-08-08T06:08:04.366Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:04","latency":"114.823µs"} -{"level":"debug","ts":"2023-08-08T06:08:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:04","latency":"138.594µs"} -{"level":"debug","ts":"2023-08-08T06:08:09.367Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:09","latency":"94.579µs"} -{"level":"debug","ts":"2023-08-08T06:08:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:09","latency":"107.213µs"} -{"level":"debug","ts":"2023-08-08T06:08:14.368Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:14","latency":"120.681µs"} -{"level":"debug","ts":"2023-08-08T06:08:14.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:14","latency":"120.626µs"} -{"level":"debug","ts":"2023-08-08T06:08:19.368Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:19","latency":"124.695µs"} -{"level":"debug","ts":"2023-08-08T06:08:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:19","latency":"120.794µs"} -{"level":"debug","ts":"2023-08-08T06:08:24.369Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:24","latency":"117.577µs"} -{"level":"debug","ts":"2023-08-08T06:08:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:24","latency":"120.56µs"} -{"level":"debug","ts":"2023-08-08T06:08:29.369Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:29","latency":"115.827µs"} -{"level":"debug","ts":"2023-08-08T06:08:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:29","latency":"123.091µs"} -{"level":"debug","ts":"2023-08-08T06:08:34.370Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:08:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:34","latency":"126.556µs"} -{"level":"debug","ts":"2023-08-08T06:08:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:34","latency":"126.543µs"} -{"level":"debug","ts":"2023-08-08T06:08:39.371Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:39","latency":"126.4µs"} -{"level":"debug","ts":"2023-08-08T06:08:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:39","latency":"102.07µs"} -{"level":"debug","ts":"2023-08-08T06:08:44.372Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:44","latency":"105.523µs"} -{"level":"debug","ts":"2023-08-08T06:08:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:44","latency":"93.989µs"} -{"level":"debug","ts":"2023-08-08T06:08:49.372Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:08:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:49","latency":"100.873µs"} -{"level":"debug","ts":"2023-08-08T06:08:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:49","latency":"98.83µs"} -{"level":"debug","ts":"2023-08-08T06:08:54.373Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:54","latency":"103.147µs"} -{"level":"debug","ts":"2023-08-08T06:08:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:54","latency":"95.621µs"} -{"level":"debug","ts":"2023-08-08T06:08:59.373Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:59","latency":"144.635µs"} -{"level":"debug","ts":"2023-08-08T06:08:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:08:59","latency":"145.386µs"} -{"level":"debug","ts":"2023-08-08T06:09:04.374Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:04","latency":"101.265µs"} -{"level":"debug","ts":"2023-08-08T06:09:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:04","latency":"101.525µs"} -{"level":"debug","ts":"2023-08-08T06:09:09.375Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:09:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:09","latency":"119.697µs"} -{"level":"debug","ts":"2023-08-08T06:09:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:09","latency":"209.634µs"} -{"level":"debug","ts":"2023-08-08T06:09:14.376Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:14","latency":"108.23µs"} -{"level":"debug","ts":"2023-08-08T06:09:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:14","latency":"95.205µs"} -{"level":"debug","ts":"2023-08-08T06:09:19.377Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:19","latency":"116.594µs"} -{"level":"debug","ts":"2023-08-08T06:09:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:19","latency":"117.7µs"} -{"level":"debug","ts":"2023-08-08T06:09:24.377Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:24","latency":"125.56µs"} -{"level":"debug","ts":"2023-08-08T06:09:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:24","latency":"96.532µs"} -{"level":"debug","ts":"2023-08-08T06:09:29.378Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:09:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:29","latency":"110.78µs"} -{"level":"debug","ts":"2023-08-08T06:09:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:29","latency":"110.366µs"} -{"level":"info","ts":"2023-08-08T06:09:34.336Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} -{"level":"debug","ts":"2023-08-08T06:09:34.379Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:34","latency":"124.023µs"} -{"level":"debug","ts":"2023-08-08T06:09:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:34","latency":"109.416µs"} -{"level":"debug","ts":"2023-08-08T06:09:39.379Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:39","latency":"124.416µs"} -{"level":"debug","ts":"2023-08-08T06:09:39.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:39","latency":"130.391µs"} -{"level":"debug","ts":"2023-08-08T06:09:43.639Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:43","latency":"118.163µs"} -{"level":"debug","ts":"2023-08-08T06:09:43.827Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:43","latency":"40.587µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.380Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:44","latency":"125.549µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:44","latency":"101.919µs"} -{"level":"debug","ts":"2023-08-08T06:09:47.086Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:47","latency":"4.237159ms"} -{"level":"info","ts":"2023-08-08T06:09:47.285Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} -{"level":"debug","ts":"2023-08-08T06:09:47.285Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-08T06:09:47.285Z","caller":"ocrbootstrap/delegate.go:110","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-08T06:09:47.285Z","caller":"ocrbootstrap/delegate.go:127","msg":"Launching new bootstrap node","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","args":{"BootstrapperFactory":{"BinaryNetworkEndpointFactory":{},"BootstrapperFactory":{}},"V2Bootstrappers":null,"ContractConfigTracker":{},"Database":{},"LocalConfig":{"BlockchainTimeout":20000000000,"ContractConfigConfirmations":1,"SkipContractConfigConfirmations":false,"ContractConfigTrackerPollInterval":15000000000,"ContractTransmitterTransmitTimeout":10000000000,"DatabaseTimeout":10000000000,"MinOCR2MaxDurationQuery":0,"DevelopmentMode":""},"Logger":{},"MonitoringEndpoint":null,"OffchainConfigDigester":{"ProgramID":"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ","StateID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5"}}} -{"level":"debug","ts":"2023-08-08T06:09:47.286Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} -{"level":"debug","ts":"2023-08-08T06:09:47.286Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:47.488Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:47.488Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":2} -{"level":"info","ts":"2023-08-08T06:09:47.489Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"bootstrap","jobID":1} -{"level":"debug","ts":"2023-08-08T06:09:47.489Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:47.489Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:09:47.489Z","logger":"OCRBootstrap","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"info","ts":"2023-08-08T06:09:47.489Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:09:47.490Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"bootstrap\\\"\\nname = \\\"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc\\\"\\nforwardingAllowed = false\\n\\n\\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\n\\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:47","latency":"212.185973ms"} -{"level":"debug","ts":"2023-08-08T06:09:47.691Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"info","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:09:47.691Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":null} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} -{"level":"info","ts":"2023-08-08T06:09:47.692Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:09:47.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","numFound":1,"loaded":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"],"id":"ragep2p","_id":"discoveryProtocol","found":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"],"numLoaded":1,"queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numQueried":5} -{"level":"info","ts":"2023-08-08T06:09:47.696Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:46","msg":"BootstrapperV2: Initialized","version":"2.4.0@d0c54ea","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"PeerV2","_id":"bootstrapperV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","bootstrappers":null} -{"level":"info","ts":"2023-08-08T06:09:47.696Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:81","msg":"BootstrapperV2: Started listening","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"PeerV2","_id":"bootstrapperV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:09:48.584Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:48.787Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:49.381Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:49.650Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:49","latency":"122.161µs"} -{"level":"debug","ts":"2023-08-08T06:09:49.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:49","latency":"118.912µs"} -{"level":"debug","ts":"2023-08-08T06:09:49.853Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:50.689Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:50.892Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:51.716Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:51.919Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:52.737Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:52.940Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:53.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:53.968Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:09:53.994Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:09:54.382Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:54","latency":"110.233µs"} -{"level":"debug","ts":"2023-08-08T06:09:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:54","latency":"95.451µs"} -{"level":"debug","ts":"2023-08-08T06:09:54.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:55.010Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:55.888Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:56.091Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:56.943Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:57.147Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:58.014Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:58.217Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:59.107Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:59.310Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:09:59.383Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:59","latency":"110.702µs"} -{"level":"debug","ts":"2023-08-08T06:09:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:09:59","latency":"129.031µs"} -{"level":"debug","ts":"2023-08-08T06:10:00.123Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.326Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:01.169Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:01.372Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:01.628Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:02.183Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:02.386Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:02.895Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:10:03.210Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:03.413Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:04.291Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:04.383Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:04.494Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:04.766Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","direction":"in","remoteAddr":"10.14.53.196:49076","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:04.767Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:04.768Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","in":"processAnnouncement","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}"} -{"level":"debug","ts":"2023-08-08T06:10:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:04","latency":"106.535µs"} -{"level":"debug","ts":"2023-08-08T06:10:04.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:04","latency":"108.246µs"} -{"level":"debug","ts":"2023-08-08T06:10:05.316Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:05.518Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:06.317Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:06.520Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:07.348Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:07.551Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:08.369Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:08.572Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:08.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:09.384Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:09.397Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.600Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:09","latency":"98.821µs"} -{"level":"debug","ts":"2023-08-08T06:10:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:09","latency":"100.114µs"} -{"level":"debug","ts":"2023-08-08T06:10:10.476Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:10.679Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.556Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.759Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:12.654Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:12.856Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:13.753Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:13.956Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.385Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:14","latency":"115.416µs"} -{"level":"debug","ts":"2023-08-08T06:10:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:14","latency":"124.008µs"} -{"level":"debug","ts":"2023-08-08T06:10:14.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:14.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:14.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:14.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:14.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:14.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:15.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.847Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.050Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.864Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.067Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","direction":"in","remoteAddr":"10.14.31.164:49396"} -{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:17.897Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.097Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:10:18.100Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:18.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:18.949Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.152Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.386Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:19","latency":"117.242µs"} -{"level":"debug","ts":"2023-08-08T06:10:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:19","latency":"140.937µs"} -{"level":"debug","ts":"2023-08-08T06:10:20.020Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.057Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:20.058Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:20.057Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"warn","ts":"2023-08-08T06:10:20.058Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:20.223Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.095Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.298Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.166Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.368Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.190Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.393Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.265Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.387Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:24.468Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:24","latency":"110.963µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:24","latency":"119.215µs"} -{"level":"debug","ts":"2023-08-08T06:10:25.283Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.486Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.296Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.499Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:26.651Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:27.391Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.594Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.402Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"in","remoteAddr":"10.14.88.105:34874"} -{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:28.605Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.388Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:29.411Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.614Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:29","latency":"113.448µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:29","latency":"132.034µs"} -{"level":"debug","ts":"2023-08-08T06:10:30.456Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.509Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.712Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.552Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.755Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.300Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:10:33.597Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.800Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.389Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:34.644Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:34","latency":"107.6µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:34","latency":"133.709µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.846Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.691Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.893Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.141Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:36.141Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:36.775Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.978Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.868Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.071Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.959Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.162Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.390Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:39","latency":"95.614µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:39","latency":"90.601µs"} -{"level":"debug","ts":"2023-08-08T06:10:40.034Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.107Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.309Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.203Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.406Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.268Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.471Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.552Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:43.552Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:43.626Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"in","remoteAddr":"10.14.107.222:58236"} -{"level":"info","ts":"2023-08-08T06:10:43.626Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}","_id":"discoveryProtocol","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:10:44.280Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.391Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:44.482Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:44","latency":"121.772µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:44","latency":"108.186µs"} -{"level":"debug","ts":"2023-08-08T06:10:45.299Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.502Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.353Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.555Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.369Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.572Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.430Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.503Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:10:48.633Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:49.517Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.720Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:49","latency":"131.608µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:49","latency":"104.718µs"} -{"level":"debug","ts":"2023-08-08T06:10:50.542Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.746Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.560Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.643Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.845Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.678Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.881Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.393Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:54.689Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:54","latency":"119.197µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:54","latency":"128.127µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.891Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.729Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.932Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.777Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.980Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.849Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.052Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.394Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:59","latency":"112.79µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:10:59","latency":"113.395µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.925Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.127Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.986Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.188Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.040Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.243Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.064Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.266Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.706Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:11:04.099Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.302Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.395Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:04","latency":"101.159µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:04","latency":"113.754µs"} -{"level":"debug","ts":"2023-08-08T06:11:05.198Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.401Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.209Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.412Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.290Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.492Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.378Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.581Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.396Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:09.431Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.634Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:09","latency":"133.264µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:09","latency":"202.607µs"} -{"level":"debug","ts":"2023-08-08T06:11:10.452Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.654Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.501Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.704Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.574Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.777Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.605Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.397Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:14.664Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:14","latency":"157.598µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:14","latency":"148.416µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.866Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.674Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.876Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.724Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.927Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.010Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.851Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.909Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:11:19.054Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.398Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:19","latency":"108.869µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:19","latency":"122.271µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.887Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.090Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.958Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.161Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.035Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.238Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.126Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.330Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.144Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.347Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.399Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:24","latency":"117.613µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:24","latency":"134.798µs"} -{"level":"debug","ts":"2023-08-08T06:11:25.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.410Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.262Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.465Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.348Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.551Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.415Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.617Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.400Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:29.510Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.713Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:29","latency":"105.862µs"} -{"level":"debug","ts":"2023-08-08T06:11:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:29","latency":"125.001µs"} -{"level":"debug","ts":"2023-08-08T06:11:30.575Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.778Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.652Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.855Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.727Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.930Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.747Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.950Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.111Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:11:34.401Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:34.772Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:34","latency":"119.251µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:34","latency":"109.645µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.974Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.796Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.998Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.860Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.063Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.924Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.127Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.963Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.165Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.402Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:39","latency":"146.443µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:39","latency":"117.598µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.993Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.196Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.024Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.227Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.108Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.311Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.123Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.195Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.398Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.403Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:11:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:44","latency":"117.582µs"} -{"level":"debug","ts":"2023-08-08T06:11:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:44","latency":"156.242µs"} -{"level":"debug","ts":"2023-08-08T06:11:45.266Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.469Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.365Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.568Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.382Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.585Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.409Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.612Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.314Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:11:49.404Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:49.414Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.616Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:49","latency":"111.724µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:49","latency":"144.964µs"} -{"level":"debug","ts":"2023-08-08T06:11:50.419Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.622Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.478Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.681Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.529Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.731Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.563Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.405Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:54.647Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:54","latency":"121.999µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:54","latency":"128.419µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.850Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.717Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.920Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.793Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.996Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.853Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.055Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.934Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.137Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.406Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:59","latency":"113.64µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:11:59","latency":"106.027µs"} -{"level":"debug","ts":"2023-08-08T06:12:00.027Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.229Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.100Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.303Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.162Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.365Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.224Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.427Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.305Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.407Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:04.508Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.517Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:12:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:04","latency":"105.328µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:04","latency":"108.105µs"} -{"level":"debug","ts":"2023-08-08T06:12:05.404Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.606Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.420Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.493Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.696Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.517Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.720Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.408Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:09.527Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.730Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:09","latency":"107.742µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:09","latency":"111.542µs"} -{"level":"debug","ts":"2023-08-08T06:12:10.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.826Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.702Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.905Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.707Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.910Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.769Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.972Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.408Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:14","latency":"100.846µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:14","latency":"110.684µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.805Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.008Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.814Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.017Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.854Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.057Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.881Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.084Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.915Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.117Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.409Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:19.720Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:12:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:19","latency":"91.899µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:19","latency":"96.318µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.991Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.194Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.006Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.208Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.010Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.212Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.043Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.246Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.058Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.261Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.410Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:24","latency":"111.461µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:24","latency":"102.278µs"} -{"level":"debug","ts":"2023-08-08T06:12:25.136Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.339Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.146Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.349Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.438Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.309Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.512Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.334Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.411Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:29.537Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:29","latency":"111.775µs"} -{"level":"debug","ts":"2023-08-08T06:12:29.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:29","latency":"127.428µs"} -{"level":"debug","ts":"2023-08-08T06:12:30.370Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.573Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.388Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.590Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.419Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.622Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.479Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.682Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.411Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:34.571Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.773Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:34","latency":"121.086µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:34","latency":"93.817µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.923Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:12:35.623Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.826Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.720Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.923Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.805Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.008Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.902Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.105Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.412Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:12:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:39","latency":"147.112µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:39","latency":"117.725µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.912Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.115Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.928Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.131Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.003Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.205Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.033Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.236Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.103Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.305Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.412Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:44","latency":"119.258µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:44","latency":"140.836µs"} -{"level":"debug","ts":"2023-08-08T06:12:45.106Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.309Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.111Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.314Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.122Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.325Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.215Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.418Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.274Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.413Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:49.477Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:49","latency":"110.591µs"} -{"level":"debug","ts":"2023-08-08T06:12:49.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:49","latency":"101.426µs"} -{"level":"debug","ts":"2023-08-08T06:12:50.126Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:12:50.345Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.548Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.417Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.619Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.457Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.540Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.743Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.414Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:54.569Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.772Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:54","latency":"112.906µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:54","latency":"111.786µs"} -{"level":"debug","ts":"2023-08-08T06:12:55.605Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.807Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.693Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.895Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.710Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.913Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.788Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.991Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.415Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:59.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:59","latency":"113.91µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.797Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:12:59","latency":"131.592µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.854Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.057Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.917Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.120Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.007Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.210Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.036Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.239Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.136Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.338Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.416Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","_id":"discoveryProtocol","in":"sendLoop","peerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"debug","ts":"2023-08-08T06:13:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:13:04","latency":"110.341µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.798Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.21.171","errors":"","servedAt":"2023-08-08 06:13:04","latency":"117.002µs"} -{"level":"debug","ts":"2023-08-08T06:13:05.228Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.329Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-bootstrap-07a65a24-1e8f-4bdf-99a2-eef81070cdcc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","feedID":""} -{"level":"debug","ts":"2023-08-08T06:13:05.431Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.257Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.460Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.332Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.534Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.382Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.585Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log deleted file mode 100644 index 42398a283..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-08 06:04:07.841 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:07.859 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC -2023-08-08 06:04:07.864 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-08 06:04:08.554 UTC [48] LOG: received fast shutdown request -.2023-08-08 06:04:08.559 UTC [48] LOG: aborting any active transactions -2023-08-08 06:04:08.635 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-08 06:04:08.635 UTC [50] LOG: shutting down -2023-08-08 06:04:08.655 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-08 06:04:08.766 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-08 06:04:08.766 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-08 06:04:08.769 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:08.787 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC -2023-08-08 06:04:08.791 UTC [1] LOG: database system is ready to accept connections -2023-08-08 06:04:10.051 UTC [92] FATAL: role "chainlink" does not exist -2023-08-08 06:04:11.057 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-08 06:04:11.057 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-08 06:04:11.057 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-08 06:04:11.057 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-08 06:04:11.058 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-08 06:04:11.058 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log deleted file mode 100644 index 1455e8800..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_1/node.log +++ /dev/null @@ -1,1786 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-08T06:04:10.941Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.942Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.942Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:10.942Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-08T06:04:10.947Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.947Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.947Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"707e984b-1030-421b-b739-756da958e822"} -{"level":"debug","ts":"2023-08-08T06:04:10.954Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"707e984b-1030-421b-b739-756da958e822"} -{"level":"debug","ts":"2023-08-08T06:04:11.057Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/08 06:04:11 OK 0001_initial.sql -2023/08/08 06:04:11 OK 0002_gormv2.sql -2023/08/08 06:04:11 OK 0003_eth_logs_table.sql -2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql -2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql -2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql -2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/08 06:04:11 OK 0010_bridge_fk.sql -2023/08/08 06:04:11 OK 0011_latest_round_requested.sql -2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql -2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql -2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql -2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql -2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/08 06:04:11 OK 0018_add_node_version_table.sql -2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/08 06:04:11 OK 0020_remove_result_task.sql -2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql -2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql -2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql -2023/08/08 06:04:11 OK 0025_create_log_config_table.sql -2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql -2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/08 06:04:11 OK 0028_vrf_v2.sql -2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql -2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql -2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql -2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql -2023/08/08 06:04:11 OK 0036_external_job_id.go -2023/08/08 06:04:11 OK 0037_cascade_deletes.sql -2023/08/08 06:04:11 OK 0038_create_csa_keys.sql -2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql -2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql -2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql -2023/08/08 06:04:11 OK 0042_create_job_proposals.sql -2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql -2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go -2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/08 06:04:11 OK 0056_multichain.go -2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql -2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/08 06:04:12 OK 0060_combine_keys_tables.sql -2023/08/08 06:04:12 OK 0061_multichain_relations.sql -2023/08/08 06:04:12 OK 0062_upgrade_keepers.sql -2023/08/08 06:04:12 OK 0063_add_job_proposal_timestamp.sql -2023/08/08 06:04:12 OK 0064_cascade_delete_chain_nodes.sql -2023/08/08 06:04:12 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/08 06:04:12 OK 0066_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/08 06:04:12 OK 0068_eth_tx_from_address_idx.sql -2023/08/08 06:04:12 OK 0069_remove_unused_columns.sql -2023/08/08 06:04:12 OK 0070_dynamic_fee_txes.sql -2023/08/08 06:04:12 OK 0071_allow_null_json_serializable.sql -2023/08/08 06:04:12 OK 0072_drop_unused_tables.sql -2023/08/08 06:04:12 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/08 06:04:12 OK 0074_simulation_eth_tx.sql -2023/08/08 06:04:12 OK 0075_unique_job_names.sql -2023/08/08 06:04:12 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/08 06:04:12 OK 0077_add_webauthn_table.sql -2023/08/08 06:04:12 OK 0078_only_one_version.sql -2023/08/08 06:04:12 OK 0079_vrf_v2_fields.sql -2023/08/08 06:04:12 OK 0080_drop_unused_cols.sql -2023/08/08 06:04:12 OK 0081_unconsumed_log_broadcasts.sql -2023/08/08 06:04:12 OK 0082_lease_lock.sql -2023/08/08 06:04:12 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/08 06:04:12 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/08 06:04:12 OK 0085_requested_confs_delay.sql -2023/08/08 06:04:12 OK 0086_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0087_ocr2_tables.sql -2023/08/08 06:04:12 OK 0088_vrfv2_request_timeout.sql -2023/08/08 06:04:12 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/08 06:04:12 OK 0090_ocr_new_timeouts.sql -2023/08/08 06:04:12 OK 0091_ocr2_relay.sql -2023/08/08 06:04:12 OK 0092_bptxm_tx_checkers.sql -2023/08/08 06:04:12 OK 0093_terra_txm.sql -2023/08/08 06:04:12 OK 0094_blockhash_store_job.sql -2023/08/08 06:04:12 OK 0095_terra_fcd.sql -2023/08/08 06:04:12 OK 0096_create_job_proposal_specs.sql -2023/08/08 06:04:12 OK 0097_bootstrap_spec.sql -2023/08/08 06:04:12 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/08 06:04:12 OK 0099_terra_msgs_created_at.sql -2023/08/08 06:04:12 OK 0100_bootstrap_config.sql -2023/08/08 06:04:12 OK 0101_generic_ocr2.sql -2023/08/08 06:04:12 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/08 06:04:12 OK 0103_terra_msgs_type_url.sql -2023/08/08 06:04:12 OK 0104_terra_cascade_delete.sql -2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql -2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql -2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql -2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql -2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql -2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql -2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql -2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/08 06:04:12 OK 0115_log_poller.sql -2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql -2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql -2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql -2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql -2023/08/08 06:04:12 OK 0121_remove_log_configs.sql -2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql -2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql -2023/08/08 06:04:12 OK 0126_remove_observation_source.sql -2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql -2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql -2023/08/08 06:04:12 OK 0131_add_multi_user.sql -2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql -2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql -2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql -2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql -2023/08/08 06:04:12 OK 0137_remove_tx_index.sql -2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql -2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql -2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql -2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/08 06:04:12 OK 0144_optimize_lp.sql -2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql -2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0148_dkg_shares.sql -2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql -2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql -2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql -2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql -2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql -2023/08/08 06:04:12 OK 0155_remove_terra.sql -2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql -2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql -2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql -2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/08 06:04:12 OK 0164_add_cosmos.sql -2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql -2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql -2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql -2023/08/08 06:04:12 OK 0168_drop_node_tables.sql -2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql -2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql -2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql -2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql -2023/08/08 06:04:12 OK 0174_vrf_owner.sql -2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql -2023/08/08 06:04:12 OK 0176_s4_shared_table.sql -2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql -2023/08/08 06:04:12 OK 0178_drop_access_list.sql -2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql -2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql -2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql -2023/08/08 06:04:12 OK 0183_functions_new_fields.sql -2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql -2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql -2023/08/08 06:04:12 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-08T06:04:12.755Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.755Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.755Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.756Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.756Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.851Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID a870d17d480d27c3e57c0316af2958aec2711e691c9852af0fad235abc43f124 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.851Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:18.955Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 27YxZtHx8JDUshKHTsnSZsZ2N7tofJfJzsiXYuJE3rxe","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:20.942Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 172902078082f6a38cb178086ea98b29322740dbd21979f1b9b25cb9470ba1e0","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.056Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-08T06:04:23.249Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-08T06:04:23.249Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-08T06:04:23.249Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.249Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-08T06:04:23.250Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 41323. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":41323} -{"level":"debug","ts":"2023-08-08T06:04:23.251Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":41323,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-08T06:04:23.251Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenAddr":"/ip4/0.0.0.0/tcp/41323","id":"PeerV1","v1peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","v1listenPort":41323,"v1listenIP":"0.0.0.0"} -{"level":"debug","ts":"2023-08-08T06:04:23.251Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:04:23.252Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"saveLoop"} -{"level":"debug","ts":"2023-08-08T06:04:23.252Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:23.254Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"info","ts":"2023-08-08T06:04:23.254Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.19s","version":"2.4.0@d0c54ea","appID":"707e984b-1030-421b-b739-756da958e822"} -{"level":"debug","ts":"2023-08-08T06:04:23.254Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.255Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.00061673} -{"level":"info","ts":"2023-08-08T06:04:23.261Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-08T06:04:23.266Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010904026} -{"level":"debug","ts":"2023-08-08T06:04:23.266Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:28.253Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:28.468Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:04:29.819Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:29","latency":"1.435475ms"} -{"level":"debug","ts":"2023-08-08T06:04:29.820Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:29","latency":"212.999µs"} -{"level":"debug","ts":"2023-08-08T06:04:33.253Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-08T06:04:33.253Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:34","latency":"94.145µs"} -{"level":"debug","ts":"2023-08-08T06:04:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:34","latency":"108.964µs"} -{"level":"debug","ts":"2023-08-08T06:04:38.254Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:39","latency":"90.495µs"} -{"level":"debug","ts":"2023-08-08T06:04:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:39","latency":"98.469µs"} -{"level":"debug","ts":"2023-08-08T06:04:43.254Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:44","latency":"85.275µs"} -{"level":"debug","ts":"2023-08-08T06:04:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:44","latency":"104.937µs"} -{"level":"debug","ts":"2023-08-08T06:04:48.255Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:49","latency":"89.239µs"} -{"level":"debug","ts":"2023-08-08T06:04:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:49","latency":"97.838µs"} -{"level":"debug","ts":"2023-08-08T06:04:53.255Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:54","latency":"92.546µs"} -{"level":"debug","ts":"2023-08-08T06:04:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:54","latency":"69.759µs"} -{"level":"debug","ts":"2023-08-08T06:04:58.256Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:59","latency":"93.973µs"} -{"level":"debug","ts":"2023-08-08T06:04:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:04:59","latency":"108.774µs"} -{"level":"debug","ts":"2023-08-08T06:05:00.818Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:05:00.820Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-08T06:05:00.938Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-08T06:05:00.940Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:00","latency":"122.02392ms"} -{"level":"debug","ts":"2023-08-08T06:05:03.256Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:04","latency":"96.075µs"} -{"level":"debug","ts":"2023-08-08T06:05:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:04","latency":"95.479µs"} -{"level":"debug","ts":"2023-08-08T06:05:08.220Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:08","latency":"2.55954ms"} -{"level":"debug","ts":"2023-08-08T06:05:08.257Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:09","latency":"91.167µs"} -{"level":"debug","ts":"2023-08-08T06:05:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:09","latency":"90.692µs"} -{"level":"debug","ts":"2023-08-08T06:05:10.344Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:10","latency":"1.93676563s"} -{"level":"debug","ts":"2023-08-08T06:05:12.662Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:12","latency":"2.131744133s"} -{"level":"debug","ts":"2023-08-08T06:05:13.258Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:05:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:14","latency":"128.145µs"} -{"level":"debug","ts":"2023-08-08T06:05:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:14","latency":"132.896µs"} -{"level":"debug","ts":"2023-08-08T06:05:18.258Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:19","latency":"87.521µs"} -{"level":"debug","ts":"2023-08-08T06:05:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:19","latency":"95.122µs"} -{"level":"debug","ts":"2023-08-08T06:05:23.259Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:24","latency":"86.507µs"} -{"level":"debug","ts":"2023-08-08T06:05:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:24","latency":"83.906µs"} -{"level":"debug","ts":"2023-08-08T06:05:27.333Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"64.561µs"} -{"level":"debug","ts":"2023-08-08T06:05:27.520Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"51.081µs"} -{"level":"debug","ts":"2023-08-08T06:05:28.260Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:29","latency":"94.173µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:29","latency":"68.905µs"} -{"level":"debug","ts":"2023-08-08T06:05:33.260Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:34","latency":"97.653µs"} -{"level":"debug","ts":"2023-08-08T06:05:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:34","latency":"104.129µs"} -{"level":"debug","ts":"2023-08-08T06:05:38.261Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:39","latency":"108.071µs"} -{"level":"debug","ts":"2023-08-08T06:05:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:39","latency":"108.07µs"} -{"level":"debug","ts":"2023-08-08T06:05:43.261Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:44","latency":"90.394µs"} -{"level":"debug","ts":"2023-08-08T06:05:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:44","latency":"104.441µs"} -{"level":"debug","ts":"2023-08-08T06:05:48.262Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:05:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:49","latency":"100.973µs"} -{"level":"debug","ts":"2023-08-08T06:05:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:49","latency":"82.511µs"} -{"level":"debug","ts":"2023-08-08T06:05:53.262Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:54","latency":"84.236µs"} -{"level":"debug","ts":"2023-08-08T06:05:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:54","latency":"98.514µs"} -{"level":"debug","ts":"2023-08-08T06:05:58.263Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:59","latency":"89.845µs"} -{"level":"debug","ts":"2023-08-08T06:05:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:05:59","latency":"101.452µs"} -{"level":"debug","ts":"2023-08-08T06:06:03.264Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:06:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:04","latency":"88.284µs"} -{"level":"debug","ts":"2023-08-08T06:06:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:04","latency":"89.13µs"} -{"level":"debug","ts":"2023-08-08T06:06:08.264Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:06:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:09","latency":"124.083µs"} -{"level":"debug","ts":"2023-08-08T06:06:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:09","latency":"93.697µs"} -{"level":"debug","ts":"2023-08-08T06:06:13.265Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:06:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:14","latency":"89.521µs"} -{"level":"debug","ts":"2023-08-08T06:06:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:14","latency":"92.92µs"} -{"level":"debug","ts":"2023-08-08T06:06:18.265Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:06:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:19","latency":"89.626µs"} -{"level":"debug","ts":"2023-08-08T06:06:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:19","latency":"88.961µs"} -{"level":"debug","ts":"2023-08-08T06:06:23.265Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:06:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:24","latency":"88.48µs"} -{"level":"debug","ts":"2023-08-08T06:06:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:24","latency":"88.766µs"} -{"level":"debug","ts":"2023-08-08T06:06:28.266Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:29.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:29","latency":"94.019µs"} -{"level":"debug","ts":"2023-08-08T06:06:29.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:29","latency":"94.206µs"} -{"level":"debug","ts":"2023-08-08T06:06:33.266Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:34","latency":"97.061µs"} -{"level":"debug","ts":"2023-08-08T06:06:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:34","latency":"78.194µs"} -{"level":"debug","ts":"2023-08-08T06:06:38.267Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:39","latency":"89.442µs"} -{"level":"debug","ts":"2023-08-08T06:06:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:39","latency":"93.643µs"} -{"level":"debug","ts":"2023-08-08T06:06:43.268Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:44","latency":"88.46µs"} -{"level":"debug","ts":"2023-08-08T06:06:44.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:44","latency":"97.754µs"} -{"level":"debug","ts":"2023-08-08T06:06:48.269Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:06:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:49","latency":"91.051µs"} -{"level":"debug","ts":"2023-08-08T06:06:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:49","latency":"94.077µs"} -{"level":"debug","ts":"2023-08-08T06:06:53.270Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:54","latency":"84.88µs"} -{"level":"debug","ts":"2023-08-08T06:06:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:54","latency":"83.267µs"} -{"level":"debug","ts":"2023-08-08T06:06:58.270Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:59","latency":"93.165µs"} -{"level":"debug","ts":"2023-08-08T06:06:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:06:59","latency":"101.276µs"} -{"level":"debug","ts":"2023-08-08T06:07:03.271Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:04","latency":"80.267µs"} -{"level":"debug","ts":"2023-08-08T06:07:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:04","latency":"85.441µs"} -{"level":"debug","ts":"2023-08-08T06:07:08.272Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:09","latency":"88.664µs"} -{"level":"debug","ts":"2023-08-08T06:07:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:09","latency":"85.267µs"} -{"level":"debug","ts":"2023-08-08T06:07:13.272Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:14","latency":"99.741µs"} -{"level":"debug","ts":"2023-08-08T06:07:14.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:14","latency":"81.771µs"} -{"level":"debug","ts":"2023-08-08T06:07:18.273Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:19","latency":"87.97µs"} -{"level":"debug","ts":"2023-08-08T06:07:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:19","latency":"96.403µs"} -{"level":"debug","ts":"2023-08-08T06:07:23.274Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:07:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:24","latency":"93.178µs"} -{"level":"debug","ts":"2023-08-08T06:07:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:24","latency":"80.638µs"} -{"level":"debug","ts":"2023-08-08T06:07:28.274Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:07:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:29","latency":"89.277µs"} -{"level":"debug","ts":"2023-08-08T06:07:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:29","latency":"92.268µs"} -{"level":"debug","ts":"2023-08-08T06:07:33.275Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:34","latency":"92.769µs"} -{"level":"debug","ts":"2023-08-08T06:07:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:34","latency":"89.838µs"} -{"level":"debug","ts":"2023-08-08T06:07:38.276Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:39","latency":"93.919µs"} -{"level":"debug","ts":"2023-08-08T06:07:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:39","latency":"96.005µs"} -{"level":"debug","ts":"2023-08-08T06:07:43.277Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:44","latency":"101.454µs"} -{"level":"debug","ts":"2023-08-08T06:07:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:44","latency":"103.644µs"} -{"level":"debug","ts":"2023-08-08T06:07:48.277Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:49","latency":"84.012µs"} -{"level":"debug","ts":"2023-08-08T06:07:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:49","latency":"76.936µs"} -{"level":"debug","ts":"2023-08-08T06:07:53.278Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:54","latency":"114.448µs"} -{"level":"debug","ts":"2023-08-08T06:07:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:54","latency":"116.225µs"} -{"level":"debug","ts":"2023-08-08T06:07:58.278Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:07:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:59","latency":"105.483µs"} -{"level":"debug","ts":"2023-08-08T06:07:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:07:59","latency":"110.953µs"} -{"level":"debug","ts":"2023-08-08T06:08:03.279Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:04","latency":"95.64µs"} -{"level":"debug","ts":"2023-08-08T06:08:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:04","latency":"105.629µs"} -{"level":"debug","ts":"2023-08-08T06:08:08.279Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:09","latency":"92.485µs"} -{"level":"debug","ts":"2023-08-08T06:08:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:09","latency":"94.869µs"} -{"level":"debug","ts":"2023-08-08T06:08:13.279Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:14","latency":"111.118µs"} -{"level":"debug","ts":"2023-08-08T06:08:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:14","latency":"85.167µs"} -{"level":"debug","ts":"2023-08-08T06:08:18.280Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:19","latency":"97.599µs"} -{"level":"debug","ts":"2023-08-08T06:08:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:19","latency":"91.585µs"} -{"level":"debug","ts":"2023-08-08T06:08:23.281Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:24","latency":"91.754µs"} -{"level":"debug","ts":"2023-08-08T06:08:24.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:24","latency":"96.617µs"} -{"level":"debug","ts":"2023-08-08T06:08:28.281Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:08:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:29","latency":"93.637µs"} -{"level":"debug","ts":"2023-08-08T06:08:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:29","latency":"69.206µs"} -{"level":"debug","ts":"2023-08-08T06:08:33.282Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:34","latency":"103.238µs"} -{"level":"debug","ts":"2023-08-08T06:08:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:34","latency":"94.539µs"} -{"level":"debug","ts":"2023-08-08T06:08:38.282Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:39","latency":"94.973µs"} -{"level":"debug","ts":"2023-08-08T06:08:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:39","latency":"94.621µs"} -{"level":"debug","ts":"2023-08-08T06:08:43.283Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:44","latency":"102.918µs"} -{"level":"debug","ts":"2023-08-08T06:08:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:44","latency":"90.396µs"} -{"level":"debug","ts":"2023-08-08T06:08:48.283Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:08:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:49","latency":"100.17µs"} -{"level":"debug","ts":"2023-08-08T06:08:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:49","latency":"104.722µs"} -{"level":"debug","ts":"2023-08-08T06:08:53.283Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:08:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:54","latency":"93.284µs"} -{"level":"debug","ts":"2023-08-08T06:08:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:54","latency":"107.734µs"} -{"level":"debug","ts":"2023-08-08T06:08:58.284Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:59","latency":"89.136µs"} -{"level":"debug","ts":"2023-08-08T06:08:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:08:59","latency":"94.732µs"} -{"level":"debug","ts":"2023-08-08T06:09:03.284Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:09:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:04","latency":"110.353µs"} -{"level":"debug","ts":"2023-08-08T06:09:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:04","latency":"88.395µs"} -{"level":"debug","ts":"2023-08-08T06:09:08.285Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:09:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:09","latency":"89.396µs"} -{"level":"debug","ts":"2023-08-08T06:09:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:09","latency":"102.348µs"} -{"level":"debug","ts":"2023-08-08T06:09:13.286Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:14","latency":"101.541µs"} -{"level":"debug","ts":"2023-08-08T06:09:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:14","latency":"151.152µs"} -{"level":"debug","ts":"2023-08-08T06:09:18.287Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:19","latency":"93.077µs"} -{"level":"debug","ts":"2023-08-08T06:09:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:19","latency":"89.909µs"} -{"level":"debug","ts":"2023-08-08T06:09:23.287Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:09:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:24","latency":"80.254µs"} -{"level":"debug","ts":"2023-08-08T06:09:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:24","latency":"118.694µs"} -{"level":"debug","ts":"2023-08-08T06:09:28.288Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:29","latency":"117.046µs"} -{"level":"debug","ts":"2023-08-08T06:09:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:29","latency":"106.858µs"} -{"level":"info","ts":"2023-08-08T06:09:33.254Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","peersUndetected":0,"peersDetected":0,"statusByPeer":"map[]","peersToDetect":0} -{"level":"debug","ts":"2023-08-08T06:09:33.289Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:34","latency":"93.563µs"} -{"level":"debug","ts":"2023-08-08T06:09:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:34","latency":"87.987µs"} -{"level":"debug","ts":"2023-08-08T06:09:38.289Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:39","latency":"92.719µs"} -{"level":"debug","ts":"2023-08-08T06:09:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:39","latency":"80.768µs"} -{"level":"debug","ts":"2023-08-08T06:09:43.289Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:44.395Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:44","latency":"51.951µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.583Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:44","latency":"48.98µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:44","latency":"92.133µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:44","latency":"76.432µs"} -{"level":"debug","ts":"2023-08-08T06:09:48.290Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:49","latency":"90.073µs"} -{"level":"debug","ts":"2023-08-08T06:09:49.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:49","latency":"82.521µs"} -{"level":"debug","ts":"2023-08-08T06:09:53.290Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:54","latency":"85.717µs"} -{"level":"debug","ts":"2023-08-08T06:09:54.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:54","latency":"92.667µs"} -{"level":"debug","ts":"2023-08-08T06:09:58.291Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:09:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:59","latency":"85.03µs"} -{"level":"debug","ts":"2023-08-08T06:09:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:09:59","latency":"89.801µs"} -{"level":"debug","ts":"2023-08-08T06:10:00.397Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:00","latency":"3.792024ms"} -{"level":"info","ts":"2023-08-08T06:10:00.593Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-08T06:10:00.593Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} -{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-08T06:10:00.593Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-08T06:10:00.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"info","ts":"2023-08-08T06:10:00.821Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:00.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:00.821Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","duration":791} -{"level":"info","ts":"2023-08-08T06:10:00.822Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"info","ts":"2023-08-08T06:10:00.822Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:10:00.822Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"85cbe1814f4b0e50dec35be7664e167bc18079028725437823828a666537f79e\\\" \\n\\ntransmitterID = \\\"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:00","latency":"236.96495ms"} -{"level":"debug","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:00.898Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamName":"ragedisco/v1","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648"} -{"level":"info","ts":"2023-08-08T06:10:00.899Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:00.899Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","numLoaded":1,"peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","numQueried":5,"found":["12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"],"loaded":["12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"],"id":"ragep2p","queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numFound":1} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracleID":1,"bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"c13cad07338483c30d51455ea72a9e75eb919a8103efdab06b8ead473b52bdf4","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312"} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":1,"_id":"OCREndpointV2","id":"PeerV2"} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:10:00.902Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:10:00.903Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:10:00.903Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","previousNe":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"ne":1} -{"level":"info","ts":"2023-08-08T06:10:00.903Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":1,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:00.973Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:01.718Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:01.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:01.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:02.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:02.732Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:02.808Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:03.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:03.155Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:03.292Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:03.772Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:03.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:04.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:04.191Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:04.763Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"info","ts":"2023-08-08T06:10:04.766Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"out","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","remoteAddr":"10.14.25.244:6690"} -{"level":"info","ts":"2023-08-08T06:10:04.767Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"00524d930a2a3c4b72359e389ebfacb8424cd4baefba7601c261db2d4c380db9","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:04.767Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:04","latency":"103.034µs"} -{"level":"debug","ts":"2023-08-08T06:10:04.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:04","latency":"113.265µs"} -{"level":"debug","ts":"2023-08-08T06:10:04.870Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:04.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:05.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:05.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:05.902Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:05.978Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:06.098Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:06.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:06.939Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:07.015Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:07.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:07.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:07.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:08.055Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:08.275Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:08.293Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:08.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.079Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.333Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.484Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:09","latency":"98.896µs"} -{"level":"debug","ts":"2023-08-08T06:10:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:09","latency":"95.27µs"} -{"level":"debug","ts":"2023-08-08T06:10:10.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:10.231Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:10.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:10.567Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.232Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:11.815Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:12.182Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:12.258Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:12.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:12.668Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:13.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:13.293Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:13.295Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:13.550Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:13.702Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.273Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.349Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.569Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:14","latency":"105.384µs"} -{"level":"debug","ts":"2023-08-08T06:10:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:14","latency":"113.311µs"} -{"level":"debug","ts":"2023-08-08T06:10:15.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.371Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.808Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.974Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:10:16.319Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"warn","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:17.415Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:17.431Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.872Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.294Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:18.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.492Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.961Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:19.387Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:19.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.495Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:19","latency":"95.306µs"} -{"level":"debug","ts":"2023-08-08T06:10:19.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:19","latency":"96.098µs"} -{"level":"debug","ts":"2023-08-08T06:10:19.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.972Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.492Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.832Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.904Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:20.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.574Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.650Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.850Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.581Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.657Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:22.849Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:22.851Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","direction":"out","remoteAddr":"10.14.31.164:6690","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamName":"ragedisco/v1","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648"} -{"level":"debug","ts":"2023-08-08T06:10:22.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.295Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:23.662Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.036Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.742Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:24","latency":"87.814µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:24","latency":"69.747µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.672Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.062Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.767Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.844Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.912Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.879Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.923Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.296Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:28.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.917Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.982Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.134Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:29.389Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-08T06:10:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:29","latency":"85.687µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:29","latency":"109.209µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.847Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.923Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.201Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.981Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.050Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:10:31.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:31.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:31.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:31.259Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"out","remoteAddr":"10.14.88.105:6690","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc"} -{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","streamName":"ragedisco/v1","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:31.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.952Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.204Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.356Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.296Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:33.443Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:34","latency":"71.33µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:34","latency":"107.244µs"} -{"level":"debug","ts":"2023-08-08T06:10:35.035Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":2,"candidateEpochs":[2,2,2]} -{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","l":4,"e":1,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":1} -{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"leader":2} -{"level":"debug","ts":"2023-08-08T06:10:35.258Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:35.258Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:10:35.261Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.00360552} -{"level":"debug","ts":"2023-08-08T06:10:35.261Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.00368441} -{"level":"debug","ts":"2023-08-08T06:10:35.261Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"leader":2,"round":1,"observation":"CNu4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:35.452Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.604Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.194Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.716Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.239Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.297Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:38.623Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.775Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:39.264Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":1},"initialRound":true,"alphaReportInfinite":false,"result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deltaC":0,"unfulfilledRequest":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":2,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":0,"Round":0}} -{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001400073} -{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001489789} -{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:39.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.636Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:39","latency":"96.167µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:39","latency":"95.972µs"} -{"level":"debug","ts":"2023-08-08T06:10:40.318Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.604Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:10:40.604Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:40.652Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.897Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.382Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.843Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:43.269Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"deviation":true,"unfulfilledRequest":true,"deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","result":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":2},"initialRound":true,"alphaReportInfinite":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":2,"round":2,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001450955} -{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001475804} -{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:43.298Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:43.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.491Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.016Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:44.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}"} -{"level":"debug","ts":"2023-08-08T06:10:44.466Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:44","latency":"95.123µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:44","latency":"86.857µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.941Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.093Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.559Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.126Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:10:46.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.618Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.028Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:47.275Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"initialRound":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"result":true,"deltaC":0,"unfulfilledRequest":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":3},"deviation":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"leader":2,"roundMax":3,"round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":3,"sender":1,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":3,"candidateEpochs":[3,3,3]} -{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviates":true,"result":true,"reportEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0}} -{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"leader":2,"e":2,"l":2} -{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":2,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:47.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.190Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.298Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:48.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.683Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.281Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.758Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:10:49.760Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"out","remoteAddr":"10.14.107.222:6690","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312"} -{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d","streamName":"ragedisco/v1","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:49.761Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","msg":{"Epoch":1,"Round":1,"Query":null},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":2,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3,"sender":4,"oid":1} -{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001432206} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001441842} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"observation":"COm4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:49.771Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:49","latency":"79.259µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:49","latency":"97.617µs"} -{"level":"debug","ts":"2023-08-08T06:10:50.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.306Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.743Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.819Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.229Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.381Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.782Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.868Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.944Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.299Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:53.319Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.470Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"result":true,"reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":1,"sender":1,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":3,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001414945} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001446569} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.009Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:54","latency":"72.821µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:54","latency":"117.09µs"} -{"level":"debug","ts":"2023-08-08T06:10:55.032Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.049Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.147Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.639Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaC":0,"alphaReportInfinite":false,"initialRound":false,"deviation":true,"deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":3,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001422293} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001458715} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4,"round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:58.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.232Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.299Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:58.505Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.656Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.551Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.703Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:59","latency":"85.106µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:10:59","latency":"86.058µs"} -{"level":"debug","ts":"2023-08-08T06:11:00.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.766Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.202Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:11:01.299Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.375Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"deltaCTimeout":true,"unfulfilledRequest":false,"deviation":true,"initialRound":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","alphaReportInfinite":false,"deltaC":0,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":4,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":3,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"newEpoch":4,"candidateEpochs":[4,4,4],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"leader":4,"e":3} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":4,"leader":0} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:01.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.732Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.300Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:03.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.529Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.792Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.533Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:04","latency":"102.32µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:04","latency":"80.207µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.893Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.044Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.637Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.714Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.980Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.132Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.670Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.300Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:08.755Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.260Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:09","latency":"93.78µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:09","latency":"99.767µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.855Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.208Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.360Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.859Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.935Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.227Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.936Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.257Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.913Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.989Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.301Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:13.308Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.075Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.329Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.482Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:14","latency":"99.563µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:14","latency":"151.153µs"} -{"level":"debug","ts":"2023-08-08T06:11:15.073Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.149Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.346Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.278Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:11:16.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.531Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.201Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.438Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.302Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:18.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.555Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:19","latency":"88.82µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:19","latency":"91.184µs"} -{"level":"debug","ts":"2023-08-08T06:11:20.260Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.336Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.711Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.288Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.364Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.718Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":4,"leader":0,"e":4,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.00140189} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001393167} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":1,"observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:22.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.750Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.303Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:23.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.627Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.779Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:24","latency":"83.519µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:24","latency":"93.129µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.742Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:25.783Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","initialRound":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","result":true,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"unfulfilledRequest":false,"deltaC":0} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false} -{"level":"info","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":3,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001441697} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001450128} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:25.861Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:25.861Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:25.861Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:11:25.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.937Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"31187237-db3c-49d6-8f86-b2dd23f66eea","signature":"S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"} -{"level":"debug","ts":"2023-08-08T06:11:25.937Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U","id":"31187237-db3c-49d6-8f86-b2dd23f66eea"} -{"level":"debug","ts":"2023-08-08T06:11:26.457Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"31187237-db3c-49d6-8f86-b2dd23f66eea","signature":"S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"} -{"level":"debug","ts":"2023-08-08T06:11:26.457Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"],"id":"31187237-db3c-49d6-8f86-b2dd23f66eea"} -{"level":"debug","ts":"2023-08-08T06:11:26.457Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"31187237-db3c-49d6-8f86-b2dd23f66eea","signatures":["S2msdvY8AeL6JPRJUyveZe54oQ5TkZEK65jxHbvsPM9FXgjwqcpGNuSQ5xA2V3a28csFYXmBALxQYKhdsMsTW4U"]} -{"level":"debug","ts":"2023-08-08T06:11:26.522Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.598Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.834Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.526Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.872Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.304Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:28.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.266Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":2,"Round":1}} -{"level":"info","ts":"2023-08-08T06:11:29.266Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:29.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true,"initialRound":false,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"result":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z"} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":5,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":5,"Round":2},"result":true} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":2,"sender":3,"oid":1} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001466595} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001482208} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:29","latency":"88.281µs"} -{"level":"debug","ts":"2023-08-08T06:11:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:29","latency":"85.101µs"} -{"level":"debug","ts":"2023-08-08T06:11:30.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.716Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.028Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.355Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:11:31.685Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.761Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.259Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.305Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-08T06:11:33.792Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaReportInfinite":false,"unfulfilledRequest":false,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","initialRound":false,"alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","messageRound":4,"roundMax":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"round":3,"sender":1,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"result":true,"reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3,"sender":4} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":3,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":6,"candidateEpochs":[6,6,6]} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","e":5,"l":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":6,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:11:33.805Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.870Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:33.870Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":3,"epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:33.881Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.946Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"4cf1236f-7b58-425f-8102-be4685b29874","signature":"3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r"} -{"level":"debug","ts":"2023-08-08T06:11:33.946Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r","id":"4cf1236f-7b58-425f-8102-be4685b29874"} -{"level":"debug","ts":"2023-08-08T06:11:34.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.382Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"4cf1236f-7b58-425f-8102-be4685b29874","signature":"3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r"} -{"level":"debug","ts":"2023-08-08T06:11:34.382Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"4cf1236f-7b58-425f-8102-be4685b29874","signatures":["3YrcLt8gqZ75trz6t126QipdRJAKXrBdiXJVEDdmAuRAVFQkJX7oKtHigVEjaDPvJ3XK1bV3w1KzJHotGcbZS41r"]} -{"level":"debug","ts":"2023-08-08T06:11:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:34","latency":"105.233µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:34","latency":"108.59µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.842Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.918Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.884Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.960Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.308Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.886Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.962Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.278Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":3}} -{"level":"info","ts":"2023-08-08T06:11:37.278Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:37.408Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.560Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.952Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.305Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:38.478Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.629Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.014Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.577Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:39","latency":"93.846µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:39","latency":"94.901µs"} -{"level":"debug","ts":"2023-08-08T06:11:40.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.119Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.808Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.063Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.139Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.307Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:43.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.904Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.370Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:44","latency":"87.706µs"} -{"level":"debug","ts":"2023-08-08T06:11:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:44","latency":"92.404µs"} -{"level":"debug","ts":"2023-08-08T06:11:44.828Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.431Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:11:46.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.109Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.308Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:48.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.576Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.086Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.529Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:49","latency":"90.439µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:49","latency":"92.55µs"} -{"level":"debug","ts":"2023-08-08T06:11:50.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.559Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.221Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.372Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.596Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.672Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.426Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.603Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.309Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:53.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.476Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.700Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":6,"leader":0,"e":6,"l":0} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:54.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.506Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:54","latency":"91.143µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:54","latency":"98.758µs"} -{"level":"debug","ts":"2023-08-08T06:11:55.440Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.592Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.835Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.490Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.641Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.845Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.494Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.646Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.898Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.309Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:58.582Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.733Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.652Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:59","latency":"90.128µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:11:59","latency":"77.203µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.677Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.044Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.510Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:12:01.718Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.041Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.117Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.721Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.873Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.076Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.311Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:03.796Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.948Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:04","latency":"89.875µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:04","latency":"101.514µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.011Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.248Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.324Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.186Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.228Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.311Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:08.383Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.285Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.335Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.411Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:09","latency":"86.849µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:09","latency":"93.434µs"} -{"level":"debug","ts":"2023-08-08T06:12:10.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.326Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.398Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.474Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.538Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.312Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:13.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.627Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.703Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":7,"leader":0,"e":7,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001419408} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001445463} -{"level":"debug","ts":"2023-08-08T06:12:13.800Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2,"round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:14.406Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.648Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.724Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:14","latency":"86.497µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:14","latency":"90.203µs"} -{"level":"debug","ts":"2023-08-08T06:12:15.464Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.616Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.586Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:12:16.694Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.797Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.873Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.622Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.773Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaC":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"result":true,"initialRound":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"round":1,"leader":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","contractEpochRound":{"Epoch":5,"Round":3},"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001495487} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001431931} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2,"round":2,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:17.854Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.313Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:18.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.027Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:19","latency":"89.455µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:19","latency":"90.102µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.913Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.979Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.055Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.070Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","deltaCTimeout":true,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviation":true,"result":true,"unfulfilledRequest":false,"initialRound":false,"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"leader":2,"round":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":8,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":2},"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":8,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001449479} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001477578} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.959Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.032Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.885Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.037Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.154Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.271Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":2}} -{"level":"info","ts":"2023-08-08T06:12:23.271Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:23.314Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:23.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.093Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.168Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:24","latency":"83.361µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:24","latency":"95.152µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.965Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.117Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.168Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.244Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviation":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"result":true,"initialRound":false,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z"} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":4,"messageRound":4,"roundMax":3,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":8,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":8,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":9,"candidateEpochs":[9,9,9]} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}}} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","e":8,"l":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":3},"latestAcceptedEpochRound":{"Epoch":8,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"sender":3,"epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"leader":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":8,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001374042} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001438372} -{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"oid":1,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:25.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.139Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.044Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.195Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.382Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.308Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.314Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:28.384Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.148Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.300Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.470Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","alphaReportInfinite":false,"initialRound":false,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","unfulfilledRequest":false,"alphaReportPPB":0,"deltaC":0,"result":true,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:29","latency":"97.523µs"} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:29","latency":"84.16µs"} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportEpochRound":{"Epoch":9,"Round":1},"latestAcceptedEpochRound":{"Epoch":8,"Round":3},"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"info","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":1,"sender":4,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001574989} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001733099} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"leader":3,"epoch":9,"round":2,"observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:29.893Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:29.894Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:29.969Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"74e6b976-d149-44a2-a869-e275e4250a68","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"} -{"level":"debug","ts":"2023-08-08T06:12:29.969Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK","id":"74e6b976-d149-44a2-a869-e275e4250a68"} -{"level":"debug","ts":"2023-08-08T06:12:30.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.407Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.476Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"} -{"level":"debug","ts":"2023-08-08T06:12:30.483Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.089Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"74e6b976-d149-44a2-a869-e275e4250a68","signature":"5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"} -{"level":"debug","ts":"2023-08-08T06:12:31.089Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"74e6b976-d149-44a2-a869-e275e4250a68","signatures":["5TbZSqhP6HDKCruCTQku5yYMZ9QVqxCeR4naozNavRB2E5bH61Q4rc4bGnzNo4LZzf12MmHJpEiu2J56L7UtKXJK"]} -{"level":"debug","ts":"2023-08-08T06:12:31.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.496Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.662Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:12:32.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.509Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.585Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.315Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.315Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:33.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.554Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.630Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.769Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"info","ts":"2023-08-08T06:12:33.769Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"result":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","deviation":true,"unfulfilledRequest":false,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2},"initialRound":false,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"oid":1,"leader":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":3,"epoch":9,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001474054} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001457975} -{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":3,"round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:34.352Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.590Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:34","latency":"96.735µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:34","latency":"78.986µs"} -{"level":"debug","ts":"2023-08-08T06:12:35.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.688Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.764Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.631Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.830Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.774Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:37.774Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"info","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaCTimeout":true,"deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"result":true,"alphaReportInfinite":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"leader":3,"epoch":9,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"leader":3,"round":4,"messageRound":4,"roundMax":3,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"info","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":9,"e":9,"l":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":9,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3} -{"level":"info","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":9,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001339356} -{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.00138882} -{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"leader":2,"round":1,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:37.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.316Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:38.576Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.727Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.850Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.654Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:39","latency":"92.944µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:39","latency":"86.475µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.875Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.734Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.886Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.928Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.004Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.779Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":3,"Round":3}} -{"level":"info","ts":"2023-08-08T06:12:41.779Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1},"deviation":true,"deltaC":0,"unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"deltaCTimeout":true,"initialRound":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":1,"sender":3} -{"level":"info","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001431475} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001451935} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"leader":2,"round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:41.907Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.909Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:41.909Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.985Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"} -{"level":"debug","ts":"2023-08-08T06:12:41.985Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e"} -{"level":"debug","ts":"2023-08-08T06:12:42.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.120Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.229Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"} -{"level":"debug","ts":"2023-08-08T06:12:42.810Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.835Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e","signature":"4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"} -{"level":"debug","ts":"2023-08-08T06:12:42.835Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"d66bdb17-9c80-47df-99c5-d14627af3c6e","signatures":["4hVbqZKk25NVBKAaZyZDTL2ntTs8bUXCNxEAoEiKuJN9fMhyf2XgwXuxiLLKpbCLRezgFBdKZW7hEA7FRccAMGor"]} -{"level":"debug","ts":"2023-08-08T06:12:42.962Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.099Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.317Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:43.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.116Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.192Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:44","latency":"90.999µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:44","latency":"85.078µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.938Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.090Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.147Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","initialRound":false,"deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":false,"result":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"contractEpochRound":{"Epoch":10,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":1}} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":1,"epoch":10,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001454371} -{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001425493} -{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"leader":2,"round":3,"observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:45.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.102Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.738Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"debug","ts":"2023-08-08T06:12:46.960Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.222Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.298Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.296Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.318Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:48.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.059Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.392Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:49","latency":"75.599µs"} -{"level":"debug","ts":"2023-08-08T06:12:49.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:49","latency":"89.514µs"} -{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"result":true,"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","deltaC":0,"deviation":true,"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":10,"leader":2,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"round":3,"epoch":10,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","latestAcceptedEpochRound":{"Epoch":10,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"reportEpochRound":{"Epoch":10,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":10,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":11,"candidateEpochs":[11,11,11]} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":10,"leader":2,"e":10,"l":2} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001418014} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001659404} -{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"oid":1} -{"level":"debug","ts":"2023-08-08T06:12:50.103Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.444Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.305Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.444Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.334Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.484Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.214Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.318Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:53.366Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.524Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","initialRound":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"deltaCTimeout":true,"deviation":true,"deltaC":0,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","reportingPlugin":"NumericalMedian","unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":11,"leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":1,"epoch":11,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":11,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":3},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","epoch":11,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.00143306} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001494889} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2} -{"level":"debug","ts":"2023-08-08T06:12:54.216Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.613Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:54","latency":"94.085µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:54","latency":"95.186µs"} -{"level":"debug","ts":"2023-08-08T06:12:55.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.616Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.692Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.336Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.500Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.697Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.773Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:57.852Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","deltaC":0,"deltaCTimeout":true,"unfulfilledRequest":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"alphaReportInfinite":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","result":true} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":11,"Round":2},"latestAcceptedEpochRound":{"Epoch":11,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca"} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":3,"epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":0,"jobName":"","specID":1,"runTime":0.001448091} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","specID":1,"runTime":0.001415177} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","leader":2,"round":3,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:58.319Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:58.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.511Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.782Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.385Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.536Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.817Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:59","latency":"94.017µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:12:59","latency":"69.25µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.917Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.444Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.911Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.814Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj"} -{"level":"info","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"result":true,"deviation":true,"deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","deltaCTimeout":true,"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"round":3,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":11,"leader":2,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","round":3,"sender":3,"oid":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"sender":2,"epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"latestAcceptedEpochRound":{"Epoch":11,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"newEpoch":12,"candidateEpochs":[12,12,12]} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"sender":1,"epoch":11,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":1,"epoch":11,"round":3} -{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":11,"l":2} -{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-1-a5cf1dc1-634f-4857-8f44-fe32711b13ca","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"Eud8AWhAdGgyd7iZjoc4SmkCfVJeUc1PJYD6UGpFDnXj","oid":1,"epoch":12,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.047Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.520Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.671Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.320Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:13:03.588Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.740Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.052Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.128Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:04","latency":"105.921µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:04","latency":"105.799µs"} -{"level":"debug","ts":"2023-08-08T06:13:05.145Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.221Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.257Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.727Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.878Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.296Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.762Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.272Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.321Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:13:08.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.773Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.360Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.788Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:09","latency":"89.954µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.818Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.40.242","errors":"","servedAt":"2023-08-08 06:13:09","latency":"89.952µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.441Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.517Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.472Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log deleted file mode 100644 index 4deb47c36..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-08 06:04:07.742 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:07.759 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC -2023-08-08 06:04:07.763 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-08 06:04:08.452 UTC [48] LOG: received fast shutdown request -.2023-08-08 06:04:08.456 UTC [48] LOG: aborting any active transactions -2023-08-08 06:04:08.458 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-08 06:04:08.458 UTC [50] LOG: shutting down -2023-08-08 06:04:08.547 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-08 06:04:08.561 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-08 06:04:08.561 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-08 06:04:08.564 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:08.635 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC -2023-08-08 06:04:08.640 UTC [1] LOG: database system is ready to accept connections -2023-08-08 06:04:09.950 UTC [92] FATAL: role "chainlink" does not exist -2023-08-08 06:04:10.852 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-08 06:04:10.852 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-08 06:04:10.852 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-08 06:04:10.852 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-08 06:04:10.853 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-08 06:04:10.853 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log deleted file mode 100644 index 086382e92..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_2/node.log +++ /dev/null @@ -1,1771 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-08T06:04:10.838Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.838Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.839Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:10.839Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-08T06:04:10.844Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.844Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.844Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"1832bc37-326d-4656-b1ee-80dfbc6c1d72"} -{"level":"debug","ts":"2023-08-08T06:04:10.849Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"1832bc37-326d-4656-b1ee-80dfbc6c1d72"} -{"level":"debug","ts":"2023-08-08T06:04:10.852Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/08 06:04:11 OK 0001_initial.sql -2023/08/08 06:04:11 OK 0002_gormv2.sql -2023/08/08 06:04:11 OK 0003_eth_logs_table.sql -2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql -2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql -2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql -2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/08 06:04:11 OK 0010_bridge_fk.sql -2023/08/08 06:04:11 OK 0011_latest_round_requested.sql -2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql -2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql -2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql -2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql -2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/08 06:04:11 OK 0018_add_node_version_table.sql -2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/08 06:04:11 OK 0020_remove_result_task.sql -2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql -2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql -2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql -2023/08/08 06:04:11 OK 0025_create_log_config_table.sql -2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql -2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/08 06:04:11 OK 0028_vrf_v2.sql -2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql -2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql -2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql -2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql -2023/08/08 06:04:11 OK 0036_external_job_id.go -2023/08/08 06:04:11 OK 0037_cascade_deletes.sql -2023/08/08 06:04:11 OK 0038_create_csa_keys.sql -2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql -2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql -2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql -2023/08/08 06:04:11 OK 0042_create_job_proposals.sql -2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql -2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go -2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/08 06:04:11 OK 0056_multichain.go -2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql -2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/08 06:04:11 OK 0060_combine_keys_tables.sql -2023/08/08 06:04:11 OK 0061_multichain_relations.sql -2023/08/08 06:04:11 OK 0062_upgrade_keepers.sql -2023/08/08 06:04:11 OK 0063_add_job_proposal_timestamp.sql -2023/08/08 06:04:11 OK 0064_cascade_delete_chain_nodes.sql -2023/08/08 06:04:11 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/08 06:04:11 OK 0066_update_job_proposal_status.sql -2023/08/08 06:04:11 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/08 06:04:11 OK 0068_eth_tx_from_address_idx.sql -2023/08/08 06:04:11 OK 0069_remove_unused_columns.sql -2023/08/08 06:04:11 OK 0070_dynamic_fee_txes.sql -2023/08/08 06:04:11 OK 0071_allow_null_json_serializable.sql -2023/08/08 06:04:11 OK 0072_drop_unused_tables.sql -2023/08/08 06:04:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/08 06:04:11 OK 0074_simulation_eth_tx.sql -2023/08/08 06:04:11 OK 0075_unique_job_names.sql -2023/08/08 06:04:11 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/08 06:04:11 OK 0077_add_webauthn_table.sql -2023/08/08 06:04:11 OK 0078_only_one_version.sql -2023/08/08 06:04:11 OK 0079_vrf_v2_fields.sql -2023/08/08 06:04:11 OK 0080_drop_unused_cols.sql -2023/08/08 06:04:11 OK 0081_unconsumed_log_broadcasts.sql -2023/08/08 06:04:11 OK 0082_lease_lock.sql -2023/08/08 06:04:11 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/08 06:04:11 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/08 06:04:11 OK 0085_requested_confs_delay.sql -2023/08/08 06:04:11 OK 0086_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0087_ocr2_tables.sql -2023/08/08 06:04:12 OK 0088_vrfv2_request_timeout.sql -2023/08/08 06:04:12 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/08 06:04:12 OK 0090_ocr_new_timeouts.sql -2023/08/08 06:04:12 OK 0091_ocr2_relay.sql -2023/08/08 06:04:12 OK 0092_bptxm_tx_checkers.sql -2023/08/08 06:04:12 OK 0093_terra_txm.sql -2023/08/08 06:04:12 OK 0094_blockhash_store_job.sql -2023/08/08 06:04:12 OK 0095_terra_fcd.sql -2023/08/08 06:04:12 OK 0096_create_job_proposal_specs.sql -2023/08/08 06:04:12 OK 0097_bootstrap_spec.sql -2023/08/08 06:04:12 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/08 06:04:12 OK 0099_terra_msgs_created_at.sql -2023/08/08 06:04:12 OK 0100_bootstrap_config.sql -2023/08/08 06:04:12 OK 0101_generic_ocr2.sql -2023/08/08 06:04:12 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/08 06:04:12 OK 0103_terra_msgs_type_url.sql -2023/08/08 06:04:12 OK 0104_terra_cascade_delete.sql -2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql -2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql -2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql -2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql -2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql -2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql -2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql -2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/08 06:04:12 OK 0115_log_poller.sql -2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql -2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql -2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql -2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql -2023/08/08 06:04:12 OK 0121_remove_log_configs.sql -2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql -2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql -2023/08/08 06:04:12 OK 0126_remove_observation_source.sql -2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql -2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql -2023/08/08 06:04:12 OK 0131_add_multi_user.sql -2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql -2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql -2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql -2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql -2023/08/08 06:04:12 OK 0137_remove_tx_index.sql -2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql -2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql -2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql -2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/08 06:04:12 OK 0144_optimize_lp.sql -2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql -2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0148_dkg_shares.sql -2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql -2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql -2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql -2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql -2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql -2023/08/08 06:04:12 OK 0155_remove_terra.sql -2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql -2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql -2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql -2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/08 06:04:12 OK 0164_add_cosmos.sql -2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql -2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql -2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql -2023/08/08 06:04:12 OK 0168_drop_node_tables.sql -2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql -2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql -2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql -2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql -2023/08/08 06:04:12 OK 0174_vrf_owner.sql -2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql -2023/08/08 06:04:12 OK 0176_s4_shared_table.sql -2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql -2023/08/08 06:04:12 OK 0178_drop_access_list.sql -2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql -2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql -2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql -2023/08/08 06:04:12 OK 0183_functions_new_fields.sql -2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql -2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql -2023/08/08 06:04:12 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.685Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.937Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 66afacf79e315b1637d4903499d545519c490bb30af4069b49a4d33dd34d6e17 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.937Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:19.148Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID CNuNAqyQMGDp2usB6y1EN7JyY2hcsmVuFrBW9MCmX1LP","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:21.164Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID a4305c8f170b361bf0338420acfd5e17ffdc187cad1f96c16aa2a45e467a2ef1","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.444Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.637Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.638Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-08T06:04:23.638Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-08T06:04:23.638Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-08T06:04:23.638Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-08T06:04:23.638Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.638Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-08T06:04:23.639Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 40979. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":40979} -{"level":"debug","ts":"2023-08-08T06:04:23.639Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":40979,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-08T06:04:23.640Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","v1listenPort":40979,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/40979","id":"PeerV1","v1peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:04:23.640Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}"} -{"level":"info","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:04:23.641Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"recvLoop"} -{"level":"debug","ts":"2023-08-08T06:04:23.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:04:23.643Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-08T06:04:23.643Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.643Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.61s","version":"2.4.0@d0c54ea","appID":"1832bc37-326d-4656-b1ee-80dfbc6c1d72"} -{"level":"debug","ts":"2023-08-08T06:04:23.643Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000634686} -{"level":"info","ts":"2023-08-08T06:04:23.651Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-08T06:04:23.654Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010938048} -{"level":"debug","ts":"2023-08-08T06:04:23.654Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.782Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.832824ms"} -{"level":"debug","ts":"2023-08-08T06:04:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:24","latency":"244.996µs"} -{"level":"debug","ts":"2023-08-08T06:04:28.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:29.102Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:04:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:29","latency":"76.589µs"} -{"level":"debug","ts":"2023-08-08T06:04:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:29","latency":"109.335µs"} -{"level":"info","ts":"2023-08-08T06:04:33.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-08T06:04:33.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:34","latency":"96.983µs"} -{"level":"debug","ts":"2023-08-08T06:04:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:34","latency":"103.204µs"} -{"level":"debug","ts":"2023-08-08T06:04:38.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:39","latency":"102.336µs"} -{"level":"debug","ts":"2023-08-08T06:04:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:39","latency":"108.327µs"} -{"level":"debug","ts":"2023-08-08T06:04:43.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:44","latency":"99.687µs"} -{"level":"debug","ts":"2023-08-08T06:04:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:44","latency":"83.158µs"} -{"level":"debug","ts":"2023-08-08T06:04:48.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:49","latency":"92.671µs"} -{"level":"debug","ts":"2023-08-08T06:04:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:49","latency":"101.228µs"} -{"level":"debug","ts":"2023-08-08T06:04:53.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:04:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:54","latency":"92.566µs"} -{"level":"debug","ts":"2023-08-08T06:04:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:54","latency":"87.896µs"} -{"level":"debug","ts":"2023-08-08T06:04:58.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:59","latency":"96.29µs"} -{"level":"debug","ts":"2023-08-08T06:04:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:04:59","latency":"97.533µs"} -{"level":"debug","ts":"2023-08-08T06:05:01.529Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:05:01.530Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-08T06:05:01.655Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-08T06:05:01.657Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:01","latency":"128.086719ms"} -{"level":"debug","ts":"2023-08-08T06:05:03.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:05:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:04","latency":"81.035µs"} -{"level":"debug","ts":"2023-08-08T06:05:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:04","latency":"98.793µs"} -{"level":"debug","ts":"2023-08-08T06:05:08.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:09","latency":"90.255µs"} -{"level":"debug","ts":"2023-08-08T06:05:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:09","latency":"91.089µs"} -{"level":"debug","ts":"2023-08-08T06:05:12.857Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:12","latency":"4.390833ms"} -{"level":"debug","ts":"2023-08-08T06:05:13.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:05:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:14","latency":"113.141µs"} -{"level":"debug","ts":"2023-08-08T06:05:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:14","latency":"113.144µs"} -{"level":"debug","ts":"2023-08-08T06:05:15.060Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:15","latency":"2.009696173s"} -{"level":"debug","ts":"2023-08-08T06:05:17.540Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:17","latency":"2.28585583s"} -{"level":"debug","ts":"2023-08-08T06:05:18.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:19","latency":"88.949µs"} -{"level":"debug","ts":"2023-08-08T06:05:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:19","latency":"81.963µs"} -{"level":"debug","ts":"2023-08-08T06:05:23.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:05:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:24","latency":"113.8µs"} -{"level":"debug","ts":"2023-08-08T06:05:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:24","latency":"113.804µs"} -{"level":"debug","ts":"2023-08-08T06:05:27.712Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"86.268µs"} -{"level":"debug","ts":"2023-08-08T06:05:27.905Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:27","latency":"48.84µs"} -{"level":"debug","ts":"2023-08-08T06:05:28.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:29","latency":"96.075µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:29","latency":"76.707µs"} -{"level":"debug","ts":"2023-08-08T06:05:33.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:05:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:34","latency":"96.953µs"} -{"level":"debug","ts":"2023-08-08T06:05:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:34","latency":"91.565µs"} -{"level":"debug","ts":"2023-08-08T06:05:38.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:39","latency":"92.756µs"} -{"level":"debug","ts":"2023-08-08T06:05:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:39","latency":"76.548µs"} -{"level":"debug","ts":"2023-08-08T06:05:43.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:44","latency":"98.35µs"} -{"level":"debug","ts":"2023-08-08T06:05:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:44","latency":"106.571µs"} -{"level":"debug","ts":"2023-08-08T06:05:48.651Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:49","latency":"96.219µs"} -{"level":"debug","ts":"2023-08-08T06:05:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:49","latency":"93.801µs"} -{"level":"debug","ts":"2023-08-08T06:05:53.651Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:54","latency":"102.144µs"} -{"level":"debug","ts":"2023-08-08T06:05:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:54","latency":"137.484µs"} -{"level":"debug","ts":"2023-08-08T06:05:58.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:59","latency":"88.696µs"} -{"level":"debug","ts":"2023-08-08T06:05:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:05:59","latency":"96.092µs"} -{"level":"debug","ts":"2023-08-08T06:06:03.653Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:04","latency":"110.993µs"} -{"level":"debug","ts":"2023-08-08T06:06:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:04","latency":"111.001µs"} -{"level":"debug","ts":"2023-08-08T06:06:08.653Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:06:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:09","latency":"94.461µs"} -{"level":"debug","ts":"2023-08-08T06:06:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:09","latency":"108.225µs"} -{"level":"debug","ts":"2023-08-08T06:06:13.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:06:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:14","latency":"90.423µs"} -{"level":"debug","ts":"2023-08-08T06:06:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:14","latency":"78.381µs"} -{"level":"debug","ts":"2023-08-08T06:06:18.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:19","latency":"91.783µs"} -{"level":"debug","ts":"2023-08-08T06:06:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:19","latency":"90.34µs"} -{"level":"debug","ts":"2023-08-08T06:06:23.655Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:24","latency":"94.271µs"} -{"level":"debug","ts":"2023-08-08T06:06:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:24","latency":"91.227µs"} -{"level":"debug","ts":"2023-08-08T06:06:28.656Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:29","latency":"91.225µs"} -{"level":"debug","ts":"2023-08-08T06:06:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:29","latency":"90.684µs"} -{"level":"debug","ts":"2023-08-08T06:06:33.657Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:34","latency":"94.42µs"} -{"level":"debug","ts":"2023-08-08T06:06:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:34","latency":"77.297µs"} -{"level":"debug","ts":"2023-08-08T06:06:38.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:39","latency":"94.385µs"} -{"level":"debug","ts":"2023-08-08T06:06:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:39","latency":"84.199µs"} -{"level":"debug","ts":"2023-08-08T06:06:43.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:44","latency":"88.106µs"} -{"level":"debug","ts":"2023-08-08T06:06:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:44","latency":"100.308µs"} -{"level":"debug","ts":"2023-08-08T06:06:48.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:49","latency":"88.542µs"} -{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:49","latency":"94.451µs"} -{"level":"debug","ts":"2023-08-08T06:06:53.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:54","latency":"84.801µs"} -{"level":"debug","ts":"2023-08-08T06:06:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:54","latency":"89.558µs"} -{"level":"debug","ts":"2023-08-08T06:06:58.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:59","latency":"97.96µs"} -{"level":"debug","ts":"2023-08-08T06:06:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:06:59","latency":"101.789µs"} -{"level":"debug","ts":"2023-08-08T06:07:03.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:04","latency":"89.406µs"} -{"level":"debug","ts":"2023-08-08T06:07:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:04","latency":"92.52µs"} -{"level":"debug","ts":"2023-08-08T06:07:08.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:09","latency":"107.931µs"} -{"level":"debug","ts":"2023-08-08T06:07:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:09","latency":"79.064µs"} -{"level":"debug","ts":"2023-08-08T06:07:13.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:07:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:14","latency":"94.459µs"} -{"level":"debug","ts":"2023-08-08T06:07:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:14","latency":"91.378µs"} -{"level":"debug","ts":"2023-08-08T06:07:18.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:07:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:19","latency":"95.527µs"} -{"level":"debug","ts":"2023-08-08T06:07:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:19","latency":"98.988µs"} -{"level":"debug","ts":"2023-08-08T06:07:23.665Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:24","latency":"94.412µs"} -{"level":"debug","ts":"2023-08-08T06:07:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:24","latency":"94.051µs"} -{"level":"debug","ts":"2023-08-08T06:07:28.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:29","latency":"92.725µs"} -{"level":"debug","ts":"2023-08-08T06:07:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:29","latency":"91.207µs"} -{"level":"debug","ts":"2023-08-08T06:07:33.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:34","latency":"106.899µs"} -{"level":"debug","ts":"2023-08-08T06:07:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:34","latency":"108.526µs"} -{"level":"debug","ts":"2023-08-08T06:07:38.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:39","latency":"93.913µs"} -{"level":"debug","ts":"2023-08-08T06:07:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:39","latency":"97.246µs"} -{"level":"debug","ts":"2023-08-08T06:07:43.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:44","latency":"94.627µs"} -{"level":"debug","ts":"2023-08-08T06:07:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:44","latency":"87.317µs"} -{"level":"debug","ts":"2023-08-08T06:07:48.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:49","latency":"85.922µs"} -{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:49","latency":"113.722µs"} -{"level":"debug","ts":"2023-08-08T06:07:53.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:54","latency":"101.385µs"} -{"level":"debug","ts":"2023-08-08T06:07:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:54","latency":"98.375µs"} -{"level":"debug","ts":"2023-08-08T06:07:58.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:59","latency":"112.742µs"} -{"level":"debug","ts":"2023-08-08T06:07:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:07:59","latency":"73.923µs"} -{"level":"debug","ts":"2023-08-08T06:08:03.670Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:04","latency":"96.542µs"} -{"level":"debug","ts":"2023-08-08T06:08:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:04","latency":"84.275µs"} -{"level":"debug","ts":"2023-08-08T06:08:08.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:09","latency":"80.196µs"} -{"level":"debug","ts":"2023-08-08T06:08:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:09","latency":"91.744µs"} -{"level":"debug","ts":"2023-08-08T06:08:13.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:14","latency":"107.941µs"} -{"level":"debug","ts":"2023-08-08T06:08:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:14","latency":"104.339µs"} -{"level":"debug","ts":"2023-08-08T06:08:18.671Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:19","latency":"98.212µs"} -{"level":"debug","ts":"2023-08-08T06:08:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:19","latency":"85.661µs"} -{"level":"debug","ts":"2023-08-08T06:08:23.672Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:24","latency":"106.062µs"} -{"level":"debug","ts":"2023-08-08T06:08:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:24","latency":"93.436µs"} -{"level":"debug","ts":"2023-08-08T06:08:28.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:29","latency":"101.893µs"} -{"level":"debug","ts":"2023-08-08T06:08:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:29","latency":"82.966µs"} -{"level":"debug","ts":"2023-08-08T06:08:33.673Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:34","latency":"87.507µs"} -{"level":"debug","ts":"2023-08-08T06:08:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:34","latency":"82.845µs"} -{"level":"debug","ts":"2023-08-08T06:08:38.674Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:08:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:39","latency":"75.373µs"} -{"level":"debug","ts":"2023-08-08T06:08:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:39","latency":"111.768µs"} -{"level":"debug","ts":"2023-08-08T06:08:43.674Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:44","latency":"88.444µs"} -{"level":"debug","ts":"2023-08-08T06:08:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:44","latency":"119.728µs"} -{"level":"debug","ts":"2023-08-08T06:08:48.675Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:08:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:49","latency":"101.451µs"} -{"level":"debug","ts":"2023-08-08T06:08:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:49","latency":"95.169µs"} -{"level":"debug","ts":"2023-08-08T06:08:53.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:54","latency":"91.167µs"} -{"level":"debug","ts":"2023-08-08T06:08:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:54","latency":"97.949µs"} -{"level":"debug","ts":"2023-08-08T06:08:58.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:59","latency":"89.269µs"} -{"level":"debug","ts":"2023-08-08T06:08:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:08:59","latency":"101.14µs"} -{"level":"debug","ts":"2023-08-08T06:09:03.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:04","latency":"113.889µs"} -{"level":"debug","ts":"2023-08-08T06:09:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:04","latency":"88.259µs"} -{"level":"debug","ts":"2023-08-08T06:09:08.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:09","latency":"95.016µs"} -{"level":"debug","ts":"2023-08-08T06:09:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:09","latency":"109.982µs"} -{"level":"debug","ts":"2023-08-08T06:09:13.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:14","latency":"104.97µs"} -{"level":"debug","ts":"2023-08-08T06:09:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:14","latency":"108.976µs"} -{"level":"debug","ts":"2023-08-08T06:09:18.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:19","latency":"97.337µs"} -{"level":"debug","ts":"2023-08-08T06:09:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:19","latency":"81.077µs"} -{"level":"debug","ts":"2023-08-08T06:09:23.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:24","latency":"94.149µs"} -{"level":"debug","ts":"2023-08-08T06:09:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:24","latency":"99.328µs"} -{"level":"debug","ts":"2023-08-08T06:09:28.680Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:29","latency":"93.031µs"} -{"level":"debug","ts":"2023-08-08T06:09:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:29","latency":"79.738µs"} -{"level":"info","ts":"2023-08-08T06:09:33.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0} -{"level":"debug","ts":"2023-08-08T06:09:33.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:09:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:34","latency":"91.203µs"} -{"level":"debug","ts":"2023-08-08T06:09:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:34","latency":"113.921µs"} -{"level":"debug","ts":"2023-08-08T06:09:38.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:39","latency":"93.3µs"} -{"level":"debug","ts":"2023-08-08T06:09:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:39","latency":"94.839µs"} -{"level":"debug","ts":"2023-08-08T06:09:43.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:44","latency":"76.767µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:44","latency":"98.407µs"} -{"level":"debug","ts":"2023-08-08T06:09:45.167Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:45","latency":"52.081µs"} -{"level":"debug","ts":"2023-08-08T06:09:45.358Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:45","latency":"44.021µs"} -{"level":"debug","ts":"2023-08-08T06:09:48.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:49","latency":"96.853µs"} -{"level":"debug","ts":"2023-08-08T06:09:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:49","latency":"72.288µs"} -{"level":"debug","ts":"2023-08-08T06:09:53.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:54","latency":"100.309µs"} -{"level":"debug","ts":"2023-08-08T06:09:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:54","latency":"103.065µs"} -{"level":"debug","ts":"2023-08-08T06:09:58.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:59","latency":"89.787µs"} -{"level":"debug","ts":"2023-08-08T06:09:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:09:59","latency":"96.195µs"} -{"level":"debug","ts":"2023-08-08T06:10:03.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:04","latency":"103.492µs"} -{"level":"debug","ts":"2023-08-08T06:10:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:04","latency":"102.944µs"} -{"level":"debug","ts":"2023-08-08T06:10:08.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:09","latency":"88.976µs"} -{"level":"debug","ts":"2023-08-08T06:10:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:09","latency":"114.116µs"} -{"level":"debug","ts":"2023-08-08T06:10:13.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:13.715Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:13","latency":"4.206547ms"} -{"level":"info","ts":"2023-08-08T06:10:13.913Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-08T06:10:13.914Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} -{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-08T06:10:13.914Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-08T06:10:13.914Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.081Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"info","ts":"2023-08-08T06:10:14.415Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:14.415Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","duration":677} -{"level":"info","ts":"2023-08-08T06:10:14.416Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"info","ts":"2023-08-08T06:10:14.416Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:10:14.416Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"b0da7a9f100312d199eeeed51d52f3271aed88bf0d43389da5054e83430d978d\\\" \\n\\ntransmitterID = \\\"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:14","latency":"509.451254ms"} -{"level":"debug","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-08T06:10:14.582Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","streamName":"ragedisco/v1","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:14.583Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","numLoaded":1,"queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","numQueried":5,"found":["12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"],"numFound":1,"loaded":["12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"]} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracleID":3,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"PeerV2","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"12be81b0114210ff3bb57798f8a7764472ec5c548095a6b86263cd61e3a29f8c"} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":3} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"info","ts":"2023-08-08T06:10:14.587Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:14.588Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"info","ts":"2023-08-08T06:10:14.588Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"previousNe":0,"ne":1} -{"level":"info","ts":"2023-08-08T06:10:14.588Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":1,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:14.748Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:14","latency":"92.08µs"} -{"level":"debug","ts":"2023-08-08T06:10:14.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:14","latency":"104.72µs"} -{"level":"debug","ts":"2023-08-08T06:10:15.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:15.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.102Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.270Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.529Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:16.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.360Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.603Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:17.755Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:17.755Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:17.755Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:17.756Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","direction":"out","remoteAddr":"10.14.25.244:6690","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4a5d6b34f1583f477c2f23aa6676a32331a007a509a52f024586eea27e679b80","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:17.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-08T06:10:17.759Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-08T06:10:17.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.671Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:18.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:19.004Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.318Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:19","latency":"92.254µs"} -{"level":"debug","ts":"2023-08-08T06:10:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:19","latency":"72.126µs"} -{"level":"debug","ts":"2023-08-08T06:10:20.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.570Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:20.731Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.065Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:21.741Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.645Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:22.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:22.851Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","direction":"in","remoteAddr":"10.14.53.196:39750","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"0c31a7cdd4fdd82c6bb1aee86dec2103cd9a1fbb27fbd06dbd288b702d722cf1"} -{"level":"info","ts":"2023-08-08T06:10:22.852Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"22f48eb355497865acf8538bc4c5bea3288f64e3a7dc475906d4ee32cb2fc648","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-08T06:10:23.144Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.487Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.654Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:23.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:23.847Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.181Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.545Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.712Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:24","latency":"87.843µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:24","latency":"94.008µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.253Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.613Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.780Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:25.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.309Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.666Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:26.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"warn","ts":"2023-08-08T06:10:27.506Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:27.674Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.430Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:28.758Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.926Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:29.388Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:29.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.749Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:10:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:29","latency":"87.232µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:29","latency":"98.205µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.782Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.496Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.869Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.533Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.910Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.078Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.291Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.624Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.990Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.305Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:34.039Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.205Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.588Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:10:34.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:34","latency":"111.368µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:34","latency":"72.537µs"} -{"level":"debug","ts":"2023-08-08T06:10:35.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"in","remoteAddr":"10.14.88.105:34786","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","streamName":"ragedisco/v1","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":2,"candidateEpochs":[2,2,2]} -{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":1,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":1,"l":4} -{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.002188729} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.002159072} -{"level":"debug","ts":"2023-08-08T06:10:35.260Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"observation":"CNu4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:35.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.329Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:36.329Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:36.472Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.197Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.475Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.809Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.228Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.568Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:38.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:39.264Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"deltaCTimeout":true,"alphaReportInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","unfulfilledRequest":true,"alphaReportPPB":0,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":1},"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","initialRound":true} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":2,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":1,"sender":1,"oid":3} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000955075} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001230386} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:39.314Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.637Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:39","latency":"92.367µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:39","latency":"113.197µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.971Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.322Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.490Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.669Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.707Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p"} -{"level":"warn","ts":"2023-08-08T06:10:41.707Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:41.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.437Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.085Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:43.269Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportPPB":0,"deviation":true,"result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":2},"unfulfilledRequest":true,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deltaC":0,"initialRound":true,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"oid":3,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":0,"Round":0},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000959876} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.001025816} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"round":3,"observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:43.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:43.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:44.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-08T06:10:44.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:44","latency":"98.874µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:44","latency":"87.456µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.897Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.916Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:10:45.231Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.578Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.745Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.031Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:47.275Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":3},"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportInfinite":false,"initialRound":true,"deltaCTimeout":true,"unfulfilledRequest":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"alphaReportPPB":0,"deviation":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}},"oid":3} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"contractEpochRound":{"Epoch":0,"Round":0},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":2,"Round":3},"deviates":true,"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"round":3} -{"level":"info","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":3,"sender":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":1,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","candidateEpochs":[3,3,3],"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":3} -{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2,"leader":2,"e":2,"l":2} -{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:10:47.363Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.443Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:47.443Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.443Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:10:47.611Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} -{"level":"debug","ts":"2023-08-08T06:10:47.611Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27"} -{"level":"debug","ts":"2023-08-08T06:10:47.631Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.826Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"out","remoteAddr":"10.14.107.222:6690","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:47.830Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a"} -{"level":"info","ts":"2023-08-08T06:10:47.830Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-08T06:10:47.830Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"sender":4,"msg":{"Epoch":1,"Round":1,"Query":null}} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":2,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":4,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.832Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:47.945Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.095Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} -{"level":"debug","ts":"2023-08-08T06:10:48.130Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.463Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.668Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:48.778Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} -{"level":"debug","ts":"2023-08-08T06:10:48.835Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.220Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.477Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} -{"level":"debug","ts":"2023-08-08T06:10:49.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000891029} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000911709} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"round":1,"observation":"COm4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:49","latency":"91.071µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:49","latency":"97.419µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.187Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} -{"level":"debug","ts":"2023-08-08T06:10:50.251Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.584Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.777Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.791Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","fee":1,"signatures":["61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","2Eik6rv2dzn4mcENfKppQjweJcan6f9kWJ1ApEUvZ42TvTCXup1Xo1V4RMTjPVgyDvuLVy3m1KxNAr6za7P2wc4r"]} -{"level":"debug","ts":"2023-08-08T06:10:50.887Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","signature":"61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir"} -{"level":"debug","ts":"2023-08-08T06:10:50.887Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","2Eik6rv2dzn4mcENfKppQjweJcan6f9kWJ1ApEUvZ42TvTCXup1Xo1V4RMTjPVgyDvuLVy3m1KxNAr6za7P2wc4r"],"id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27"} -{"level":"debug","ts":"2023-08-08T06:10:50.888Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"91b8cc6b-9659-4190-940e-a2ec0a0e9a27","signatures":["61t51k4Uyc4kqDwkUw74ECQRRVhDLi4bgtuujaaHThX7mvpNgHdcTXrQEJbhtuJ8a7gQXBURF1FvWuUf8qzkF5ir","2Eik6rv2dzn4mcENfKppQjweJcan6f9kWJ1ApEUvZ42TvTCXup1Xo1V4RMTjPVgyDvuLVy3m1KxNAr6za7P2wc4r"]} -{"level":"debug","ts":"2023-08-08T06:10:50.944Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.334Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.811Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.980Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.428Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.891Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.437Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportPPB":0,"deltaC":0,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","unfulfilledRequest":false,"deviation":true,"alphaReportInfinite":false,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"deltaCTimeout":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":3,"round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"reportingPlugin":"NumericalMedian","deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":3,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.00096284} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001091896} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:53.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:54","latency":"93.679µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:54","latency":"98.868µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.134Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.844Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.040Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.527Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.077Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.244Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportPPB":0,"deviation":true,"deltaCTimeout":true,"result":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaC":0,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2},"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":4,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":3,"round":2,"sender":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000943044} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.001058508} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:57.931Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.615Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:58.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.217Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:59","latency":"113.293µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:10:59","latency":"78.061µs"} -{"level":"debug","ts":"2023-08-08T06:11:00.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.083Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:11:00.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.479Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.762Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.095Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"deltaCTimeout":true,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","result":true,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":3,"leader":4,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":4,"messageRound":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"leader":4,"roundMax":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":3,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","candidateEpochs":[4,4,4],"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":4} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"e":3,"l":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"result":true,"alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":4} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"sender":1,"epoch":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.804Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.393Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:03.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.634Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:04","latency":"79.06µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:04","latency":"465.429µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.980Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.313Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.667Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.327Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.560Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.019Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.354Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.763Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:11:08.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.193Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.526Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:09","latency":"83.042µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:09","latency":"87.56µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.202Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.710Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.877Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.254Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.587Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.768Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.935Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.290Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.623Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.832Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.368Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:13.701Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.844Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:14","latency":"102.896µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:14","latency":"103.007µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.781Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.079Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.251Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:11:15.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.842Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.177Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.514Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.182Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.555Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.889Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.107Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.274Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.618Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:18.951Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.132Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.300Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.674Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:19","latency":"85.576µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:19","latency":"127.652µs"} -{"level":"debug","ts":"2023-08-08T06:11:20.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.149Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.723Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":0,"e":4,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":4} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000946726} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.00099914} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:22.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.249Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.195Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:23.920Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.252Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.547Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:24","latency":"87.303µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:24","latency":"73.051µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.925Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.259Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.428Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.596Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","initialRound":false,"deviation":true,"result":true,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":5,"leader":4,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":5,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":5,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000893252} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.0008803} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:25.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.329Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.430Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.509Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.502Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:28.773Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.227Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.562Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:29","latency":"89.311µs"} -{"level":"debug","ts":"2023-08-08T06:11:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:29","latency":"88.871µs"} -{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deltaC":0,"result":true,"initialRound":false,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","alphaReportPPB":0,"deviation":true,"unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":2,"epoch":5,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000911432} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000892761} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:29.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.419Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:11:30.612Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.756Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.925Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.689Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.825Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.991Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.423Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.034Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.447Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:11:33.781Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:33.793Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportInfinite":false,"alphaReportPPB":0,"deltaC":0,"unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z"} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4,"round":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","result":true,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"candidateEpochs":[6,6,6],"newEpoch":6} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"leader":4,"l":4,"e":5} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":6} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":5,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:11:33.904Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.455Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:34","latency":"90.564µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:34","latency":"109.189µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.514Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.847Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.041Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.208Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.933Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.653Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.987Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.324Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:11:38.711Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.046Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.242Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:39","latency":"97.796µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:39","latency":"93.738µs"} -{"level":"debug","ts":"2023-08-08T06:11:40.097Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.331Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.498Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.765Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.588Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.813Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.147Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.616Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.865Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.527Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.693Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.699Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:43.769Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"info","ts":"2023-08-08T06:11:43.770Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:43.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.269Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:44","latency":"89.812µs"} -{"level":"debug","ts":"2023-08-08T06:11:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:44","latency":"75.153µs"} -{"level":"debug","ts":"2023-08-08T06:11:45.016Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.349Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.587Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:11:45.614Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.781Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.114Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.165Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.499Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.685Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.852Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.263Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:48.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.342Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.677Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:49","latency":"100.927µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:49","latency":"76.936µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.945Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.734Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.437Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.779Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":3,"Round":3}} -{"level":"info","ts":"2023-08-08T06:11:51.779Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:51.888Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.055Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.948Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":6,"e":6,"l":0} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":7} -{"level":"debug","ts":"2023-08-08T06:11:53.877Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.045Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:54","latency":"86.454µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:54","latency":"70.913µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.057Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.653Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.301Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.992Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.204Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.371Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.093Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.264Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.432Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.702Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:58.818Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.354Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.520Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:59","latency":"90.665µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:11:59","latency":"88.317µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.845Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.178Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.566Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.754Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:12:00.929Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.316Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.032Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.550Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.703Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:03.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.123Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.457Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.602Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:04","latency":"85.841µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:04","latency":"73.798µs"} -{"level":"debug","ts":"2023-08-08T06:12:05.175Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.920Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.231Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.798Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.965Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.232Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:08.855Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:09","latency":"89.156µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:09","latency":"90.686µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.885Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.633Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.941Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.107Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.335Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.008Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.175Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.103Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.269Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"leader":0,"epoch":7,"e":7,"l":0} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000851305} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.00088149} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:13.803Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:14","latency":"87.095µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:14","latency":"86.803µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.205Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.915Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.921Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:12:16.236Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.404Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.665Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.998Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.276Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","initialRound":false,"unfulfilledRequest":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":3,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":1,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000861686} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000960055} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:18.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.513Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:18.851Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.185Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.546Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:19","latency":"112.782µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:19","latency":"109.762µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.854Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.189Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.410Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.577Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.922Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.256Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.459Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.626Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:21.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","unfulfilledRequest":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"alphaReportInfinite":false,"deviation":true,"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":8,"leader":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":2,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"round":2,"sender":2,"oid":3} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":8,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":8,"Round":1},"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":2},"result":true} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"epoch":8,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000832584} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000921146} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"round":3,"observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:21.930Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.264Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.541Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.709Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.269Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.611Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.706Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:23.778Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.794Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":5,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-08T06:12:23.795Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:23.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.309Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:24","latency":"93.677µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:24","latency":"72.496µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.704Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:25.810Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","unfulfilledRequest":false,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"result":true} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"leader":2,"messageRound":4,"roundMax":3,"round":4} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"reportEpochRound":{"Epoch":8,"Round":3},"latestAcceptedEpochRound":{"Epoch":8,"Round":2},"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"e":8,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":8} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":8,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000890904} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000894762} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"round":1,"sender":3,"msgEpoch":9,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":2,"msgEpoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"msgRound":1,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"round":1,"sender":4,"msgEpoch":9,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"msgEpoch":9,"msgRound":1,"round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:25.815Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:25.871Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.125Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.458Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.733Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.507Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.825Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.606Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:28.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.339Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.672Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:29","latency":"75.931µs"} -{"level":"debug","ts":"2023-08-08T06:12:29.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:29","latency":"111.05µs"} -{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"deltaC":0,"deltaCTimeout":true,"alphaReportInfinite":false,"initialRound":false,"result":true,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","unfulfilledRequest":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportEpochRound":{"Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":8,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000901179} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000984839} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":3,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":4,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"msgEpoch":9,"msgRound":2,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":2,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":2,"msgEpoch":9,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","msgEpoch":9,"msgRound":2,"oid":3,"epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":2,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:29.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"msgEpoch":9,"msgRound":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:29.820Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:29.929Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.409Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.742Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.090Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:12:31.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.493Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.827Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.066Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.834Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.585Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:12:33.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2},"deviation":true,"result":true,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deltaC":0,"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"round":3,"msgRound":2,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptInfinite":false,"deviates":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000978567} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000977483} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":2,"sender":4,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":3,"sender":3,"msgEpoch":9,"msgRound":3,"epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"round":3,"observationCount":1,"requiredObservationCount":3,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"msgRound":3,"round":3,"sender":2,"msgEpoch":9,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":3,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","msgEpoch":9,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"requiredObservationCount":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":9,"leader":3,"round":3,"sender":1,"msgEpoch":9,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.824Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:33.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.076Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.592Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:34","latency":"102.796µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:34","latency":"75.628µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.926Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.164Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.620Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.952Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.183Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.351Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.631Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.386Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.655Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:37.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","deltaC":0,"initialRound":false,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","deviation":true,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"leader":3,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"leader":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":9,"round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:37.826Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3},"latestAcceptedEpochRound":{"Epoch":9,"Round":2}} -{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"newEpoch":10,"candidateEpochs":[10,10,10],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3,"sender":4} -{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":3,"e":9,"l":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9} -{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":9,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000775226} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.00080726} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:37.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.993Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:37.993Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3,"oid":3} -{"level":"debug","ts":"2023-08-08T06:12:38.161Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:38.161Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe","id":"60935617-94aa-45e5-86e5-b26a758e3b30"} -{"level":"debug","ts":"2023-08-08T06:12:38.251Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.495Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.682Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:38.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:12:38.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.338Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.372Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:39.504Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.676Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:39","latency":"85.89µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:39","latency":"78µs"} -{"level":"debug","ts":"2023-08-08T06:12:40.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.066Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:40.425Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.592Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.744Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.750Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:41.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.341Z","logger":"Solana","caller":"txm/txm.go:289","msg":"tx rebroadcast with bumped fee","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","fee":1,"signatures":["3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe","5TzsMCJdMHXoWy9BGkkkTJaGksNn7LDmUKnUP4YhSypJYnZoG82da91E9EX4CnRbZu1Hn3anUYRXRsdRZiPYq83b"]} -{"level":"debug","ts":"2023-08-08T06:12:41.430Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:41.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.630Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1},"deltaCTimeout":true,"deltaC":0,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"alphaReportPPB":0,"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"oid":3,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"sender":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":10,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000890054} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001115712} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:42.092Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.098Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","signature":"5TzsMCJdMHXoWy9BGkkkTJaGksNn7LDmUKnUP4YhSypJYnZoG82da91E9EX4CnRbZu1Hn3anUYRXRsdRZiPYq83b"} -{"level":"debug","ts":"2023-08-08T06:12:42.098Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe"} -{"level":"debug","ts":"2023-08-08T06:12:42.098Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"60935617-94aa-45e5-86e5-b26a758e3b30","signatures":["3Y1vpiKhbYAY3KEzYubTWsAEmYyXUt57MMqe9m46e5XTtQLZAhqLkCkP5nWRTKQqg8Mrcc51roPVewbDSGMcxpNe","5TzsMCJdMHXoWy9BGkkkTJaGksNn7LDmUKnUP4YhSypJYnZoG82da91E9EX4CnRbZu1Hn3anUYRXRsdRZiPYq83b"]} -{"level":"debug","ts":"2023-08-08T06:12:42.561Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.762Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.097Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:43.815Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.180Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:44","latency":"76.836µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:44","latency":"117.682µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.859Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.876Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.193Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.764Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","alphaReportPPB":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","unfulfilledRequest":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"result":true,"deltaC":0} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"epoch":10,"oid":3} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":10,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":1},"deviates":true,"result":true,"reportEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"info","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"round":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":2,"sender":4,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000911437} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.001047319} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:45.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.004Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:46.004Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:46.171Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e","signature":"3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"} -{"level":"debug","ts":"2023-08-08T06:12:46.171Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e"} -{"level":"debug","ts":"2023-08-08T06:12:46.203Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.257Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:12:46.527Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e","signature":"3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"} -{"level":"debug","ts":"2023-08-08T06:12:46.527Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"],"id":"f1a45d92-8a42-4e04-a85c-639e29b9532e"} -{"level":"debug","ts":"2023-08-08T06:12:46.528Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"f1a45d92-8a42-4e04-a85c-639e29b9532e","signatures":["3WHBZnHmAx9XrSis1fom8LDUE6ihgQz8CnKeyoxB88py8cRTSpB3EaFngXsTrFmbksgE5ud7idTqRJcVVVuPQ6ys"]} -{"level":"debug","ts":"2023-08-08T06:12:46.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.956Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.969Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:48.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:49","latency":"85.29µs"} -{"level":"debug","ts":"2023-08-08T06:12:49.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:49","latency":"94.451µs"} -{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","deviation":true,"deltaCTimeout":true,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"unfulfilledRequest":false,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"result":true,"deltaC":0} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":3,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":4,"messageRound":4,"roundMax":3,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"epoch":10,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptInfinite":false,"result":true,"reportEpochRound":{"Epoch":10,"Round":3},"latestAcceptedEpochRound":{"Epoch":10,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":11,"candidateEpochs":[11,11,11]} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":10,"e":10,"l":2} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"epoch":10,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000816481} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000796274} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":11,"leader":2,"oid":3} -{"level":"debug","ts":"2023-08-08T06:12:49.938Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.040Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.105Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.374Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.973Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.063Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.396Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.161Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.455Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.012Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.126Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.179Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","unfulfilledRequest":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"initialRound":false,"deviation":true,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z"} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":1,"oid":3} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":11,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"round":1,"sender":3,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":10,"Round":2},"result":true,"reportEpochRound":{"Epoch":11,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000877041} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.001019391} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3} -{"level":"debug","ts":"2023-08-08T06:12:54.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.177Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:54","latency":"106.198µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:54","latency":"99.977µs"} -{"level":"debug","ts":"2023-08-08T06:12:55.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.225Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.559Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.138Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.279Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.612Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.139Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.306Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.340Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:57.852Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"deviation":true,"unfulfilledRequest":false,"deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","leader":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":2,"sender":2,"epoch":11,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","sender":3,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992"} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","result":true,"latestAcceptedEpochRound":{"Epoch":11,"Round":1},"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","specID":1,"runTime":0.000956406} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":0,"jobName":"","specID":1,"runTime":0.000983591} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:58.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.358Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.440Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:12:58.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.229Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:59","latency":"99.8µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:12:59","latency":"117.454µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.822Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.299Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.466Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.918Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.424Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ"} -{"level":"debug","ts":"2023-08-08T06:13:01.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.649Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","initialRound":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaCTimeout":true,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"deltaC":0,"deviation":true} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"latestAcceptedEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":11,"round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3,"newEpoch":12,"candidateEpochs":[12,12,12]} -{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","e":11,"oid":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"l":2} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"epoch":11,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","oid":3,"leader":0,"epoch":12,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.599Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.741Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.075Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.631Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:13:03.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.522Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:04","latency":"104.336µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:04","latency":"97.559µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.818Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.537Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.704Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.786Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1}} -{"level":"info","ts":"2023-08-08T06:13:05.786Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:13:05.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.877Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.212Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.663Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.803Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":8,"Round":1}} -{"level":"info","ts":"2023-08-08T06:13:07.803Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:13:07.831Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.937Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.269Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:13:08.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.916Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.942Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.266Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":2,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-08T06:13:09.266Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:13:09.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:09","latency":"99.282µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.781Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.30.160","errors":"","servedAt":"2023-08-08 06:13:09","latency":"108.325µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.791Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-08T06:13:09.791Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-2-418b40c7-7906-44e7-bd7d-940bb69e2992","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"3GqEnHGnctjm8pWUUuFrv6BTdY2ArwkdkewZWHgQVCyJ","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":3} -{"level":"debug","ts":"2023-08-08T06:13:09.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.014Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.342Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.871Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.037Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.900Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.234Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.934Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.102Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.505Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:13:13.947Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log deleted file mode 100644 index 70f0e0c78..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok - -WARNING: enabling "trust" authentication for local connections -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-08 06:04:07.559 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:07.572 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC -2023-08-08 06:04:07.576 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-08 06:04:08.163 UTC [48] LOG: received fast shutdown request -.2023-08-08 06:04:08.167 UTC [48] LOG: aborting any active transactions -2023-08-08 06:04:08.169 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-08 06:04:08.169 UTC [50] LOG: shutting down -2023-08-08 06:04:08.185 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-08 06:04:08.274 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-08 06:04:08.274 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-08 06:04:08.276 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:08.289 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC -2023-08-08 06:04:08.293 UTC [1] LOG: database system is ready to accept connections -2023-08-08 06:04:09.851 UTC [92] FATAL: role "chainlink" does not exist -2023-08-08 06:04:10.853 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-08 06:04:10.853 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-08 06:04:10.853 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-08 06:04:10.853 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-08 06:04:10.854 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-08 06:04:10.854 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log deleted file mode 100644 index 3136115b3..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_3/node.log +++ /dev/null @@ -1,1799 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:10.657Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-08T06:04:10.662Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.662Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.662Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"2ba5e09a-44c7-4a07-bd57-4d7c95a4a468"} -{"level":"debug","ts":"2023-08-08T06:04:10.667Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"2ba5e09a-44c7-4a07-bd57-4d7c95a4a468"} -{"level":"debug","ts":"2023-08-08T06:04:10.853Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/08 06:04:11 OK 0001_initial.sql -2023/08/08 06:04:11 OK 0002_gormv2.sql -2023/08/08 06:04:11 OK 0003_eth_logs_table.sql -2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql -2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql -2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql -2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/08 06:04:11 OK 0010_bridge_fk.sql -2023/08/08 06:04:11 OK 0011_latest_round_requested.sql -2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql -2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql -2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql -2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql -2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/08 06:04:11 OK 0018_add_node_version_table.sql -2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/08 06:04:11 OK 0020_remove_result_task.sql -2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql -2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql -2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql -2023/08/08 06:04:11 OK 0025_create_log_config_table.sql -2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql -2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/08 06:04:11 OK 0028_vrf_v2.sql -2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql -2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql -2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql -2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql -2023/08/08 06:04:11 OK 0036_external_job_id.go -2023/08/08 06:04:11 OK 0037_cascade_deletes.sql -2023/08/08 06:04:11 OK 0038_create_csa_keys.sql -2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql -2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql -2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql -2023/08/08 06:04:11 OK 0042_create_job_proposals.sql -2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql -2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go -2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/08 06:04:11 OK 0056_multichain.go -2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql -2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/08 06:04:11 OK 0060_combine_keys_tables.sql -2023/08/08 06:04:11 OK 0061_multichain_relations.sql -2023/08/08 06:04:11 OK 0062_upgrade_keepers.sql -2023/08/08 06:04:11 OK 0063_add_job_proposal_timestamp.sql -2023/08/08 06:04:11 OK 0064_cascade_delete_chain_nodes.sql -2023/08/08 06:04:11 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/08 06:04:11 OK 0066_update_job_proposal_status.sql -2023/08/08 06:04:11 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/08 06:04:11 OK 0068_eth_tx_from_address_idx.sql -2023/08/08 06:04:11 OK 0069_remove_unused_columns.sql -2023/08/08 06:04:11 OK 0070_dynamic_fee_txes.sql -2023/08/08 06:04:11 OK 0071_allow_null_json_serializable.sql -2023/08/08 06:04:11 OK 0072_drop_unused_tables.sql -2023/08/08 06:04:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/08 06:04:11 OK 0074_simulation_eth_tx.sql -2023/08/08 06:04:11 OK 0075_unique_job_names.sql -2023/08/08 06:04:11 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/08 06:04:11 OK 0077_add_webauthn_table.sql -2023/08/08 06:04:11 OK 0078_only_one_version.sql -2023/08/08 06:04:11 OK 0079_vrf_v2_fields.sql -2023/08/08 06:04:11 OK 0080_drop_unused_cols.sql -2023/08/08 06:04:11 OK 0081_unconsumed_log_broadcasts.sql -2023/08/08 06:04:11 OK 0082_lease_lock.sql -2023/08/08 06:04:11 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/08 06:04:11 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/08 06:04:11 OK 0085_requested_confs_delay.sql -2023/08/08 06:04:11 OK 0086_upgrade_keepers_observation_source.sql -2023/08/08 06:04:11 OK 0087_ocr2_tables.sql -2023/08/08 06:04:11 OK 0088_vrfv2_request_timeout.sql -2023/08/08 06:04:11 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/08 06:04:11 OK 0090_ocr_new_timeouts.sql -2023/08/08 06:04:11 OK 0091_ocr2_relay.sql -2023/08/08 06:04:11 OK 0092_bptxm_tx_checkers.sql -2023/08/08 06:04:11 OK 0093_terra_txm.sql -2023/08/08 06:04:11 OK 0094_blockhash_store_job.sql -2023/08/08 06:04:11 OK 0095_terra_fcd.sql -2023/08/08 06:04:11 OK 0096_create_job_proposal_specs.sql -2023/08/08 06:04:11 OK 0097_bootstrap_spec.sql -2023/08/08 06:04:11 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/08 06:04:11 OK 0099_terra_msgs_created_at.sql -2023/08/08 06:04:11 OK 0100_bootstrap_config.sql -2023/08/08 06:04:11 OK 0101_generic_ocr2.sql -2023/08/08 06:04:11 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/08 06:04:11 OK 0103_terra_msgs_type_url.sql -2023/08/08 06:04:11 OK 0104_terra_cascade_delete.sql -2023/08/08 06:04:11 OK 0105_create_forwarder_addresses.sql -2023/08/08 06:04:11 OK 0106_evm_node_uniqueness.sql -2023/08/08 06:04:11 OK 0107_vrf_multiple_from_addresses.sql -2023/08/08 06:04:11 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/08 06:04:11 OK 0109_solana_chains_nodes.sql -2023/08/08 06:04:11 OK 0110_add_vrf_chunk_size.sql -2023/08/08 06:04:11 OK 0111_terra_msgs_state_started.sql -2023/08/08 06:04:11 OK 0112_vrf_batch_coordinator_address.sql -2023/08/08 06:04:11 OK 0113_vrf_v2_backoff_columns.sql -2023/08/08 06:04:11 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/08 06:04:11 OK 0115_log_poller.sql -2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql -2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql -2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql -2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql -2023/08/08 06:04:12 OK 0121_remove_log_configs.sql -2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql -2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql -2023/08/08 06:04:12 OK 0126_remove_observation_source.sql -2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql -2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql -2023/08/08 06:04:12 OK 0131_add_multi_user.sql -2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql -2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql -2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql -2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql -2023/08/08 06:04:12 OK 0137_remove_tx_index.sql -2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql -2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql -2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql -2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/08 06:04:12 OK 0144_optimize_lp.sql -2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql -2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0148_dkg_shares.sql -2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql -2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql -2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql -2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql -2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql -2023/08/08 06:04:12 OK 0155_remove_terra.sql -2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql -2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql -2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql -2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/08 06:04:12 OK 0164_add_cosmos.sql -2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql -2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql -2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql -2023/08/08 06:04:12 OK 0168_drop_node_tables.sql -2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql -2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql -2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql -2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql -2023/08/08 06:04:12 OK 0174_vrf_owner.sql -2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql -2023/08/08 06:04:12 OK 0176_s4_shared_table.sql -2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql -2023/08/08 06:04:12 OK 0178_drop_access_list.sql -2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql -2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql -2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql -2023/08/08 06:04:12 OK 0183_functions_new_fields.sql -2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql -2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql -2023/08/08 06:04:12 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.391Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.681Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 12b8533d8165bc857d9c09e73ccbc71f301ac224a80a123197aaf79218787870 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.681Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:18.860Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID FUgTGQfRzXVVqLrDttaNowVjogS9TYRxrAiDjkGp2PDQ","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:20.770Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 055c2999efd81286a1c42ddc45bb30b6444fa2e57d05ab3482cd8a42d2c1d377","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.962Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.086Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.086Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-08T06:04:23.086Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-08T06:04:23.086Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-08T06:04:23.087Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-08T06:04:23.087Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-08T06:04:23.087Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.087Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-08T06:04:23.088Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 40749. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":40749} -{"level":"debug","ts":"2023-08-08T06:04:23.088Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":40749,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"debug","ts":"2023-08-08T06:04:23.088Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","v1listenPort":40749,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/40749"} -{"level":"info","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement"} -{"level":"info","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:04:23.089Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"recvLoop"} -{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:23.089Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","in":"saveLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:04:23.153Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-08T06:04:23.153Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:23.153Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.29s","version":"2.4.0@d0c54ea","appID":"2ba5e09a-44c7-4a07-bd57-4d7c95a4a468"} -{"level":"debug","ts":"2023-08-08T06:04:23.153Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000684222} -{"level":"info","ts":"2023-08-08T06:04:23.160Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-08T06:04:23.164Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.010928555} -{"level":"debug","ts":"2023-08-08T06:04:23.164Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.784Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.555427ms"} -{"level":"debug","ts":"2023-08-08T06:04:24.785Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:24","latency":"267.016µs"} -{"level":"debug","ts":"2023-08-08T06:04:28.090Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:28.465Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:04:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:29","latency":"92.154µs"} -{"level":"debug","ts":"2023-08-08T06:04:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:29","latency":"96.113µs"} -{"level":"info","ts":"2023-08-08T06:04:33.090Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","statusByPeer":"map[]"} -{"level":"debug","ts":"2023-08-08T06:04:33.090Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:04:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:34","latency":"86.478µs"} -{"level":"debug","ts":"2023-08-08T06:04:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:34","latency":"86.447µs"} -{"level":"debug","ts":"2023-08-08T06:04:38.091Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:39","latency":"93.002µs"} -{"level":"debug","ts":"2023-08-08T06:04:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:39","latency":"94.495µs"} -{"level":"debug","ts":"2023-08-08T06:04:43.091Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:44","latency":"88.805µs"} -{"level":"debug","ts":"2023-08-08T06:04:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:44","latency":"106.886µs"} -{"level":"debug","ts":"2023-08-08T06:04:48.092Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:49","latency":"107.01µs"} -{"level":"debug","ts":"2023-08-08T06:04:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:49","latency":"159.821µs"} -{"level":"debug","ts":"2023-08-08T06:04:53.092Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:54","latency":"104.777µs"} -{"level":"debug","ts":"2023-08-08T06:04:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:54","latency":"90.446µs"} -{"level":"debug","ts":"2023-08-08T06:04:58.093Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:59","latency":"72.21µs"} -{"level":"debug","ts":"2023-08-08T06:04:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:04:59","latency":"95.117µs"} -{"level":"debug","ts":"2023-08-08T06:05:02.241Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:05:02.242Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-08T06:05:02.365Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-08T06:05:02.366Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:02","latency":"125.320158ms"} -{"level":"debug","ts":"2023-08-08T06:05:03.095Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:04","latency":"72.417µs"} -{"level":"debug","ts":"2023-08-08T06:05:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:04","latency":"111.137µs"} -{"level":"debug","ts":"2023-08-08T06:05:08.095Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:05:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:09","latency":"84.058µs"} -{"level":"debug","ts":"2023-08-08T06:05:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:09","latency":"88.357µs"} -{"level":"debug","ts":"2023-08-08T06:05:13.096Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:14.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:14","latency":"93.04µs"} -{"level":"debug","ts":"2023-08-08T06:05:14.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:14","latency":"86.646µs"} -{"level":"debug","ts":"2023-08-08T06:05:17.732Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:17","latency":"2.071792ms"} -{"level":"debug","ts":"2023-08-08T06:05:18.151Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:19.776Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:19","latency":"1.850587518s"} -{"level":"debug","ts":"2023-08-08T06:05:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:19","latency":"66.911µs"} -{"level":"debug","ts":"2023-08-08T06:05:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:19","latency":"95.081µs"} -{"level":"debug","ts":"2023-08-08T06:05:22.175Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:22","latency":"2.212514354s"} -{"level":"debug","ts":"2023-08-08T06:05:23.151Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:24","latency":"92.339µs"} -{"level":"debug","ts":"2023-08-08T06:05:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:24","latency":"101.38µs"} -{"level":"debug","ts":"2023-08-08T06:05:28.096Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"75.893µs"} -{"level":"debug","ts":"2023-08-08T06:05:28.151Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:28.283Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"65.126µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:29","latency":"95.057µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:29","latency":"93.841µs"} -{"level":"debug","ts":"2023-08-08T06:05:33.152Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:34","latency":"98.822µs"} -{"level":"debug","ts":"2023-08-08T06:05:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:34","latency":"96.786µs"} -{"level":"debug","ts":"2023-08-08T06:05:38.152Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:05:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:39","latency":"93.127µs"} -{"level":"debug","ts":"2023-08-08T06:05:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:39","latency":"74.494µs"} -{"level":"debug","ts":"2023-08-08T06:05:43.153Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:05:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:44","latency":"85.254µs"} -{"level":"debug","ts":"2023-08-08T06:05:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:44","latency":"71.198µs"} -{"level":"debug","ts":"2023-08-08T06:05:48.154Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:49","latency":"90.118µs"} -{"level":"debug","ts":"2023-08-08T06:05:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:49","latency":"95.706µs"} -{"level":"debug","ts":"2023-08-08T06:05:53.154Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:54","latency":"96.59µs"} -{"level":"debug","ts":"2023-08-08T06:05:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:54","latency":"82.358µs"} -{"level":"debug","ts":"2023-08-08T06:05:58.155Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:59","latency":"84.767µs"} -{"level":"debug","ts":"2023-08-08T06:05:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:05:59","latency":"74.424µs"} -{"level":"debug","ts":"2023-08-08T06:06:03.155Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:04","latency":"84.789µs"} -{"level":"debug","ts":"2023-08-08T06:06:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:04","latency":"95.372µs"} -{"level":"debug","ts":"2023-08-08T06:06:08.156Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:09","latency":"96.136µs"} -{"level":"debug","ts":"2023-08-08T06:06:09.786Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:09","latency":"79.774µs"} -{"level":"debug","ts":"2023-08-08T06:06:13.156Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:14","latency":"86.652µs"} -{"level":"debug","ts":"2023-08-08T06:06:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:14","latency":"82.889µs"} -{"level":"debug","ts":"2023-08-08T06:06:18.157Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:19","latency":"82.402µs"} -{"level":"debug","ts":"2023-08-08T06:06:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:19","latency":"88.259µs"} -{"level":"debug","ts":"2023-08-08T06:06:23.157Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:24","latency":"89.722µs"} -{"level":"debug","ts":"2023-08-08T06:06:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:24","latency":"88.934µs"} -{"level":"debug","ts":"2023-08-08T06:06:28.158Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:29","latency":"94.042µs"} -{"level":"debug","ts":"2023-08-08T06:06:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:29","latency":"95.927µs"} -{"level":"debug","ts":"2023-08-08T06:06:33.158Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:06:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:34","latency":"90.42µs"} -{"level":"debug","ts":"2023-08-08T06:06:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:34","latency":"69.812µs"} -{"level":"debug","ts":"2023-08-08T06:06:38.159Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:39","latency":"90.006µs"} -{"level":"debug","ts":"2023-08-08T06:06:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:39","latency":"94.113µs"} -{"level":"debug","ts":"2023-08-08T06:06:43.160Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:44","latency":"71.42µs"} -{"level":"debug","ts":"2023-08-08T06:06:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:44","latency":"110.638µs"} -{"level":"debug","ts":"2023-08-08T06:06:48.161Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:49","latency":"108.139µs"} -{"level":"debug","ts":"2023-08-08T06:06:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:49","latency":"72.283µs"} -{"level":"debug","ts":"2023-08-08T06:06:53.161Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:54","latency":"91.228µs"} -{"level":"debug","ts":"2023-08-08T06:06:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:54","latency":"90.025µs"} -{"level":"debug","ts":"2023-08-08T06:06:58.162Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:59","latency":"93.685µs"} -{"level":"debug","ts":"2023-08-08T06:06:59.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:06:59","latency":"66.798µs"} -{"level":"debug","ts":"2023-08-08T06:07:03.163Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:04","latency":"111.445µs"} -{"level":"debug","ts":"2023-08-08T06:07:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:04","latency":"108.232µs"} -{"level":"debug","ts":"2023-08-08T06:07:08.163Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:09","latency":"90.447µs"} -{"level":"debug","ts":"2023-08-08T06:07:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:09","latency":"90.19µs"} -{"level":"debug","ts":"2023-08-08T06:07:13.164Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:14","latency":"75.44µs"} -{"level":"debug","ts":"2023-08-08T06:07:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:14","latency":"117.539µs"} -{"level":"debug","ts":"2023-08-08T06:07:18.164Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:19","latency":"91.122µs"} -{"level":"debug","ts":"2023-08-08T06:07:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:19","latency":"94.929µs"} -{"level":"debug","ts":"2023-08-08T06:07:23.165Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:24","latency":"95.018µs"} -{"level":"debug","ts":"2023-08-08T06:07:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:24","latency":"70.848µs"} -{"level":"debug","ts":"2023-08-08T06:07:28.165Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:29","latency":"74.661µs"} -{"level":"debug","ts":"2023-08-08T06:07:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:29","latency":"90.79µs"} -{"level":"debug","ts":"2023-08-08T06:07:33.166Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:34","latency":"81.114µs"} -{"level":"debug","ts":"2023-08-08T06:07:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:34","latency":"74.734µs"} -{"level":"debug","ts":"2023-08-08T06:07:38.166Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:39","latency":"82.055µs"} -{"level":"debug","ts":"2023-08-08T06:07:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:39","latency":"122.654µs"} -{"level":"debug","ts":"2023-08-08T06:07:43.167Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:44","latency":"86.101µs"} -{"level":"debug","ts":"2023-08-08T06:07:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:44","latency":"89.414µs"} -{"level":"debug","ts":"2023-08-08T06:07:48.168Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:49","latency":"97.371µs"} -{"level":"debug","ts":"2023-08-08T06:07:49.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:49","latency":"120.836µs"} -{"level":"debug","ts":"2023-08-08T06:07:53.168Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:54","latency":"87.265µs"} -{"level":"debug","ts":"2023-08-08T06:07:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:54","latency":"87.489µs"} -{"level":"debug","ts":"2023-08-08T06:07:58.169Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:59","latency":"105.022µs"} -{"level":"debug","ts":"2023-08-08T06:07:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:07:59","latency":"99.298µs"} -{"level":"debug","ts":"2023-08-08T06:08:03.169Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:04","latency":"88.548µs"} -{"level":"debug","ts":"2023-08-08T06:08:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:04","latency":"86.653µs"} -{"level":"debug","ts":"2023-08-08T06:08:08.170Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:09","latency":"96.825µs"} -{"level":"debug","ts":"2023-08-08T06:08:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:09","latency":"177.612µs"} -{"level":"debug","ts":"2023-08-08T06:08:13.171Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:14","latency":"75.849µs"} -{"level":"debug","ts":"2023-08-08T06:08:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:14","latency":"112.543µs"} -{"level":"debug","ts":"2023-08-08T06:08:18.171Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:08:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:19","latency":"93.583µs"} -{"level":"debug","ts":"2023-08-08T06:08:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:19","latency":"79.941µs"} -{"level":"debug","ts":"2023-08-08T06:08:23.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:08:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:24","latency":"81.336µs"} -{"level":"debug","ts":"2023-08-08T06:08:24.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:24","latency":"85.648µs"} -{"level":"debug","ts":"2023-08-08T06:08:28.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:29","latency":"69.177µs"} -{"level":"debug","ts":"2023-08-08T06:08:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:29","latency":"102.771µs"} -{"level":"debug","ts":"2023-08-08T06:08:33.174Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:34","latency":"109.569µs"} -{"level":"debug","ts":"2023-08-08T06:08:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:34","latency":"109.577µs"} -{"level":"debug","ts":"2023-08-08T06:08:38.174Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:39","latency":"97.662µs"} -{"level":"debug","ts":"2023-08-08T06:08:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:39","latency":"75.234µs"} -{"level":"debug","ts":"2023-08-08T06:08:43.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:44","latency":"89.289µs"} -{"level":"debug","ts":"2023-08-08T06:08:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:44","latency":"95.613µs"} -{"level":"debug","ts":"2023-08-08T06:08:48.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:49","latency":"102.178µs"} -{"level":"debug","ts":"2023-08-08T06:08:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:49","latency":"105.201µs"} -{"level":"debug","ts":"2023-08-08T06:08:53.176Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:54","latency":"89.704µs"} -{"level":"debug","ts":"2023-08-08T06:08:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:54","latency":"88.202µs"} -{"level":"debug","ts":"2023-08-08T06:08:58.176Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:59","latency":"95.048µs"} -{"level":"debug","ts":"2023-08-08T06:08:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:08:59","latency":"92.901µs"} -{"level":"debug","ts":"2023-08-08T06:09:03.177Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:04","latency":"91.705µs"} -{"level":"debug","ts":"2023-08-08T06:09:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:04","latency":"97.108µs"} -{"level":"debug","ts":"2023-08-08T06:09:08.177Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:09","latency":"97.641µs"} -{"level":"debug","ts":"2023-08-08T06:09:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:09","latency":"103.395µs"} -{"level":"debug","ts":"2023-08-08T06:09:13.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:09:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:14","latency":"90.665µs"} -{"level":"debug","ts":"2023-08-08T06:09:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:14","latency":"92.519µs"} -{"level":"debug","ts":"2023-08-08T06:09:18.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:19.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:19","latency":"99.134µs"} -{"level":"debug","ts":"2023-08-08T06:09:19.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:19","latency":"83.419µs"} -{"level":"debug","ts":"2023-08-08T06:09:23.179Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:09:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:24","latency":"95.728µs"} -{"level":"debug","ts":"2023-08-08T06:09:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:24","latency":"82.827µs"} -{"level":"debug","ts":"2023-08-08T06:09:28.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:09:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:29","latency":"85.597µs"} -{"level":"debug","ts":"2023-08-08T06:09:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:29","latency":"106.881µs"} -{"level":"info","ts":"2023-08-08T06:09:33.091Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:33.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:34","latency":"81.15µs"} -{"level":"debug","ts":"2023-08-08T06:09:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:34","latency":"107.552µs"} -{"level":"debug","ts":"2023-08-08T06:09:38.181Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:39","latency":"86.968µs"} -{"level":"debug","ts":"2023-08-08T06:09:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:39","latency":"86.818µs"} -{"level":"debug","ts":"2023-08-08T06:09:43.181Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:44","latency":"93.949µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:44","latency":"78.453µs"} -{"level":"debug","ts":"2023-08-08T06:09:45.931Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:45","latency":"90.042µs"} -{"level":"debug","ts":"2023-08-08T06:09:46.118Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:46","latency":"56.121µs"} -{"level":"debug","ts":"2023-08-08T06:09:48.182Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:49","latency":"87.421µs"} -{"level":"debug","ts":"2023-08-08T06:09:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:49","latency":"88.277µs"} -{"level":"debug","ts":"2023-08-08T06:09:53.183Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:09:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:54","latency":"77.955µs"} -{"level":"debug","ts":"2023-08-08T06:09:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:54","latency":"112.83µs"} -{"level":"debug","ts":"2023-08-08T06:09:58.183Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:59","latency":"90.982µs"} -{"level":"debug","ts":"2023-08-08T06:09:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:09:59","latency":"93.381µs"} -{"level":"debug","ts":"2023-08-08T06:10:03.184Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:04.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:04","latency":"96.449µs"} -{"level":"debug","ts":"2023-08-08T06:10:04.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:04","latency":"79.278µs"} -{"level":"debug","ts":"2023-08-08T06:10:08.185Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:09.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:09","latency":"77.844µs"} -{"level":"debug","ts":"2023-08-08T06:10:09.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:09","latency":"96.418µs"} -{"level":"debug","ts":"2023-08-08T06:10:13.185Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:14","latency":"82.927µs"} -{"level":"debug","ts":"2023-08-08T06:10:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:14","latency":"86.145µs"} -{"level":"debug","ts":"2023-08-08T06:10:18.186Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:19","latency":"88.21µs"} -{"level":"debug","ts":"2023-08-08T06:10:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:19","latency":"85.261µs"} -{"level":"debug","ts":"2023-08-08T06:10:23.186Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:24","latency":"116.474µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:24","latency":"79.764µs"} -{"level":"debug","ts":"2023-08-08T06:10:26.736Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:26","latency":"3.274144ms"} -{"level":"info","ts":"2023-08-08T06:10:26.933Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-08T06:10:26.933Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} -{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-08T06:10:26.933Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-08T06:10:26.933Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.338Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"info","ts":"2023-08-08T06:10:27.540Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:27.540Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:27.540Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","duration":755} -{"level":"info","ts":"2023-08-08T06:10:27.541Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"info","ts":"2023-08-08T06:10:27.541Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:10:27.541Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"8198b77492748583b790be035dfc5171eaa43a7489e0b2487ad6eabd195cfac7\\\" \\n\\ntransmitterID = \\\"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:27","latency":"615.579289ms"} -{"level":"debug","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:27.743Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:27.744Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","id":"ragep2p","found":["12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"],"loaded":["12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"],"peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numQueried":5,"numFound":1,"numLoaded":1} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"PeerV2","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","oracleID":2,"_id":"OCREndpointV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}]} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"5ad7d3d2b5dcba87e9dbfc18a70c61b292392d74edd8ed8b4543a0db73ec1903","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"PeerV2","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","oracleID":2} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"info","ts":"2023-08-08T06:10:27.747Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"info","ts":"2023-08-08T06:10:27.748Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"info","ts":"2023-08-08T06:10:27.748Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","ne":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"previousNe":0} -{"level":"info","ts":"2023-08-08T06:10:27.748Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":1,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:27.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.184Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.187Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:28.386Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"debug","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"warn","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"warn","ts":"2023-08-08T06:10:28.440Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","direction":"out","remoteAddr":"10.14.25.244:6690","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:28.442Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"4408aef142f535280bb5912fd49d1cb4a3d6d8df6bfac6b3e30974cfc5bfb85a","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}"} -{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:28.443Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:28.563Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:28.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.185Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.564Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:29","latency":"76.987µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:29","latency":"99.803µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.419Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:30.662Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.067Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.250Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","direction":"in","remoteAddr":"10.14.53.196:59720","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"ff740351eb35f5ae18ae416ee3ca682cc93256b623b9b4a6e38bd87ae51c8a6c","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:31.260Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"3ad309ff2f910914c587cc90d6a555383a51640700fe293d354df81ba8c27dcc","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:31.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:31.750Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.155Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.499Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:32.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.160Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:33.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.597Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:33.812Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.217Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.461Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.663Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:34","latency":"89.806µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:34","latency":"86.575µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.891Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.254Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:35.254Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:35.254Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","remoteAddr":"10.14.31.164:6690","direction":"out","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","streamID":"74020421ff4053b202d5039af60269c78000843ff1c9cf618f68ee078ccf705f","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"fdba0a01516425018dfc87bfc4d8eac07298ccc1bc649c6ca2c2be32e4a8ac4a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:35.256Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","newEpoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"candidateEpochs":[2,2,2]} -{"level":"info","ts":"2023-08-08T06:10:35.256Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":1,"leader":4,"l":4} -{"level":"info","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2} -{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:10:35.257Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.001905709} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.001885808} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"round":1,"observation":"CNu4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":2,"msgRound":1,"round":1,"sender":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2} -{"level":"debug","ts":"2023-08-08T06:10:35.259Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"observationCount":1,"requiredObservationCount":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:35.260Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":3,"msgEpoch":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:35.260Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"round":1,"observationCount":2} -{"level":"debug","ts":"2023-08-08T06:10:35.262Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"msgEpoch":2,"msgRound":1,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:35.262Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:35.262Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:35.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.691Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:35.898Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.303Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.586Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:36.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:37.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.189Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:38.399Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.740Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:38.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:39.263Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","unfulfilledRequest":true,"initialRound":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":1},"alphaReportPPB":0,"alphaReportInfinite":false,"deltaCTimeout":true,"result":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaC":0} -{"level":"debug","ts":"2023-08-08T06:10:39.264Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"deviates":true,"result":true,"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":1}} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000660155} -{"level":"debug","ts":"2023-08-08T06:10:39.265Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000749005} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2,"observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"msgRound":1,"leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":3,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2,"sender":2,"msgEpoch":2,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"round":2,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:39.266Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"sender":3,"msgEpoch":2,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:10:39.267Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"requiredObservationCount":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:39.268Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"sender":1,"msgEpoch":2,"msgRound":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:39.268Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"observationCount":3} -{"level":"debug","ts":"2023-08-08T06:10:39.268Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:39.413Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:39.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:39","latency":"99.92µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:39","latency":"92.592µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.083Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.488Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.750Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"warn","ts":"2023-08-08T06:10:40.750Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:40.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.124Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.528Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.930Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.155Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.560Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.946Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:10:43.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.189Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.189Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:43.233Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:43.269Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":2},"initialRound":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":2,"round":2,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000675128} -{"level":"debug","ts":"2023-08-08T06:10:43.270Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000726009} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"msgRound":2,"leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":2,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":2,"msgRound":3,"round":3,"leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"round":3,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:43.271Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":2,"msgRound":3,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:43.272Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:43.273Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"msgEpoch":2,"msgRound":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:43.273Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":3,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:10:43.273Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:43.593Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.090Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.214Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.292Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:44.392Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:44.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:44","latency":"94.259µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:44","latency":"92.046µs"} -{"level":"debug","ts":"2023-08-08T06:10:45.110Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.258Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.313Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.663Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.347Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.751Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:47.274Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportInfinite":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":2,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"deltaC":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","alphaReportPPB":0,"deviation":true,"initialRound":true,"unfulfilledRequest":true} -{"level":"debug","ts":"2023-08-08T06:10:47.275Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":2} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":2,"epoch":2,"messageRound":4} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgRound":3,"round":4,"oid":2,"leader":2} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":0,"Round":0},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":2,"Round":3},"deviates":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:10:47.276Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"newEpoch":3,"candidateEpochs":[3,3,3],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":2,"epoch":2,"e":2,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":3,"sender":1} -{"level":"info","ts":"2023-08-08T06:10:47.277Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:47.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.443Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.752Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.190Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:48.290Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.359Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.493Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.764Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.335Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.538Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:49","latency":"87.121µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:49","latency":"81.16µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.823Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.318Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:50.320Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.107.222:6690","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","direction":"out"} -{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","remotePeerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:50.321Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"sender":4,"msg":{"Epoch":1,"Round":1,"Query":null}} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":2,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":2,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":4,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000690855} -{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000803788} -{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4,"round":1,"observation":"COq4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:50.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.921Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.611Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.949Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.477Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.622Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.191Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:53.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.667Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.738Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deltaC":0,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"initialRound":false,"deltaCTimeout":true,"alphaReportPPB":0,"deviation":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":3,"leader":4,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":2,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000730344} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000739579} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4,"round":2,"observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:54.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.580Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:54","latency":"108.096µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:54","latency":"75.937µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.783Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.828Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.879Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.233Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.763Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.966Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.306Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportPPB":0,"alphaReportInfinite":false,"initialRound":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaC":0} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":3,"leader":4,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"sender":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"result":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000601766} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000649544} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:57.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.998Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.042Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.149Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:10:58.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:58.402Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.892Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.012Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.095Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:59","latency":"87.673µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:10:59","latency":"87.846µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.921Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.019Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.124Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.423Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.017Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.118Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.220Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.523Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deltaCTimeout":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"deviation":true,"alphaReportPPB":0,"deltaC":0,"result":true,"initialRound":false,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z"} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"leader":4,"messageRound":4} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"deviates":true,"contractEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3} -{"level":"info","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":3,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":4,"candidateEpochs":[4,4,4]} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":3,"l":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":4} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:01.981Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:01.981Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:11:01.981Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:11:02.063Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.167Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.183Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"} -{"level":"debug","ts":"2023-08-08T06:11:02.183Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273"} -{"level":"debug","ts":"2023-08-08T06:11:02.265Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.467Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"} -{"level":"debug","ts":"2023-08-08T06:11:02.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.095Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:03.218Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273","signature":"9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"} -{"level":"debug","ts":"2023-08-08T06:11:03.219Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"],"id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273"} -{"level":"debug","ts":"2023-08-08T06:11:03.219Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"86d80d9c-e03a-47a8-99b5-2a7a952ad273","signatures":["9M1g6719Uvb9JrcUskvADyAGwx7KqNNinr2oBggyEmEBKrcENqGVesGRDumL1deQXeHjMJr2jV25nAmaC1rV5pU"]} -{"level":"debug","ts":"2023-08-08T06:11:03.255Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.297Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.659Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.127Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.312Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.717Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:04","latency":"85.479µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:04","latency":"78.614µs"} -{"level":"debug","ts":"2023-08-08T06:11:05.129Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.318Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.722Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.207Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.406Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.436Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:08.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.458Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.911Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.390Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.553Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:09","latency":"73.63µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:09","latency":"91.87µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.445Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.990Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.630Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.746Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.034Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.838Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.084Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:11:13.351Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:11:13.671Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.769Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.874Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:14","latency":"73.916µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:14","latency":"119.014µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.209Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.762Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.838Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.965Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.996Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.265Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.866Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.868Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.068Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.194Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:18.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.913Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.958Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.363Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:19","latency":"89.255µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:19","latency":"86.182µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.170Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.386Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.187Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.478Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":4,"leader":0,"e":4,"l":0} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000697552} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000727918} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:21.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.577Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.062Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.195Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:11:23.207Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.265Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.612Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.237Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:24","latency":"105.499µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:24","latency":"56.553µs"} -{"level":"debug","ts":"2023-08-08T06:11:25.251Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.701Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportPPB":0,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"deviation":true,"alphaReportInfinite":false,"deltaC":0,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"result":true} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":1,"oid":2} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000719306} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000736404} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2} -{"level":"debug","ts":"2023-08-08T06:11:26.267Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.332Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.469Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.736Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.519Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.836Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:28.362Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.452Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.554Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:11:28.564Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:29","latency":"91.592µs"} -{"level":"debug","ts":"2023-08-08T06:11:29.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:29","latency":"76.249µs"} -{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","deltaC":0,"alphaReportPPB":0,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":2,"epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"sender":4,"epoch":5,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000713531} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000686139} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":3,"observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:11:29.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.421Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.475Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.624Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.466Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.669Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.683Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.956Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:33.271Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":2,"Round":2}} -{"level":"info","ts":"2023-08-08T06:11:33.271Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:33.551Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.605Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:33.792Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deltaC":0,"result":true,"deltaCTimeout":true,"alphaReportInfinite":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"deviation":true} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4,"round":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":5,"round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptInfinite":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":6,"candidateEpochs":[6,6,6]} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":5,"l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":5,"round":3,"sender":3} -{"level":"info","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":6} -{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:34.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.569Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.622Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.771Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:34","latency":"82.636µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:34","latency":"90.24µs"} -{"level":"debug","ts":"2023-08-08T06:11:35.026Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.647Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.715Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.850Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.120Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.760Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.928Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.164Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.845Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.971Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.197Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:38.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.814Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.890Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.017Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.294Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:39","latency":"88.603µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:39","latency":"67.699µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.882Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.969Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.085Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.375Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.153Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.959Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.017Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.162Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.087Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.187Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:11:43.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.757Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:11:43.986Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.189Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:44","latency":"89.732µs"} -{"level":"debug","ts":"2023-08-08T06:11:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:44","latency":"94.342µs"} -{"level":"debug","ts":"2023-08-08T06:11:45.025Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.190Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.227Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.594Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.043Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.226Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.630Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.260Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.726Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.774Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":3,"Round":2}} -{"level":"info","ts":"2023-08-08T06:11:47.774Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:11:48.114Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:11:48.317Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.323Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.339Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:49","latency":"87.243µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:49","latency":"98.665µs"} -{"level":"debug","ts":"2023-08-08T06:11:50.155Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.357Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.397Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.801Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.444Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.316Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.519Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.539Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.944Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.199Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:53.398Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.600Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","e":6,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":6,"leader":0} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":7,"leader":0} -{"level":"debug","ts":"2023-08-08T06:11:54.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.604Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.657Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:54","latency":"77.628µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:54","latency":"111.202µs"} -{"level":"debug","ts":"2023-08-08T06:11:55.062Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.444Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.672Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.077Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.151Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.589Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.792Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.837Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.200Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:11:58.241Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.825Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.960Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:11:59.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:59","latency":"86.623µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:11:59","latency":"89.036µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.299Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.719Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.989Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.395Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.785Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.052Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.879Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.082Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:12:03.546Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.881Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.084Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.176Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:04","latency":"69.565µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:04","latency":"89.513µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.889Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.091Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.216Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.621Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.916Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.696Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.011Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.214Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.302Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.706Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.085Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:08.287Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.357Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.761Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.337Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.379Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:09","latency":"75.93µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:09","latency":"93.753µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.805Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.239Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.442Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.830Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.519Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.924Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.202Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:13.342Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.530Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.544Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":8,"candidateEpochs":[8,8,8]} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":7,"l":0} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000664314} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000749221} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"msgEpoch":8,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"round":1,"sender":3,"msgEpoch":8,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":4,"msgEpoch":8,"msgRound":1,"oid":2,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:13.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":1,"msgEpoch":8,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:13.800Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:13.934Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.162Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:12:14.405Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:14","latency":"89.238µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:14","latency":"77.568µs"} -{"level":"debug","ts":"2023-08-08T06:12:15.017Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.408Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.786Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1}} -{"level":"info","ts":"2023-08-08T06:12:15.786Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:16.036Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.687Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.069Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.548Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.763Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","initialRound":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"deviation":true,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"deltaC":0,"result":true,"deltaCTimeout":true,"unfulfilledRequest":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":5,"Round":3},"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":1},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000637152} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000626227} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"msgRound":1,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"msgRound":2,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":4,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"observationCount":1} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"sender":3,"msgEpoch":8,"msgRound":2,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"requiredObservationCount":3,"round":2,"observationCount":2} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"msgRound":2,"round":2,"sender":4,"msgEpoch":8,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2,"observationCount":3,"requiredObservationCount":3,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:17.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":2,"sender":1,"msgEpoch":8,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:12:17.805Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:18.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.203Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:18.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.235Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.266Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":1}} -{"level":"info","ts":"2023-08-08T06:12:19.266Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:19.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:19","latency":"88.732µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:19","latency":"105.838µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.839Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.928Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.340Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:21.805Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"initialRound":false,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","latestAcceptedEpochRound":{"Epoch":8,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":5,"Round":3},"result":true,"reportEpochRound":{"Epoch":8,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.00064182} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.00069967} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":3,"observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"sender":2,"epoch":8,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"sender":2,"msgEpoch":8,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":3,"round":3,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"sender":3,"msgEpoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"observationCount":2,"requiredObservationCount":3,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":3,"sender":4,"msgEpoch":8,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3,"observationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"leader":2,"msgEpoch":8,"msgRound":3,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.809Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:21.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.023Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.367Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.837Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.040Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:12:23.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.068Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.110Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.473Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:24","latency":"81.543µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:24","latency":"80.173µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.923Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.115Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.125Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:25.810Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deltaC":0,"result":true,"alphaReportInfinite":false,"deltaCTimeout":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"unfulfilledRequest":false,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"leader":2,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":8,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":4,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:25.811Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":8,"round":3,"sender":2,"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":3},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"latestAcceptedEpochRound":{"Epoch":8,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"leader":2,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":9,"candidateEpochs":[9,9,9]} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","l":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"e":8} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":8,"round":3} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":1,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000577204} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000634807} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9,"round":1,"observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:25.940Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.140Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.143Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.544Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.988Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.182Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.190Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.587Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.038Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.196Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:28.240Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.124Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.293Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.365Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:12:29.698Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:29","latency":"94.911µs"} -{"level":"debug","ts":"2023-08-08T06:12:29.782Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:29","latency":"99.054µs"} -{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"initialRound":false,"deviation":true,"alphaReportPPB":0,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","alphaReportInfinite":false,"result":true} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":3,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":2,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","result":true,"latestAcceptedEpochRound":{"Epoch":8,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1}} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.0005754} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000674084} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:30.127Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.223Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.321Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.501Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.523Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.205Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:33.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.596Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:33.820Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","deltaC":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deviation":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"initialRound":false,"alphaReportPPB":0,"result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"leader":3,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":2,"sender":3,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","result":true,"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"contractEpochRound":{"Epoch":9,"Round":1},"reportEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"info","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000657226} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000696394} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":2,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":4,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":2,"sender":1,"oid":2} -{"level":"debug","ts":"2023-08-08T06:12:34.001Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.024Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:34.024Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:34.227Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"} -{"level":"debug","ts":"2023-08-08T06:12:34.227Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537"} -{"level":"debug","ts":"2023-08-08T06:12:34.433Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.600Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.635Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.677Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"} -{"level":"debug","ts":"2023-08-08T06:12:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:34","latency":"84.932µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:34","latency":"87.397µs"} -{"level":"debug","ts":"2023-08-08T06:12:35.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.420Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537","signature":"3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"} -{"level":"debug","ts":"2023-08-08T06:12:35.420Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"],"id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537"} -{"level":"debug","ts":"2023-08-08T06:12:35.420Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"176cb3e4-8f1f-4eb2-a5ce-d5086379a537","signatures":["3RKLmc48NG7CRrM2BGcg3r6pigfCHuVr7LHHN9EakWWVNnDiCZUjok3qc5iwxc3xWdtQywgRL5WA84hzqzxVWcmx"]} -{"level":"debug","ts":"2023-08-08T06:12:35.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.703Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.049Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.736Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.745Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.573Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.776Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.782Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:37.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"result":true,"deltaCTimeout":true,"alphaReportPPB":0,"initialRound":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deltaC":0} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":3,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"leader":3,"epoch":9,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportEpochRound":{"Epoch":9,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"contractEpochRound":{"Epoch":9,"Round":2},"alphaAcceptPPB":0,"result":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":3,"sender":4,"epoch":9,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":3,"epoch":9,"e":9,"l":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"info","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":9,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000637334} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000696363} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":1,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"leader":2,"round":1,"sender":2,"msgEpoch":10,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observationCount":1,"requiredObservationCount":3,"oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"msgRound":1,"round":1,"sender":3,"msgEpoch":10} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"msgEpoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"msgRound":1,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"leader":2,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:37.830Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:37.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"msgRound":1,"round":1,"sender":1,"msgEpoch":10,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:37.831Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:38.187Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.206Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:38.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.787Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.826Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.192Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.713Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:39","latency":"82.718µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:39","latency":"90.487µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.225Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.754Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.862Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.956Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.267Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:41.831Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","unfulfilledRequest":false,"result":true,"alphaReportInfinite":false,"deviation":true,"deltaC":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1}} -{"level":"debug","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"reportEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":9,"Round":2},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000628349} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000653443} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"msgRound":1,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":4,"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":2,"msgEpoch":10,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observationCount":1,"requiredObservationCount":3,"round":2,"oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgEpoch":10,"msgRound":2,"round":2,"oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","sender":3} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"msgEpoch":10,"msgRound":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"requiredObservationCount":3,"round":2,"observationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.835Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:41.836Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2,"sender":1,"msgEpoch":10,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:12:41.836Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.846Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.048Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.943Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.115Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.206Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:43.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.939Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.361Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.567Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:12:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:44","latency":"85.755µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:44","latency":"90.439µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.024Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.166Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.429Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:45.836Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","initialRound":false,"deviation":true,"alphaReportPPB":0,"unfulfilledRequest":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"result":true,"deltaC":0,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"contractEpochRound":{"Epoch":10,"Round":1},"reportEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000667127} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000717961} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"msgRound":2,"oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":3,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"sender":2,"msgEpoch":10,"msgRound":3,"oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"observationCount":1,"requiredObservationCount":3,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":3,"msgEpoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","requiredObservationCount":3,"round":3,"observationCount":2} -{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":3,"sender":4,"msgEpoch":10,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.840Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:45.841Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgRound":3,"round":3,"sender":1,"msgEpoch":10,"oid":2,"epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:45.841Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:46.035Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.052Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.074Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.109Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.276Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.513Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.138Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.159Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:48.340Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.563Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.235Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.243Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.648Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:49","latency":"86.406µs"} -{"level":"debug","ts":"2023-08-08T06:12:49.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:49","latency":"74.705µs"} -{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviation":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"messageRound":4} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":3,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":4} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"leader":2,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptPPB":0,"deviates":true,"reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":10,"Round":3},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":10,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":10,"round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":10,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"newEpoch":11,"candidateEpochs":[11,11,11]} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":10,"leader":2,"e":10,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":1,"epoch":10,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.00065664} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.00066703} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"msgEpoch":11,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"msgEpoch":11,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"leader":2,"round":1,"sender":4,"msgEpoch":11,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:49.846Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":1,"sender":1,"msgEpoch":11} -{"level":"debug","ts":"2023-08-08T06:12:49.847Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:50.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.481Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.715Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.319Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.371Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.521Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.776Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.365Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.385Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.568Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.790Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:53.380Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.583Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportPPB":0,"unfulfilledRequest":false,"deviation":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","alphaReportInfinite":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"initialRound":false,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":1,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":10,"Round":3},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000635658} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000740522} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"leader":2,"round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":2,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"sender":2,"msgEpoch":11,"msgRound":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"round":2,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":2,"sender":3,"msgEpoch":11,"msgRound":2} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"leader":2,"round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgRound":2,"round":2,"sender":4,"msgEpoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":3,"requiredObservationCount":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":1,"msgEpoch":11,"msgRound":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:53.851Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:54.425Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.442Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:54","latency":"87.325µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:54","latency":"89.772µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.491Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.503Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.705Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.534Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.939Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.547Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.610Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.813Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:57.851Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","alphaReportInfinite":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","unfulfilledRequest":false,"alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"reportingPlugin":"NumericalMedian","deltaC":0,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deviates":true,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"latestAcceptedEpochRound":{"Epoch":11,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4"} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","specID":1,"runTime":0.000665067} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":0,"jobName":"","specID":1,"runTime":0.000770107} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"msgRound":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"sender":2,"epoch":11,"oid":2} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","epoch":11,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":4,"epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"round":3,"sender":2,"msgEpoch":11,"msgRound":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"observationCount":1,"requiredObservationCount":3,"round":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":3,"msgEpoch":11,"msgRound":3,"round":3,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":4,"oid":2,"epoch":11,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","msgEpoch":11,"msgRound":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2,"round":3,"observationCount":3} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:57.856Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"round":3,"sender":1,"msgEpoch":11,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:57.856Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:57.952Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:58.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.877Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.638Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.747Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.770Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:12:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:59","latency":"75.805µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:12:59","latency":"100.338µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.660Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.820Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.023Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.064Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.686Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.827Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:13:01.856Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","deltaC":0,"unfulfilledRequest":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"result":true,"alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false} -{"level":"debug","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":2,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","roundMax":3,"round":4,"messageRound":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"latestAcceptedEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"round":3,"sender":3,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":4,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","candidateEpochs":[12,12,12],"oid":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":12} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"epoch":11} -{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":11,"leader":2,"e":11,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","oid":2,"epoch":12,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2,"sender":1,"epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:02.030Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.091Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.708Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.052Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.113Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:13:03.797Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.058Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.202Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:04","latency":"88.983µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:04","latency":"164.538µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.811Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.909Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.112Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.215Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.840Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.956Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.247Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.985Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.188Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.905Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.072Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:13:08.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.937Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.341Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:09","latency":"95.329µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:09","latency":"149.754µs"} -{"level":"debug","ts":"2023-08-08T06:13:10.018Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.422Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.457Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.266Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.448Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.075Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.332Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.535Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.210Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:13:13.391Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.593Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.147Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.677Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:14","latency":"102.198µs"} -{"level":"debug","ts":"2023-08-08T06:13:14.783Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.90.192","errors":"","servedAt":"2023-08-08 06:13:14","latency":"100.391µs"} -{"level":"debug","ts":"2023-08-08T06:13:14.973Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4"} -{"level":"debug","ts":"2023-08-08T06:13:15.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.526Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.611Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.729Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.242Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.571Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.647Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.774Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:17.276Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":2,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:13:17.276Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-3-a19a7fbd-8cf0-4d20-8bfe-15000afb9db4","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"6Am8bN1VvwG9znVxWqvHTdiEGEReNejzfCm9ywaKqiq4","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":2} -{"level":"debug","ts":"2023-08-08T06:13:17.278Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log deleted file mode 100644 index 35c28ce08..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - - -WARNING: enabling "trust" authentication for local connections -Success. You can now start the database server using: -You can change this by editing pg_hba.conf or using the option -A, or - ---auth-local and --auth-host, the next time you run initdb. - pg_ctl -D /var/lib/postgresql/data -l logfile start - -waiting for server to start....2023-08-08 06:04:07.558 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:07.641 UTC [49] LOG: database system was shut down at 2023-08-08 06:04:07 UTC -2023-08-08 06:04:07.645 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -2023-08-08 06:04:08.256 UTC [48] LOG: received fast shutdown request -waiting for server to shut down....2023-08-08 06:04:08.261 UTC [48] LOG: aborting any active transactions -2023-08-08 06:04:08.262 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-08 06:04:08.339 UTC [50] LOG: shutting down -2023-08-08 06:04:08.354 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-08 06:04:08.365 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-08 06:04:08.365 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-08 06:04:08.367 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-08 06:04:08.380 UTC [85] LOG: database system was shut down at 2023-08-08 06:04:08 UTC -2023-08-08 06:04:08.439 UTC [1] LOG: database system is ready to accept connections -2023-08-08 06:04:09.811 UTC [92] FATAL: role "chainlink" does not exist -2023-08-08 06:04:10.839 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-08 06:04:10.839 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-08 06:04:10.839 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-08 06:04:10.839 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-08 06:04:10.840 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-08 06:04:10.840 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log deleted file mode 100644 index aa1633736..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/chainlink-0_4/node.log +++ /dev/null @@ -1,1686 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-08T06:04:10.644Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.644Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.644Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'devnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'https://api.devnet.solana.com'\n\n","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:10.645Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit d0c54ead97a07a9759d9a51736c219c2c6a18681","version":"2.4.0@d0c54ea","Version":"2.4.0","SHA":"d0c54ead97a07a9759d9a51736c219c2c6a18681"} -{"level":"debug","ts":"2023-08-08T06:04:10.740Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.740Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:10.740Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@d0c54ea","appID":"e1ceebd7-9ed8-4cfa-9c16-bd23ed880b78"} -{"level":"debug","ts":"2023-08-08T06:04:10.745Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@d0c54ea","appID":"e1ceebd7-9ed8-4cfa-9c16-bd23ed880b78"} -{"level":"debug","ts":"2023-08-08T06:04:10.839Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@d0c54ea","appVersion":"2.4.0"} -2023/08/08 06:04:11 OK 0001_initial.sql -2023/08/08 06:04:11 OK 0002_gormv2.sql -2023/08/08 06:04:11 OK 0003_eth_logs_table.sql -2023/08/08 06:04:11 OK 0004_cleanup_tx_attempt_state.sql -2023/08/08 06:04:11 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/08 06:04:11 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/08 06:04:11 OK 0007_reverse_eth_logs_table.sql -2023/08/08 06:04:11 OK 0008_reapply_eth_logs_table.sql -2023/08/08 06:04:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/08 06:04:11 OK 0010_bridge_fk.sql -2023/08/08 06:04:11 OK 0011_latest_round_requested.sql -2023/08/08 06:04:11 OK 0012_change_jobs_to_numeric.sql -2023/08/08 06:04:11 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/08 06:04:11 OK 0014_add_keeper_tables.sql -2023/08/08 06:04:11 OK 0015_simplify_log_broadcaster.sql -2023/08/08 06:04:11 OK 0016_pipeline_task_run_dot_id.sql -2023/08/08 06:04:11 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/08 06:04:11 OK 0018_add_node_version_table.sql -2023/08/08 06:04:11 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/08 06:04:11 OK 0020_remove_result_task.sql -2023/08/08 06:04:11 OK 0021_add_job_id_topic_filter.sql -2023/08/08 06:04:11 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/08 06:04:11 OK 0023_add_confirmations_to_direct_request.sql -2023/08/08 06:04:11 OK 0024_add_cron_spec_tables.sql -2023/08/08 06:04:11 OK 0025_create_log_config_table.sql -2023/08/08 06:04:11 OK 0026_eth_tx_meta.sql -2023/08/08 06:04:11 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/08 06:04:11 OK 0028_vrf_v2.sql -2023/08/08 06:04:11 OK 0029_add_webhook_spec_tables.sql -2023/08/08 06:04:11 OK 0030_drop_keys_last_used.sql -2023/08/08 06:04:11 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/08 06:04:11 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/08 06:04:11 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/08 06:04:11 OK 0034_webhook_external_initiator.sql -2023/08/08 06:04:11 OK 0035_create_feeds_managers.sql -2023/08/08 06:04:11 OK 0036_external_job_id.go -2023/08/08 06:04:11 OK 0037_cascade_deletes.sql -2023/08/08 06:04:11 OK 0038_create_csa_keys.sql -2023/08/08 06:04:11 OK 0039_remove_fmv2_precision.sql -2023/08/08 06:04:11 OK 0040_heads_l1_block_number.sql -2023/08/08 06:04:11 OK 0041_eth_tx_strategies.sql -2023/08/08 06:04:11 OK 0042_create_job_proposals.sql -2023/08/08 06:04:11 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/08 06:04:11 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/08 06:04:11 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/08 06:04:11 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/08 06:04:11 OK 0047_add_uuid_to_job_proposals.sql -2023/08/08 06:04:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/08 06:04:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/08 06:04:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/08 06:04:11 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/08 06:04:11 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/08 06:04:11 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/08 06:04:11 OK 0054_remove_legacy_pipeline.go -2023/08/08 06:04:11 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/08 06:04:11 OK 0056_multichain.go -2023/08/08 06:04:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/08 06:04:11 OK 0058_direct_request_whitelist.sql -2023/08/08 06:04:11 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/08 06:04:11 OK 0060_combine_keys_tables.sql -2023/08/08 06:04:11 OK 0061_multichain_relations.sql -2023/08/08 06:04:11 OK 0062_upgrade_keepers.sql -2023/08/08 06:04:11 OK 0063_add_job_proposal_timestamp.sql -2023/08/08 06:04:11 OK 0064_cascade_delete_chain_nodes.sql -2023/08/08 06:04:11 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/08 06:04:11 OK 0066_update_job_proposal_status.sql -2023/08/08 06:04:11 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/08 06:04:11 OK 0068_eth_tx_from_address_idx.sql -2023/08/08 06:04:11 OK 0069_remove_unused_columns.sql -2023/08/08 06:04:11 OK 0070_dynamic_fee_txes.sql -2023/08/08 06:04:11 OK 0071_allow_null_json_serializable.sql -2023/08/08 06:04:11 OK 0072_drop_unused_tables.sql -2023/08/08 06:04:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/08 06:04:11 OK 0074_simulation_eth_tx.sql -2023/08/08 06:04:11 OK 0075_unique_job_names.sql -2023/08/08 06:04:11 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/08 06:04:11 OK 0077_add_webauthn_table.sql -2023/08/08 06:04:11 OK 0078_only_one_version.sql -2023/08/08 06:04:11 OK 0079_vrf_v2_fields.sql -2023/08/08 06:04:11 OK 0080_drop_unused_cols.sql -2023/08/08 06:04:11 OK 0081_unconsumed_log_broadcasts.sql -2023/08/08 06:04:11 OK 0082_lease_lock.sql -2023/08/08 06:04:11 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/08 06:04:11 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/08 06:04:11 OK 0085_requested_confs_delay.sql -2023/08/08 06:04:11 OK 0086_upgrade_keepers_observation_source.sql -2023/08/08 06:04:11 OK 0087_ocr2_tables.sql -2023/08/08 06:04:11 OK 0088_vrfv2_request_timeout.sql -2023/08/08 06:04:11 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/08 06:04:11 OK 0090_ocr_new_timeouts.sql -2023/08/08 06:04:11 OK 0091_ocr2_relay.sql -2023/08/08 06:04:11 OK 0092_bptxm_tx_checkers.sql -2023/08/08 06:04:11 OK 0093_terra_txm.sql -2023/08/08 06:04:11 OK 0094_blockhash_store_job.sql -2023/08/08 06:04:11 OK 0095_terra_fcd.sql -2023/08/08 06:04:11 OK 0096_create_job_proposal_specs.sql -2023/08/08 06:04:11 OK 0097_bootstrap_spec.sql -2023/08/08 06:04:11 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/08 06:04:11 OK 0099_terra_msgs_created_at.sql -2023/08/08 06:04:11 OK 0100_bootstrap_config.sql -2023/08/08 06:04:11 OK 0101_generic_ocr2.sql -2023/08/08 06:04:11 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/08 06:04:11 OK 0103_terra_msgs_type_url.sql -2023/08/08 06:04:11 OK 0104_terra_cascade_delete.sql -2023/08/08 06:04:12 OK 0105_create_forwarder_addresses.sql -2023/08/08 06:04:12 OK 0106_evm_node_uniqueness.sql -2023/08/08 06:04:12 OK 0107_vrf_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/08 06:04:12 OK 0109_solana_chains_nodes.sql -2023/08/08 06:04:12 OK 0110_add_vrf_chunk_size.sql -2023/08/08 06:04:12 OK 0111_terra_msgs_state_started.sql -2023/08/08 06:04:12 OK 0112_vrf_batch_coordinator_address.sql -2023/08/08 06:04:12 OK 0113_vrf_v2_backoff_columns.sql -2023/08/08 06:04:12 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/08 06:04:12 OK 0115_log_poller.sql -2023/08/08 06:04:12 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/08 06:04:12 OK 0117_add_log_poller_idx.sql -2023/08/08 06:04:12 OK 0118_create_feeds_manager_chain_config.sql -2023/08/08 06:04:12 OK 0119_initial_rebroadcast_columns.sql -2023/08/08 06:04:12 OK 0120_log_poller_data_idx.sql -2023/08/08 06:04:12 OK 0121_remove_log_configs.sql -2023/08/08 06:04:12 OK 0122_upgrade_keepers_observation_source.sql -2023/08/08 06:04:12 OK 0123_terra_idx_simplify.sql -2023/08/08 06:04:12 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0125_keeper_flatten_schema_version.sql -2023/08/08 06:04:12 OK 0126_remove_observation_source.sql -2023/08/08 06:04:12 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/08 06:04:12 OK 0128_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0129_add_job_gas_limit.sql -2023/08/08 06:04:12 OK 0130_starknet_chains_nodes.sql -2023/08/08 06:04:12 OK 0131_add_multi_user.sql -2023/08/08 06:04:12 OK 0132_log_index_uniqueness.sql -2023/08/08 06:04:12 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/08 06:04:12 OK 0134_starknet_nodes_chain_id.sql -2023/08/08 06:04:12 OK 0135_tx_index_not_null.sql -2023/08/08 06:04:12 OK 0136_add_job_allow_forwarding.sql -2023/08/08 06:04:12 OK 0137_remove_tx_index.sql -2023/08/08 06:04:12 OK 0138_rename_allowforwarding_field.sql -2023/08/08 06:04:12 OK 0139_multi_chain_keys.sql -2023/08/08 06:04:12 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/08 06:04:12 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/08 06:04:12 OK 0142_delete_eth_key_state_cascades.sql -2023/08/08 06:04:12 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/08 06:04:12 OK 0144_optimize_lp.sql -2023/08/08 06:04:12 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/08 06:04:12 OK 0146_unique_contract_address_per_chain.sql -2023/08/08 06:04:12 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/08 06:04:12 OK 0148_dkg_shares.sql -2023/08/08 06:04:12 OK 0149_bridge_last_good_value.sql -2023/08/08 06:04:12 OK 0150_gaslaneprice_vrf.sql -2023/08/08 06:04:12 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/08 06:04:12 OK 0152_ocr2_multichain.sql -2023/08/08 06:04:12 OK 0153_ocr2_restore_global_constraint.sql -2023/08/08 06:04:12 OK 0154_ocr2dr_requests_table.sql -2023/08/08 06:04:12 OK 0155_remove_terra.sql -2023/08/08 06:04:12 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/08 06:04:12 OK 0157_add_log_poller_filters_table.sql -2023/08/08 06:04:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/08 06:04:12 OK 0159_add_name_to_job_proposals.sql -2023/08/08 06:04:12 OK 0160_bhs_multiple_from_addresses.sql -2023/08/08 06:04:12 OK 0161_update_job_proposal_status.sql -2023/08/08 06:04:12 OK 0162_logpoller_block_timestamps.sql -2023/08/08 06:04:12 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/08 06:04:12 OK 0164_add_cosmos.sql -2023/08/08 06:04:12 OK 0165_update_job_proposal_constraints.sql -2023/08/08 06:04:12 OK 0166_block_header_feeder_job.sql -2023/08/08 06:04:12 OK 0167_update_job_proposal_specs_status.sql -2023/08/08 06:04:12 OK 0168_drop_node_tables.sql -2023/08/08 06:04:12 OK 0169_log_poller_pruning.sql -2023/08/08 06:04:12 OK 0170_gateway_job_spec.sql -2023/08/08 06:04:12 OK 0171_create_legacy_gas_station_resources.sql -2023/08/08 06:04:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/08 06:04:12 OK 0173_add_s4_functions_table.sql -2023/08/08 06:04:12 OK 0174_vrf_owner.sql -2023/08/08 06:04:12 OK 0175_logpoller_querying_improvements.sql -2023/08/08 06:04:12 OK 0176_s4_shared_table.sql -2023/08/08 06:04:12 OK 0177_add_ocr_protocol_state.sql -2023/08/08 06:04:12 OK 0178_drop_access_list.sql -2023/08/08 06:04:12 OK 0179_notify_channel_on_log_inserts.sql -2023/08/08 06:04:12 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/08 06:04:12 OK 0181_bhs_vrfv2plus.sql -2023/08/08 06:04:12 OK 0182_nullable_feed_id.sql -2023/08/08 06:04:12 OK 0183_functions_new_fields.sql -2023/08/08 06:04:12 OK 0184_chains_tables_removal.sql -2023/08/08 06:04:12 OK 0185_create_mercury_transmit_requests.sql -2023/08/08 06:04:12 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:12.455Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.543Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID d99311a11634ccef0f68e7ad6ef2f3f9b7594df7e3b2fce9dffae0fde49daaf2 for chain type solana","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:16.543Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:18.659Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID Higab6yz3Z3nDAQUPtpMqoJXorCD57zfTfoBV6G6iiEc","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:20.648Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID f25583c6960dfd2926f20466c63b8fa79d7b491d63699a67b36c3036d870c029","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.844Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:22.967Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:22.968Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-08T06:04:22.968Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-08T06:04:22.968Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PromReporter"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineORM"} -{"level":"info","ts":"2023-08-08T06:04:22.968Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"SingletonPeerWrapper"} -{"level":"debug","ts":"2023-08-08T06:04:22.968Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-08T06:04:22.968Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@d0c54ea"} -{"level":"warn","ts":"2023-08-08T06:04:22.969Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 44321. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@d0c54ea","p2pPort":44321} -{"level":"debug","ts":"2023-08-08T06:04:22.969Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@d0c54ea","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":44321,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-08T06:04:22.970Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@d0c54ea","id":"PeerV1","v1peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","v1listenPort":44321,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/44321"} -{"level":"debug","ts":"2023-08-08T06:04:22.970Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","id":"ragep2p","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6 Counter:0 Addrs:[10.14.107.222:6690 127.0.0.1:6690] Sig:+DEBCrr5+M+436R/Sp5msV93D85erHHI8IMcbqjVrGkD1RJh2Uvu7VDK7pY8TpK1i2rqSwD2E4zCrD4XtsLnAA==}"} -{"level":"info","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@d0c54ea","id":"PeerV2","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:04:22.971Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"saveLoop"} -{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"recvLoop"} -{"level":"debug","ts":"2023-08-08T06:04:22.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:23.039Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@d0c54ea","name":"PipelineRunner"} -{"level":"info","ts":"2023-08-08T06:04:23.039Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.19s","version":"2.4.0@d0c54ea","appID":"e1ceebd7-9ed8-4cfa-9c16-bd23ed880b78"} -{"level":"debug","ts":"2023-08-08T06:04:23.039Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:23.040Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@d0c54ea","rowsDeleted":0,"duration":0.000859786} -{"level":"info","ts":"2023-08-08T06:04:23.047Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@d0c54ea","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-08T06:04:23.051Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@d0c54ea","duration":0.011078409} -{"level":"debug","ts":"2023-08-08T06:04:23.051Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:04:24.793Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:24","latency":"1.80589ms"} -{"level":"debug","ts":"2023-08-08T06:04:24.794Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:24","latency":"186.409µs"} -{"level":"debug","ts":"2023-08-08T06:04:27.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:28.102Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:04:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:29","latency":"105.273µs"} -{"level":"debug","ts":"2023-08-08T06:04:29.795Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:29","latency":"98.389µs"} -{"level":"info","ts":"2023-08-08T06:04:32.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:32.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:34","latency":"119.233µs"} -{"level":"debug","ts":"2023-08-08T06:04:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:34","latency":"95.271µs"} -{"level":"debug","ts":"2023-08-08T06:04:37.972Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:39","latency":"94.369µs"} -{"level":"debug","ts":"2023-08-08T06:04:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:39","latency":"89.547µs"} -{"level":"debug","ts":"2023-08-08T06:04:42.973Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:44","latency":"84.07µs"} -{"level":"debug","ts":"2023-08-08T06:04:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:44","latency":"71.398µs"} -{"level":"debug","ts":"2023-08-08T06:04:47.974Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:04:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:49","latency":"103.166µs"} -{"level":"debug","ts":"2023-08-08T06:04:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:49","latency":"114.464µs"} -{"level":"debug","ts":"2023-08-08T06:04:52.974Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:04:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:54","latency":"103.442µs"} -{"level":"debug","ts":"2023-08-08T06:04:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:54","latency":"117.402µs"} -{"level":"debug","ts":"2023-08-08T06:04:57.975Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:04:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:59","latency":"85.242µs"} -{"level":"debug","ts":"2023-08-08T06:04:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:04:59","latency":"88.977µs"} -{"level":"debug","ts":"2023-08-08T06:05:02.952Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:05:02.953Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-08T06:05:02.976Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-08T06:05:03.063Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@d0c54ea","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-08T06:05:03.064Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:03","latency":"112.382362ms"} -{"level":"debug","ts":"2023-08-08T06:05:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:04","latency":"104.82µs"} -{"level":"debug","ts":"2023-08-08T06:05:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:04","latency":"117.911µs"} -{"level":"debug","ts":"2023-08-08T06:05:07.976Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:09","latency":"92.897µs"} -{"level":"debug","ts":"2023-08-08T06:05:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:09","latency":"95.011µs"} -{"level":"debug","ts":"2023-08-08T06:05:12.977Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:14","latency":"93.111µs"} -{"level":"debug","ts":"2023-08-08T06:05:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:14","latency":"96.832µs"} -{"level":"debug","ts":"2023-08-08T06:05:17.978Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:19","latency":"88.595µs"} -{"level":"debug","ts":"2023-08-08T06:05:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:19","latency":"85.843µs"} -{"level":"debug","ts":"2023-08-08T06:05:22.367Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:22","latency":"2.23074ms"} -{"level":"debug","ts":"2023-08-08T06:05:22.978Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:24.467Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=devnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:24","latency":"1.908086014s"} -{"level":"debug","ts":"2023-08-08T06:05:24.839Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:24","latency":"124.923µs"} -{"level":"debug","ts":"2023-08-08T06:05:24.839Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:24","latency":"199.249µs"} -{"level":"debug","ts":"2023-08-08T06:05:26.770Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:26","latency":"2.112714842s"} -{"level":"debug","ts":"2023-08-08T06:05:27.979Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:28.472Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"75.247µs"} -{"level":"debug","ts":"2023-08-08T06:05:28.662Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:05:28","latency":"42.302µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:29","latency":"97.123µs"} -{"level":"debug","ts":"2023-08-08T06:05:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:29","latency":"79.632µs"} -{"level":"debug","ts":"2023-08-08T06:05:32.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:34","latency":"87.636µs"} -{"level":"debug","ts":"2023-08-08T06:05:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:34","latency":"69.395µs"} -{"level":"debug","ts":"2023-08-08T06:05:37.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:39","latency":"89.529µs"} -{"level":"debug","ts":"2023-08-08T06:05:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:39","latency":"85.107µs"} -{"level":"debug","ts":"2023-08-08T06:05:42.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:44","latency":"102.05µs"} -{"level":"debug","ts":"2023-08-08T06:05:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:44","latency":"68.753µs"} -{"level":"debug","ts":"2023-08-08T06:05:47.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:49","latency":"111.072µs"} -{"level":"debug","ts":"2023-08-08T06:05:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:49","latency":"111.072µs"} -{"level":"debug","ts":"2023-08-08T06:05:52.981Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:05:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:54","latency":"86.446µs"} -{"level":"debug","ts":"2023-08-08T06:05:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:54","latency":"95.407µs"} -{"level":"debug","ts":"2023-08-08T06:05:57.982Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:05:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:59","latency":"95.98µs"} -{"level":"debug","ts":"2023-08-08T06:05:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:05:59","latency":"78.062µs"} -{"level":"debug","ts":"2023-08-08T06:06:02.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:06:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:04","latency":"88.136µs"} -{"level":"debug","ts":"2023-08-08T06:06:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:04","latency":"87.98µs"} -{"level":"debug","ts":"2023-08-08T06:06:07.984Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:09","latency":"101.585µs"} -{"level":"debug","ts":"2023-08-08T06:06:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:09","latency":"84.134µs"} -{"level":"debug","ts":"2023-08-08T06:06:12.984Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:14","latency":"95.283µs"} -{"level":"debug","ts":"2023-08-08T06:06:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:14","latency":"96.925µs"} -{"level":"debug","ts":"2023-08-08T06:06:17.985Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:19","latency":"91.452µs"} -{"level":"debug","ts":"2023-08-08T06:06:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:19","latency":"89.667µs"} -{"level":"debug","ts":"2023-08-08T06:06:22.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:24","latency":"96.435µs"} -{"level":"debug","ts":"2023-08-08T06:06:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:24","latency":"69.771µs"} -{"level":"debug","ts":"2023-08-08T06:06:27.986Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:29","latency":"89.101µs"} -{"level":"debug","ts":"2023-08-08T06:06:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:29","latency":"91.214µs"} -{"level":"debug","ts":"2023-08-08T06:06:32.987Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:34","latency":"93.332µs"} -{"level":"debug","ts":"2023-08-08T06:06:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:34","latency":"93.61µs"} -{"level":"debug","ts":"2023-08-08T06:06:37.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:06:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:39","latency":"87.138µs"} -{"level":"debug","ts":"2023-08-08T06:06:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:39","latency":"89.421µs"} -{"level":"debug","ts":"2023-08-08T06:06:42.988Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:44.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:44","latency":"111.721µs"} -{"level":"debug","ts":"2023-08-08T06:06:44.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:44","latency":"73.743µs"} -{"level":"debug","ts":"2023-08-08T06:06:47.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:49","latency":"67.773µs"} -{"level":"debug","ts":"2023-08-08T06:06:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:49","latency":"100.984µs"} -{"level":"debug","ts":"2023-08-08T06:06:52.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:06:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:54","latency":"87.123µs"} -{"level":"debug","ts":"2023-08-08T06:06:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:54","latency":"70.177µs"} -{"level":"debug","ts":"2023-08-08T06:06:57.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:06:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:59","latency":"104.004µs"} -{"level":"debug","ts":"2023-08-08T06:06:59.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:06:59","latency":"115.119µs"} -{"level":"debug","ts":"2023-08-08T06:07:02.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:04","latency":"94.476µs"} -{"level":"debug","ts":"2023-08-08T06:07:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:04","latency":"93.924µs"} -{"level":"debug","ts":"2023-08-08T06:07:07.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:07:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:09","latency":"72.376µs"} -{"level":"debug","ts":"2023-08-08T06:07:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:09","latency":"96.172µs"} -{"level":"debug","ts":"2023-08-08T06:07:12.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:07:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:14","latency":"97.917µs"} -{"level":"debug","ts":"2023-08-08T06:07:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:14","latency":"97.964µs"} -{"level":"debug","ts":"2023-08-08T06:07:17.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:07:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:19","latency":"111.983µs"} -{"level":"debug","ts":"2023-08-08T06:07:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:19","latency":"114.38µs"} -{"level":"debug","ts":"2023-08-08T06:07:22.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:24","latency":"83.201µs"} -{"level":"debug","ts":"2023-08-08T06:07:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:24","latency":"91.839µs"} -{"level":"debug","ts":"2023-08-08T06:07:27.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:29","latency":"103.018µs"} -{"level":"debug","ts":"2023-08-08T06:07:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:29","latency":"72.469µs"} -{"level":"debug","ts":"2023-08-08T06:07:32.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:34","latency":"112.984µs"} -{"level":"debug","ts":"2023-08-08T06:07:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:34","latency":"119.669µs"} -{"level":"debug","ts":"2023-08-08T06:07:37.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:07:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:39","latency":"93.459µs"} -{"level":"debug","ts":"2023-08-08T06:07:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:39","latency":"87.894µs"} -{"level":"debug","ts":"2023-08-08T06:07:42.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:44","latency":"87.879µs"} -{"level":"debug","ts":"2023-08-08T06:07:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:44","latency":"94.407µs"} -{"level":"debug","ts":"2023-08-08T06:07:47.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:07:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:49","latency":"74.676µs"} -{"level":"debug","ts":"2023-08-08T06:07:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:49","latency":"94.635µs"} -{"level":"debug","ts":"2023-08-08T06:07:52.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:07:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:54","latency":"91.155µs"} -{"level":"debug","ts":"2023-08-08T06:07:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:54","latency":"64.977µs"} -{"level":"debug","ts":"2023-08-08T06:07:57.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:07:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:59","latency":"87.619µs"} -{"level":"debug","ts":"2023-08-08T06:07:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:07:59","latency":"89.738µs"} -{"level":"debug","ts":"2023-08-08T06:08:02.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:08:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:04","latency":"74.913µs"} -{"level":"debug","ts":"2023-08-08T06:08:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:04","latency":"101.706µs"} -{"level":"debug","ts":"2023-08-08T06:08:07.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:09","latency":"106.315µs"} -{"level":"debug","ts":"2023-08-08T06:08:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:09","latency":"71.565µs"} -{"level":"debug","ts":"2023-08-08T06:08:12.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:14","latency":"93.541µs"} -{"level":"debug","ts":"2023-08-08T06:08:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:14","latency":"71.261µs"} -{"level":"debug","ts":"2023-08-08T06:08:17.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:19","latency":"82.909µs"} -{"level":"debug","ts":"2023-08-08T06:08:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:19","latency":"93.245µs"} -{"level":"debug","ts":"2023-08-08T06:08:22.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:24","latency":"99.495µs"} -{"level":"debug","ts":"2023-08-08T06:08:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:24","latency":"101.969µs"} -{"level":"debug","ts":"2023-08-08T06:08:28.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:08:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:29","latency":"96.992µs"} -{"level":"debug","ts":"2023-08-08T06:08:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:29","latency":"69.523µs"} -{"level":"debug","ts":"2023-08-08T06:08:33.001Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:34","latency":"92.191µs"} -{"level":"debug","ts":"2023-08-08T06:08:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:34","latency":"107.99µs"} -{"level":"debug","ts":"2023-08-08T06:08:38.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:39","latency":"97.984µs"} -{"level":"debug","ts":"2023-08-08T06:08:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:39","latency":"97.289µs"} -{"level":"debug","ts":"2023-08-08T06:08:43.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:44","latency":"91.848µs"} -{"level":"debug","ts":"2023-08-08T06:08:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:44","latency":"87.367µs"} -{"level":"debug","ts":"2023-08-08T06:08:48.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:49","latency":"88.095µs"} -{"level":"debug","ts":"2023-08-08T06:08:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:49","latency":"95.451µs"} -{"level":"debug","ts":"2023-08-08T06:08:53.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:08:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:54","latency":"89.656µs"} -{"level":"debug","ts":"2023-08-08T06:08:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:54","latency":"88.713µs"} -{"level":"debug","ts":"2023-08-08T06:08:58.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:08:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:59","latency":"92.392µs"} -{"level":"debug","ts":"2023-08-08T06:08:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:08:59","latency":"103.264µs"} -{"level":"debug","ts":"2023-08-08T06:09:03.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:04","latency":"103.759µs"} -{"level":"debug","ts":"2023-08-08T06:09:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:04","latency":"80.037µs"} -{"level":"debug","ts":"2023-08-08T06:09:08.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:09:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:09","latency":"84.137µs"} -{"level":"debug","ts":"2023-08-08T06:09:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:09","latency":"88.318µs"} -{"level":"debug","ts":"2023-08-08T06:09:13.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:14","latency":"91.107µs"} -{"level":"debug","ts":"2023-08-08T06:09:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:14","latency":"92.607µs"} -{"level":"debug","ts":"2023-08-08T06:09:18.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:19","latency":"86.485µs"} -{"level":"debug","ts":"2023-08-08T06:09:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:19","latency":"93.271µs"} -{"level":"debug","ts":"2023-08-08T06:09:23.009Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:24","latency":"82.818µs"} -{"level":"debug","ts":"2023-08-08T06:09:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:24","latency":"95.061µs"} -{"level":"debug","ts":"2023-08-08T06:09:28.010Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:29","latency":"92.839µs"} -{"level":"debug","ts":"2023-08-08T06:09:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:29","latency":"108.529µs"} -{"level":"info","ts":"2023-08-08T06:09:32.971Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@d0c54ea","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:09:33.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:09:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:34","latency":"92.733µs"} -{"level":"debug","ts":"2023-08-08T06:09:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:34","latency":"92.18µs"} -{"level":"debug","ts":"2023-08-08T06:09:38.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:09:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:39","latency":"108.091µs"} -{"level":"debug","ts":"2023-08-08T06:09:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:39","latency":"108.528µs"} -{"level":"debug","ts":"2023-08-08T06:09:43.013Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:44","latency":"94.425µs"} -{"level":"debug","ts":"2023-08-08T06:09:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:44","latency":"94.389µs"} -{"level":"debug","ts":"2023-08-08T06:09:46.701Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"devnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:46","latency":"65.203µs"} -{"level":"debug","ts":"2023-08-08T06:09:46.892Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@d0c54ea","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"devnet\",\"solanaURL\":\"https://api.devnet.solana.com\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:09:46","latency":"67.009µs"} -{"level":"debug","ts":"2023-08-08T06:09:48.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:49","latency":"87.425µs"} -{"level":"debug","ts":"2023-08-08T06:09:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:49","latency":"86.246µs"} -{"level":"debug","ts":"2023-08-08T06:09:53.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:09:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:54","latency":"89.598µs"} -{"level":"debug","ts":"2023-08-08T06:09:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:54","latency":"86.027µs"} -{"level":"debug","ts":"2023-08-08T06:09:58.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:09:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:59","latency":"83.224µs"} -{"level":"debug","ts":"2023-08-08T06:09:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:09:59","latency":"87.875µs"} -{"level":"debug","ts":"2023-08-08T06:10:03.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:04","latency":"86.83µs"} -{"level":"debug","ts":"2023-08-08T06:10:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:04","latency":"86.29µs"} -{"level":"debug","ts":"2023-08-08T06:10:08.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:09","latency":"87.966µs"} -{"level":"debug","ts":"2023-08-08T06:10:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:09","latency":"91.422µs"} -{"level":"debug","ts":"2023-08-08T06:10:13.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:14","latency":"79.247µs"} -{"level":"debug","ts":"2023-08-08T06:10:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:14","latency":"83.583µs"} -{"level":"debug","ts":"2023-08-08T06:10:18.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:19","latency":"91.047µs"} -{"level":"debug","ts":"2023-08-08T06:10:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:19","latency":"73.669µs"} -{"level":"debug","ts":"2023-08-08T06:10:23.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:24","latency":"76.019µs"} -{"level":"debug","ts":"2023-08-08T06:10:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:24","latency":"113.66µs"} -{"level":"debug","ts":"2023-08-08T06:10:28.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:29","latency":"93.573µs"} -{"level":"debug","ts":"2023-08-08T06:10:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:29","latency":"89.609µs"} -{"level":"debug","ts":"2023-08-08T06:10:33.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:34","latency":"91.826µs"} -{"level":"debug","ts":"2023-08-08T06:10:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:34","latency":"98.459µs"} -{"level":"debug","ts":"2023-08-08T06:10:38.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:39","latency":"91.761µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:39","latency":"67.476µs"} -{"level":"debug","ts":"2023-08-08T06:10:39.941Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"mockserver-bridge\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:39","latency":"61.31345ms"} -{"level":"info","ts":"2023-08-08T06:10:40.139Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-08T06:10:40.140Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","peers":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690"]} -{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"info","ts":"2023-08-08T06:10:40.140Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-08T06:10:40.140Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.293Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.294Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.447Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@d0c54ea","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:40.599Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@d0c54ea","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-08T06:10:40.599Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:40.599Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","duration":644} -{"level":"info","ts":"2023-08-08T06:10:40.600Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"info","ts":"2023-08-08T06:10:40.600Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:10:40.600Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@d0c54ea","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5\\\"\\n\\n\\nocrKeyBundleID = \\\"3282afa009cf61d44fc18dc97241b39bdebfbcbd8a3c6cb644e0f2b9fbd0ba05\\\" \\n\\ntransmitterID = \\\"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU@10.14.25.244:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"mockserver-bridge\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"devnet\\\"\\nnodeEndpointHTTP = \\\"https://api.devnet.solana.com\\\"\\nocr2ProgramID = \\\"cjg3oHmg9uuPsP8D6g29NWvhySJkdYdAo9D25PRbKXJ\\\"\\nstoreProgramID = \\\"HEvSKofvBgfaexv23kMabbYqxasxU3mQ4ibBMEmJWHny\\\"\\ntransmissionsID = \\\"AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-08 06:10:40","latency":"467.920708ms"} -{"level":"debug","ts":"2023-08-08T06:10:40.752Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"info","ts":"2023-08-08T06:10:40.752Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@d0c54ea","id":"ragep2p","bootstraps":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:40.753Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ragedisco/v1","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2"} -{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:40.754Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","peerIDs":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"]} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","queried":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"found":["12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"numFound":1,"numLoaded":1,"_id":"discoveryProtocol","numQueried":5,"loaded":["12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@d0c54ea","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":4,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","Addrs":["10.14.25.244:6690"]}],"oracles":["12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"],"id":"PeerV2","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamID":"de89575f7498618480e3ec394019f38bfee1c47b3846ac1ad404d0fc8eafc11d","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@d0c54ea","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oracleID":4} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"info","ts":"2023-08-08T06:10:40.757Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"info","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"info","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"previousNe":0,"ne":1} -{"level":"info","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"leader":4,"epoch":1} -{"level":"debug","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:40.758Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:10:40.761Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.002885797} -{"level":"debug","ts":"2023-08-08T06:10:40.761Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.003070649} -{"level":"debug","ts":"2023-08-08T06:10:40.762Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"observation":"COC4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":4,"epoch":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:40.762Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"leader":4,"sender":4,"msgEpoch":1,"msgRound":1,"round":1,"epoch":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:40.762Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":1,"observationCount":1,"requiredObservationCount":3,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:40.905Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.354Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.673Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:41.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.385Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.538Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:42.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:43.076Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.396Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU"} -{"level":"warn","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"debug","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"warn","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo"} -{"level":"warn","ts":"2023-08-08T06:10:43.623Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw"} -{"level":"info","ts":"2023-08-08T06:10:43.625Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.25.244:6690","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","id":"ragep2p","direction":"out"} -{"level":"info","ts":"2023-08-08T06:10:43.626Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU","streamName":"ragedisco/v1","streamID":"db17548e8adc77492de6a434450828c9c08159204509530e603f890d03e9bcc2","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWJqi4ZbpzyRZUdaxUTbBeVx2gfMcQRx2C9RDQZmVdrHqU Counter:0 Addrs:[10.14.25.244:6690 127.0.0.1:6690] Sig:WrQCKTviy+1YXlLu5x5KEwtMUVdNyMFTjkYwlTautsfSTX4Me8PlHJ3xKqCYz5V3YUQU4iXUprTvHEM+Q5zaBw==}","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb Counter:0 Addrs:[10.14.53.196:6690 127.0.0.1:6690] Sig:mVUxt5BXF4mFACrm+6YSiGGd0Q2W3cqU8+rRYQpx7HdU8MGEPJlsmK2OyGRE8HGKVXj/+0reKGJabJTaOI2IBQ==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo Counter:0 Addrs:[10.14.31.164:6690 127.0.0.1:6690] Sig:wHvZyyUWBVWzR3bsTsJQPJiDuXulI8+RgvApfTCCvgueDHNPizdLbMSOeYhlZWIP4KqWY8ZEBpBrz4qOiqF+BA==}"} -{"level":"info","ts":"2023-08-08T06:10:43.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@d0c54ea","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw Counter:0 Addrs:[10.14.88.105:6690 127.0.0.1:6690] Sig:NNiP5UsL9zh6/eoUZLGJvM2E3hCaLFhXjpv6uEEFpF3QroKqT4qjqm4NPN2XEXwwvLtVVrIx673ZucksE66PBA==}","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:10:43.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.137Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.493Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:44","latency":"91.857µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:44","latency":"70.828µs"} -{"level":"debug","ts":"2023-08-08T06:10:44.897Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.202Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.720Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:45.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.208Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.568Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.722Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:46.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.225Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.793Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","direction":"in","remoteAddr":"10.14.31.164:41138","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamID":"a371066854a1dc730ebe561e53b5fcaba13fb26181d14bffc69bdf3b950ec50f","streamName":"ragedisco/v1","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p"} -{"level":"info","ts":"2023-08-08T06:10:47.829Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamID":"3a127ce7cb9a66d2d30decd28d0d7c9f01fdda3a6c23f58e588e7a2d5725d27a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWMcAYxMaBzpMDZ81gg3o7svP4bQCXethFMkTaKk2BWnqo","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:47.830Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":2,"Round":1,"H":[239,93,235,201,47,82,97,45,157,77,100,173,139,78,90,209,60,106,3,207,132,22,143,200,181,53,107,168,93,208,243,193],"AttestedReport":{"Report":"ZNHcWwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"nVDl2oYed+ewlHuz6QJpRuULB/bT8U88+IC1hCTB4dIxJS/w9Zguhq1bMtkvCDjAbi6qO59hTyqOa7sX7sD8EgA=","Signer":2},{"Signature":"tMd3foiEfDqWVmshHEBQUxj1390sG6ZXDgJLz4Atfp5pY05EuRGAhRkX9BdRn+Z4Cqti3EWePLasDq9sxEIx9gA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"deviates":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","result":true,"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportingPlugin":"NumericalMedian","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":2,"Round":2}} -{"level":"info","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.831Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3,"oid":4} -{"level":"debug","ts":"2023-08-08T06:10:47.928Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","name":"primary","solana-url":"https://api.devnet.solana.com"} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"contractEpochRound":{"Epoch":0,"Round":0},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptPPB":0,"deviates":true,"result":true,"reportEpochRound":{"Epoch":2,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":1,"sender":4,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"epoch":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:47.984Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3,"sender":4,"epoch":2} -{"level":"debug","ts":"2023-08-08T06:10:48.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:48.137Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab","signature":"4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4"} -{"level":"debug","ts":"2023-08-08T06:10:48.137Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab"} -{"level":"debug","ts":"2023-08-08T06:10:48.234Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {0 0}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.707Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.797Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab","signature":"4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4"} -{"level":"debug","ts":"2023-08-08T06:10:48.797Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"ebff13b5-c64c-4fd4-9d14-b341d3b398ab","signatures":["4SaZU55wLWkvuiMADmF8HFq28417sbs8zggz8Ek48dPNie76kzxyCeE2q4LCWBBuFnecBhUQXTP3w8hiBY2zNyE4"]} -{"level":"debug","ts":"2023-08-08T06:10:48.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:48.952Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.257Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.740Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","direction":"in","remoteAddr":"10.14.53.196:51830","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb"} -{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","streamID":"87161492adea652600fd86b643b40466b6d4fc370ecf19e0564fb1675b6f5d1d"} -{"level":"info","ts":"2023-08-08T06:10:49.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","streamID":"7432bf4aad16f9846d3303ff4c1195533303b464e320ca9aec104f4369bae312","remotePeerID":"12D3KooWCkeQPMXAMR9enrW1Lf7TbuMWx3xjHnHytnNbH5vG6rzb","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":1,"epoch":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":2,"candidateEpochs":[2,2,3]} -{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"leader":4,"epoch":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":1,"l":4} -{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":1,"epoch":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","newEpoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"candidateEpochs":[3,3,3]} -{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":2,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":2,"l":2} -{"level":"info","ts":"2023-08-08T06:10:49.762Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:10:49.763Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001162486} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001197189} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"observation":"COm4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"sender":4,"msgEpoch":3,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:10:49.764Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":1,"sender":3,"msgEpoch":3,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"sender":1,"msgEpoch":3} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:10:49.765Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:49","latency":"89.427µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:49","latency":"100.022µs"} -{"level":"debug","ts":"2023-08-08T06:10:49.893Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:49.983Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.289Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475039}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@d0c54ea","remoteAddr":"10.14.88.105:34774","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","direction":"in"} -{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","streamID":"cb726f335a9b99adb39c575900890570aa1d7fb02b3b83cf85141bbcd65d5f7a","streamName":"ocr/000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:10:50.321Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","remotePeerID":"12D3KooWDkPeYoxJuWzSoAPvnW3hRb99V6EKsQjYRDBEci3uHjaw","id":"ragep2p","streamID":"db2a8acc3a76e03443799a8ab7ca3605864e30772b0cd7bf5e739dd805812895","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":2,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"msg":{"Epoch":2,"Round":2,"Query":null,"AttributedSignedObservations":[{"SignedObservation":{"Observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"vgoWNgFxLinfR70e3VIYhQHnarYaOuLbqRF/hFX28ywVCGiSQXV97yx9ijeoqP0+i5HotJk6k4KAg1ZSSxzXDA=="},"Observer":1},{"SignedObservation":{"Observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"eDNavXDOZHxZ50XXsqVEsm3JoOUwebBxKR3j8PFJpk0dGR59LEs+pKUUugYZ6URmgPp9ljwunvlW7NXZWF/dBQ=="},"Observer":2},{"SignedObservation":{"Observation":"CN+4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"LmHRqpqgcM7Np4KDgn3pAwvP4ZRCq8vdyo1u/VjtKU3kBvt8xp579t0AGEz92/vbFVtxP57cD3wS/8XrtBr2DQ=="},"Observer":3}]},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msg":{"Epoch":2,"Round":2,"H":[111,251,20,228,133,249,144,170,240,35,45,171,49,50,135,0,228,191,35,6,150,170,92,140,66,52,252,72,78,220,188,12],"AttestedReport":{"Report":"ZNHcXwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"muBIE+TceSXDr4hj5rst0OkGF+gaEE1hzzh8GrlAXr0ZRLeLaQo0F9jkvykU/IF/cbjNbgS/kaTn+tYLExkyWgE=","Signer":2},{"Signature":"V36q5cej7KOsPpzycjFtcp4c6UcLngHrJwy6AlUv6S4pGKIEYMM0anB6qkh0gf5IHl2NhWVMczGEokHvO1Z7gwA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"msg":{"Epoch":2,"Round":3,"Query":null},"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":2,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"sender":2,"msg":{"Epoch":2,"Round":3,"Query":null,"AttributedSignedObservations":[{"SignedObservation":{"Observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"tobJULuLqtPJtqbEQzEa1p99d7lOsHipsZz8dRLvHpRxtSB1hQjsg0bMEW0OhOyLbJfTcBnr6mnQgKPYfAkhAQ=="},"Observer":1},{"SignedObservation":{"Observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"Ph7iKUFBT7QiKngPCZZRGufCMsZ/Yy08lE4KxTV/Wtxud+Qtv/x0497m2OrmH//Znk8UL/uJEi2s3kBErzTxCw=="},"Observer":2},{"SignedObservation":{"Observation":"COO4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","Signature":"ZRHZHHbVwBNeSbMJ3QxVKZ3RNx3beSn7k8g6K3o4pBHAPFbGMx3VsIzl0PN4gopyncfXSFJmeqBFd7J80sWbCg=="},"Observer":3}]}} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"sender":2,"msg":{"Epoch":2,"Round":3,"H":[169,2,170,233,213,76,209,49,236,100,226,59,174,55,63,35,65,19,163,118,235,237,189,61,91,141,138,64,14,186,246,9],"AttestedReport":{"Report":"ZNHcYwMBAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"1dvg8FXHZp4ASKZ8u2+A/SuWJ6OL1Fzuw3fXAyiSQ2gUN5cHCaRVJMULjUmmcz7Ky2UMpChQCoybvA3fm3GBKAA=","Signer":2},{"Signature":"HmsPWEiCcDiVz9ikP8etvHT0n+N4ttswkDo2bo+L9eV7N1oc2syoqpyzq0mkrUdH1JFIQhTh+q/Q/1unbWf38QE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"sender":2,"msg":{"Epoch":2,"Round":4,"Query":null},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:50.322Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":3,"msgRound":1,"oid":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:50.323Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:50.748Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:50.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.005Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.310Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:51.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.006Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:52.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.015Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.021Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:53.079Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:53.384Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:53.767Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","initialRound":false,"alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","reportingPlugin":"NumericalMedian","deltaC":0,"result":true,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":1},"deviation":true} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":1,"epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":3,"Round":1,"H":[230,26,108,11,158,25,31,239,52,122,15,176,142,89,199,35,56,37,85,176,203,172,49,224,228,20,228,228,254,33,31,189],"AttestedReport":{"Report":"ZNHcaQQBAwQCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Whjg8qDmd1DAMUVcAspCcqByrkzTHPN7cxeqR4A2uO4xXBTOPk/1EPeMbWl1uRH2NJsLopNB/vxf1u+/4h6FdAA=","Signer":1},{"Signature":"GXXQWZa7yvBeacjCTsP2E5eJdBCs0gSfT4HGOc97uXorhOfe8Qx7yTfVNpcZGXOuAvGlG1OwkomTXswBp5jtVwA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"result":true,"reportEpochRound":{"Epoch":3,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:53.768Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001272336} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001329942} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"observation":"CO24x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:53.769Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"msgRound":1} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":4,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"msgEpoch":3,"msgRound":2,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":2,"sender":2,"msgEpoch":3,"msgRound":2,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":2,"observationCount":2} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"sender":1,"msgEpoch":3,"msgRound":2,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:53.770Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":2,"sender":3,"msgEpoch":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:53.771Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:53.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.105Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:54","latency":"121.228µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:54","latency":"122.68µs"} -{"level":"debug","ts":"2023-08-08T06:10:54.970Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.123Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:55.906Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:10:56.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.211Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:56.517Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.131Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.245Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:57.551Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:10:57.772Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportPPB":0,"deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":2},"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","deltaCTimeout":true,"reportingPlugin":"NumericalMedian","deviation":true,"result":true,"unfulfilledRequest":false,"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":3,"Round":2,"H":[204,143,117,70,181,72,135,136,71,88,129,1,137,120,76,247,218,93,243,253,6,206,234,184,130,9,154,19,208,108,190,155],"AttestedReport":{"Report":"ZNHcbQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"QtGo15eglyS+aNnqnFYo0X+x6b7eHHN4kK0yCVjxpaxsraNxSnAJ6wPl8GoMfWS+zlEMeL3qymzaKxf+146rfAA=","Signer":1},{"Signature":"QTSFvKYIREUZJPeQCtWnjPyxZXUXAiIta2jkqkRdG/IYAnn5R5Avk7m2Xva0ibu7VSX0oO2Xgn1CiUs1PsbO4gA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:10:57.773Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deviates":true,"result":true,"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00113097} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001172211} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":3,"observation":"CPG4x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":2,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"sender":1,"epoch":3,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.774Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":3,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":3,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":3,"round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"msgEpoch":3} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"observationCount":2,"requiredObservationCount":3,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":3,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-08T06:10:57.775Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"leader":4,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.776Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":3,"round":3,"sender":3,"msgEpoch":3,"msgRound":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:10:57.776Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:10:58.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:10:58.199Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.266Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.353Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:58.572Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.276Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.304Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.610Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:10:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:59","latency":"88.973µs"} -{"level":"debug","ts":"2023-08-08T06:10:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:10:59","latency":"94.3µs"} -{"level":"debug","ts":"2023-08-08T06:11:00.303Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.373Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.456Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:00.679Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.347Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.435Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.501Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:01.740Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:01.777Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaC":0,"deltaCTimeout":true,"alphaReportPPB":0,"deviation":true,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":3,"Round":3},"lastTransmissionTimestamp":"2023-08-08T06:10:43.000Z","result":true} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","roundMax":3,"oid":4,"epoch":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"leader":4,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":3,"Round":3,"H":[123,159,99,97,185,142,146,51,171,6,227,73,187,222,197,188,151,43,134,241,67,234,98,158,240,189,47,206,3,135,234,139],"AttestedReport":{"Report":"ZNHccQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"PF4RcaxsISvMQ8oFPEtK9bdBlqYk3RdLsZ6a+h72CwNaRiAZWc5N29JGzbvWcFUcJ/2D4rIcyiyez3rpMn8X8QA=","Signer":1},{"Signature":"TWWUoZRzXk63R1LunRS6O0vssHfSPkdPHLpVt+8VKH4pNTOZoGKkjE0K+IO3ZvT0tc8vtvpwacfbQdB3VRuePAA=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":4} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"reportEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:11:01.778Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":3,"round":3,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","newEpoch":4,"candidateEpochs":[4,4,4],"oid":4} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3,"sender":2} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"e":3,"l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3} -{"level":"info","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":4,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:01.779Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":3,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:11:02.402Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.556Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:02.790Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475043}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:11:03.500Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.653Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:03.871Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.549Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.702Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:04","latency":"108.198µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:04","latency":"107.534µs"} -{"level":"debug","ts":"2023-08-08T06:11:04.884Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.583Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.626Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.779Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:05.888Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.586Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.644Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.798Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:06.892Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.658Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.734Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.887Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:07.963Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:08.664Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.809Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:08.970Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.704Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:09","latency":"84.724µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:09","latency":"91.897µs"} -{"level":"debug","ts":"2023-08-08T06:11:09.848Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.001Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.009Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.795Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:10.901Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.054Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.060Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:11:11.101Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.870Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:11.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.176Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:12.957Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:13.048Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.201Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:13.262Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.019Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.126Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.279Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:14","latency":"87.219µs"} -{"level":"debug","ts":"2023-08-08T06:11:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:14","latency":"88.764µs"} -{"level":"debug","ts":"2023-08-08T06:11:15.100Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.151Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:15.405Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.173Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.241Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:16.479Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.327Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.480Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:17.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:18.215Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.362Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.515Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:18.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.230Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.538Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.562Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:19","latency":"89.57µs"} -{"level":"debug","ts":"2023-08-08T06:11:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:19","latency":"110.687µs"} -{"level":"debug","ts":"2023-08-08T06:11:20.295Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.470Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.601Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:20.623Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.348Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.564Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.654Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.717Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:21.779Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","candidateEpochs":[5,5,5],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":5} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","e":4,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":4,"leader":0} -{"level":"info","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:21.780Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001168477} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001139235} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"observation":"CIm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgEpoch":5,"msgRound":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:21.781Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"leader":4,"round":1,"observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"msgEpoch":5,"msgRound":1,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observationCount":2,"requiredObservationCount":3,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":1,"sender":3,"msgEpoch":5,"msgRound":1,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observationCount":3} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"msgRound":1,"round":1,"sender":1,"msgEpoch":5,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:21.782Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:22.414Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.641Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.720Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:22.794Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.025Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:23.465Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.659Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.770Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:23.812Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.480Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.735Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.786Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:24","latency":"73.061µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:24","latency":"105.087µs"} -{"level":"debug","ts":"2023-08-08T06:11:24.888Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.550Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.763Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:25.783Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:10:57.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":1},"initialRound":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.784Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":5,"Round":1,"H":[247,252,205,12,151,124,214,253,184,35,79,134,235,170,88,245,4,191,3,239,13,217,3,230,144,246,110,66,89,90,159,49],"AttestedReport":{"Report":"ZNHciQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"Zd7h4HIjCPAS7oSmYa8WOxLrlQWnjV64Gmwebd6qsf9KAxz69Jffn4a1ElAUiiWWDdx5ZSHGzT4bEKF70B8R2wE=","Signer":1},{"Signature":"t/jh/8aQdRlx73H7cwgdXhxREAJUbuxKYoaQgGC4Wb0RwpYOsU2hAFLQc5ysY6ko67Yu2zMCL5ZmWchtrgCROAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:11:25.785Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001239042} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.00141053} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"observation":"CI25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"msgRound":1,"round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":1,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"epoch":5,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":2,"sender":4,"msgEpoch":5,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:25.786Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observationCount":1,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":2,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"sender":3,"msgEpoch":5} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"observationCount":2,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"msgEpoch":5,"msgRound":2,"round":2,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"round":2,"observationCount":3,"requiredObservationCount":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":2,"sender":1,"msgEpoch":5,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:25.787Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:25.856Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475057}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:25.916Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.213Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:11:26.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.864Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:26.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.580Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.856Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:27.886Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.009Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:11:28.614Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:28.935Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.089Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.675Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:29.788Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":2},"deltaCTimeout":true,"result":true,"initialRound":false,"alphaReportInfinite":false,"deviation":true,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z"} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"round":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":5,"Round":2,"H":[46,76,205,155,229,180,163,27,231,3,109,34,20,149,200,19,112,177,177,80,63,206,18,227,199,232,247,126,131,246,249,61],"AttestedReport":{"Report":"ZNHcjQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"tKAScKvSyoswQ35Ce33W3mbE5x50V3ZQD74UsBDZG+UQ6njAzX7QNr9kuacbxbngy7MnDu8xjsQZ8W9G5wcjVAA=","Signer":1},{"Signature":"6QEdrCEylh8E4Oi8mnH1KCfWcWQ26FRF5qTqB6ISMRtD8NTN1CWT/I+Gd1TlTDebwxamGCPrdxz3XJTiTl4+lAE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:11:29.789Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001172904} -{"level":"debug","ts":"2023-08-08T06:11:29.790Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001217674} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observation":"CJG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"msgRound":2,"oid":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":3,"msgRound":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","sender":1,"epoch":5,"round":2,"oid":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2,"sender":2,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":5,"round":2,"sender":3,"oid":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":4,"msgEpoch":5,"msgRound":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"round":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","observationCount":1} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"round":3,"sender":3,"msgEpoch":5,"msgRound":3,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observationCount":2,"requiredObservationCount":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","msgRound":3,"round":3,"sender":2,"msgEpoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","requiredObservationCount":3,"oid":4,"epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"observationCount":3} -{"level":"debug","ts":"2023-08-08T06:11:29.791Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:29","latency":"96.796µs"} -{"level":"debug","ts":"2023-08-08T06:11:29.792Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"msgEpoch":5,"msgRound":3,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:29","latency":"113.795µs"} -{"level":"debug","ts":"2023-08-08T06:11:29.792Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:29.939Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:29.981Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.092Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.747Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:30.944Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.053Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.097Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:31.837Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.005Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.142Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.158Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:32.844Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:33.060Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:33.213Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:11:33.792Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"deviation":true,"alphaReportPPB":0,"initialRound":false,"lastTransmissionTimestamp":"2023-08-08T06:11:21.000Z","deltaCTimeout":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","deltaC":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:33.793Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"oid":4,"epoch":5,"leader":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"leader":4,"round":4,"messageRound":4,"roundMax":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"leader":4,"round":4,"msgRound":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:270","msg":"messageReport: dropping MessageReport due to wrong round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":4,"msgRound":3,"epoch":5} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":5,"Round":3,"H":[181,102,165,213,250,8,156,210,95,146,73,99,170,123,40,48,59,190,93,189,224,235,206,95,51,27,189,198,238,137,197,48],"AttestedReport":{"Report":"ZNHckQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ikAVWrwssC0ihtQsObqRGSxNLbOPjd3XoBCC1Tvd+xNBl7D/ylQC9Hmm96Kryum0tMjzpXgd0wzdQ1aqkGnaSQA=","Signer":1},{"Signature":"HA2kZm11lpIRnZYKAeDd/zL5Ar0kVAS9yldW5u8D0J5QGkjRTanw3/yAOrmGsgfBkWrEbTGFELm9uErp7WcJvQE=","Signer":4}]}}} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":5,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviates":true,"contractEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.794Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":6,"candidateEpochs":[6,6,6]} -{"level":"info","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":5,"leader":4,"e":5,"l":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":6} -{"level":"debug","ts":"2023-08-08T06:11:33.795Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"epoch":5,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3} -{"level":"debug","ts":"2023-08-08T06:11:33.912Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.159Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.218Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475081}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.312Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:34","latency":"91.773µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:34","latency":"85.236µs"} -{"level":"debug","ts":"2023-08-08T06:11:34.984Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.172Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.290Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:35.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.013Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.191Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.319Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:36.345Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.037Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.193Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.343Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:37.346Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:38.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.210Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.345Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:38.362Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.274Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.360Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.427Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:39","latency":"90.815µs"} -{"level":"debug","ts":"2023-08-08T06:11:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:39","latency":"93.464µs"} -{"level":"debug","ts":"2023-08-08T06:11:40.144Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.343Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.449Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:40.496Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.163Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.367Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:11:41.410Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.468Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:41.563Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.249Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.463Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.554Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:42.616Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:11:43.311Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.498Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.617Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:43.651Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.324Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.630Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:44","latency":"82.557µs"} -{"level":"debug","ts":"2023-08-08T06:11:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:44","latency":"83.242µs"} -{"level":"debug","ts":"2023-08-08T06:11:45.365Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.605Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:45.758Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.434Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.636Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.739Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:46.789Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.462Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.682Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.768Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:47.835Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:11:48.496Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.752Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:48.905Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.578Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:49","latency":"79.639µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:49","latency":"67.927µs"} -{"level":"debug","ts":"2023-08-08T06:11:49.808Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.883Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:49.961Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.674Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:50.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.060Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.694Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:51.987Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:52.754Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:53.032Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.060Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.185Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:53.795Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":7,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","e":6,"l":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":6,"leader":0} -{"level":"info","ts":"2023-08-08T06:11:53.796Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:11:53.806Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.121Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.275Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:54","latency":"110.926µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:54","latency":"109.511µs"} -{"level":"debug","ts":"2023-08-08T06:11:54.869Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.139Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.175Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:55.935Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.225Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.241Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.378Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:56.520Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:11:57.021Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.259Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.327Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:57.412Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:11:58.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.378Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:58.440Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.151Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.379Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.532Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:11:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:59","latency":"83.04µs"} -{"level":"debug","ts":"2023-08-08T06:11:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:11:59","latency":"110.529µs"} -{"level":"debug","ts":"2023-08-08T06:12:00.161Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.436Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:00.589Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.209Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.453Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.515Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:01.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.593Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:02.665Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.031Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:03.321Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.586Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.627Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:03.739Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.355Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.587Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.661Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.741Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:04","latency":"84.87µs"} -{"level":"debug","ts":"2023-08-08T06:12:04.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:04","latency":"98.623µs"} -{"level":"debug","ts":"2023-08-08T06:12:05.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.686Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.737Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:05.839Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.773Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.784Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:06.937Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.471Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.777Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:07.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.010Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.032Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:08.571Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.876Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:08.942Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.095Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.642Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:09","latency":"105.121µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:09","latency":"73.748µs"} -{"level":"debug","ts":"2023-08-08T06:12:09.947Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.028Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.181Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:10.722Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.027Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.071Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.224Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:11.673Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:12:11.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.030Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.120Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.273Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:12.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.033Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:13.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.133Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.286Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:13.796Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","newEpoch":8,"candidateEpochs":[8,8,8],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":7,"leader":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":7,"l":0} -{"level":"info","ts":"2023-08-08T06:12:13.797Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:13.798Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001073884} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00106072} -{"level":"debug","ts":"2023-08-08T06:12:13.799Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"observation":"CL25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:13.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.125Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.202Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.355Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:14.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:14","latency":"89.958µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:14","latency":"84.631µs"} -{"level":"debug","ts":"2023-08-08T06:12:14.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.129Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.206Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.359Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:15.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.169Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.219Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.372Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:16.893Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:17.409Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:17.801Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaC":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":1},"alphaReportPPB":0,"deltaCTimeout":true,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:17.802Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":1,"H":[69,111,132,5,98,61,103,224,204,21,170,54,23,236,154,196,152,24,106,163,63,66,155,30,120,175,232,235,22,26,229,57],"AttestedReport":{"Report":"ZNHcvQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"fAmupqK1wFGFmSllVgQaxWtuIcwmTpC4nWntzb8YXPNuwcJLYp3NRrD5z5gHkRO2+m9lHexCr8rWAGuUgOwcDQE=","Signer":2},{"Signature":"WRo8GAF+SayGeJeuTmuWWTQM/oiho7Fk4CutnXiK9bkWJINT+ptZ890cFkc9tg4T9XtHw8bKOb4W/+IUdu9m+AA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":1}} -{"level":"debug","ts":"2023-08-08T06:12:17.803Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001084209} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00115201} -{"level":"debug","ts":"2023-08-08T06:12:17.804Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":2,"observation":"CMG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:17.992Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.034Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:18.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.311Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.464Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:18.996Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.301Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.487Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:19.789Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":2},"contractEpochRound":{"Epoch":5,"Round":3}} -{"level":"info","ts":"2023-08-08T06:12:19.790Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:12:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:19","latency":"87.361µs"} -{"level":"debug","ts":"2023-08-08T06:12:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:19","latency":"93.407µs"} -{"level":"debug","ts":"2023-08-08T06:12:20.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.344Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.377Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:20.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.376Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.426Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:21.579Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:21.806Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","deltaCTimeout":true,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":2},"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","result":true,"alphaReportPPB":0,"deltaC":0,"initialRound":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":8,"Round":2,"H":[185,45,144,77,132,1,9,159,68,69,148,221,63,4,10,71,177,74,16,193,62,57,84,126,90,124,16,50,122,246,223,244],"AttestedReport":{"Report":"ZNHcwQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"IOrfFDRLw/yZnUvu6g/tjwiThbuAafl/Ff7k7w0QnRQGUZUrmjlFRWAEwBpjPe0Vf04bDFRkKr+Whe158QoldAE=","Signer":2},{"Signature":"Te1X2Lv27mggGiFpr2SGQJ8V7EC7uILtz+Ea/sW3r0pIpiPSJJwxTK93rSPsGextkq/ZSasnUojzJulzQcXMmwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":8,"Round":2},"latestAcceptedEpochRound":{"Epoch":8,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":2,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8} -{"level":"debug","ts":"2023-08-08T06:12:21.807Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001109963} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001136529} -{"level":"debug","ts":"2023-08-08T06:12:21.808Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":8,"leader":2,"round":3,"observation":"CMW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:12:22.110Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.476Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:22.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:23.210Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.516Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.547Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:23.700Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.252Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.558Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.638Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.791Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:24","latency":"112.562µs"} -{"level":"debug","ts":"2023-08-08T06:12:24.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:24","latency":"90.057µs"} -{"level":"debug","ts":"2023-08-08T06:12:25.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.590Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.646Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:25.799Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:25.810Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":8,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","result":true,"alphaReportInfinite":false,"initialRound":false,"deviation":true,"deltaC":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"leader":2,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","messageRound":4,"roundMax":3,"epoch":8,"leader":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":4} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":8,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","event":{"Epoch":8,"Round":3,"H":[220,69,172,238,67,42,189,236,71,155,168,11,34,34,192,87,210,96,90,188,62,215,227,199,180,216,15,29,18,8,15,216],"AttestedReport":{"Report":"ZNHcxQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UayS9sVc8SQPEeVPwBl2of/lx3N5H641S4bqJCrpSno9K8h87hEB63GfkyA4dUwWGAN5TfxlFusnUMyh415grQE=","Signer":2},{"Signature":"rdK0odW/KQXv+BKUyKMbZ0zgJVJ7ftWpKp8Ol9ZXskw1bkMT/jMvnb98Fefqze7NvUCO6dn33Kpgbxt94KKMGQA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":8,"Round":3},"latestAcceptedEpochRound":{"Epoch":8,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","newEpoch":9,"candidateEpochs":[9,9,9],"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":8,"round":3,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","e":8,"l":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"leader":2} -{"level":"info","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"oid":4} -{"level":"debug","ts":"2023-08-08T06:12:25.812Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":8,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:25.813Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001075059} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001086966} -{"level":"debug","ts":"2023-08-08T06:12:25.814Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"observation":"CMm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3} -{"level":"debug","ts":"2023-08-08T06:12:26.380Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.686Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.708Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:26.827Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:12:26.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.419Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.724Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.795Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.949Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:27.985Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":2,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:12:27.985Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:28.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:12:28.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.791Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.842Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:28.995Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.549Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:29","latency":"83.697µs"} -{"level":"debug","ts":"2023-08-08T06:12:29.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:29","latency":"87.155µs"} -{"level":"info","ts":"2023-08-08T06:12:29.816Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":1},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:11:29.000Z","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":9,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":1,"sender":3,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":9,"Round":1,"H":[152,117,79,240,50,162,225,252,240,110,61,110,41,130,24,234,140,52,219,85,56,50,18,227,30,54,73,174,223,60,215,182],"AttestedReport":{"Report":"ZNHcyQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"U58THNhTLeJ/oiRIKOOPn3T3lSiWZ3x77fSgqtqJStxQMICDN8YquD6Psw9myGDGtnvwm6rzS1/fJg94/uJ6YQA=","Signer":2},{"Signature":"shLuG2c9l25i8VW+EAjqEptG3SWjHr0wN9LgBFBYr6sXkBSS1c9J9e4LoaCAnvBG7GMCP4e+D1tQYhf1NN6K3wE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:29.817Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":1,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1},"latestAcceptedEpochRound":{"Epoch":8,"Round":3},"result":true,"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:29.818Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001130057} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001421898} -{"level":"debug","ts":"2023-08-08T06:12:29.819Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","observation":"CM25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:29.855Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475089}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:29.857Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.010Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.597Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.902Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:30.943Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.096Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.687Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.984Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:31.993Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.137Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.728Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:32.999Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.033Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.036Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:33.152Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:33.774Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:33.821Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:25.000Z","reportingPlugin":"NumericalMedian","deltaC":0,"deltaCTimeout":true,"result":true,"initialRound":false,"alphaReportPPB":0,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":2},"alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":9,"Round":2,"H":[65,48,100,245,62,140,58,62,233,120,133,90,81,146,89,15,149,26,5,79,91,51,92,189,159,26,224,94,243,120,114,103],"AttestedReport":{"Report":"ZNHczQQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"5v4ASwDxbaZSr8UWaqvteAyIEyVVbSKuLqxx/Nzhryp+5+PPXkI3cNPw4l347BCko1BGyzVBADo57hBSALKhZgA=","Signer":2},{"Signature":"Lwa+sozdliprrvQNtLSR1nx6CExKsM4O1gIcZTF3tKMl0wcgr+8FtcrLXKIPGXUwpkrN7PaTJSqHKg4LflMtQQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":9,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":1},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:33.822Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001093943} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001133413} -{"level":"debug","ts":"2023-08-08T06:12:33.823Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3,"observation":"CNG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:34.025Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.080Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475145}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:34","latency":"107.516µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.793Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:34","latency":"112.246µs"} -{"level":"debug","ts":"2023-08-08T06:12:34.816Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.056Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.121Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.209Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:35.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.150Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.219Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.304Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:36.968Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.243Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.274Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:37.397Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:37.825Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","deltaC":0,"unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true,"deviation":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":9,"Round":3},"initialRound":false,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"epoch":9,"leader":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":3,"round":4,"messageRound":4,"roundMax":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":9,"Round":3,"H":[151,210,12,12,124,152,71,27,226,101,194,125,143,79,158,230,85,37,229,173,127,195,183,24,230,143,15,30,29,21,173,240],"AttestedReport":{"Report":"ZNHc0QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"9DOpjCDqw3DySCVeszfOC4BZqd6FbyMI1VV5mlEpyJp1tJ+4ItdrSXyfR+5rRpRBhRUrK8t1rQBiKWfWcVL68wE=","Signer":2},{"Signature":"JOTq8033+5CrjB5G/ETmoa7w9WTzDAlKC9f8mRAoDr45eAgS760lrf+Irnk8hXqzGgvFxWO0UQlJxln1A0X8hgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"latestAcceptedEpochRound":{"Epoch":9,"Round":2},"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":9,"Round":2},"reportEpochRound":{"Epoch":9,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":3,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":9,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":10,"candidateEpochs":[10,10,10]} -{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":9,"leader":3,"e":9,"l":3,"oid":4} -{"level":"info","ts":"2023-08-08T06:12:37.827Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":9,"round":3,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:37.828Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001071693} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001079185} -{"level":"debug","ts":"2023-08-08T06:12:37.829Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"observation":"CNW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"leader":2,"oid":4} -{"level":"debug","ts":"2023-08-08T06:12:38.035Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.037Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:12:38.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.341Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:38.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.047Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.307Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.352Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.460Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:39","latency":"90.905µs"} -{"level":"debug","ts":"2023-08-08T06:12:39.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:39","latency":"103.974µs"} -{"level":"debug","ts":"2023-08-08T06:12:40.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.387Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.416Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:40.540Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.198Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.449Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.503Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475149}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:41.601Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:41.832Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","alphaReportInfinite":false,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","deltaC":0,"unfulfilledRequest":false,"initialRound":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-08T06:12:29.000Z","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":1},"result":true} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":10,"leader":2,"round":1,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","event":{"Epoch":10,"Round":1,"H":[239,45,36,25,174,36,129,23,159,99,219,34,235,225,241,0,242,196,7,114,170,168,207,49,128,222,150,47,231,159,115,216],"AttestedReport":{"Report":"ZNHc1QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"deZYrDs5QRakBwNYCvBgehlCSouX33J13Y36MFEey00ZIFTJDIeRZjWAdJHQrrp+80UaK6rcv03FMUWob3g6BwE=","Signer":2},{"Signature":"PAKu7v7a0LsWCzlmMU8R7JqBe0kfW1jH3if/8ba4AMIcVUKoKoVAzXRtjGCzDoW+22m6yrTHeNhGXlbnVCbDYwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":4,"epoch":10,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":9,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":10,"Round":1},"latestAcceptedEpochRound":{"Epoch":9,"Round":3},"result":true} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:41.833Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"sender":3,"epoch":10,"round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001088465} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.00107357} -{"level":"debug","ts":"2023-08-08T06:12:41.834Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":10,"leader":2,"round":2,"observation":"CNm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:41.980Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:12:42.240Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.542Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.545Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475153}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:42.695Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6"} -{"level":"debug","ts":"2023-08-08T06:12:43.251Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.557Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.566Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:43.719Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.335Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.632Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.785Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:44","latency":"85.428µs"} -{"level":"debug","ts":"2023-08-08T06:12:44.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:44","latency":"79.649µs"} -{"level":"debug","ts":"2023-08-08T06:12:45.410Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.679Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.716Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475157}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:45.832Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:45.837Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-08T06:12:37.000Z","result":true,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":2},"unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","initialRound":false,"alphaReportInfinite":false,"deltaCTimeout":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"leader":2,"oid":4,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":10,"Round":2,"H":[234,112,235,226,5,228,188,27,151,204,0,91,70,48,236,125,159,197,15,2,238,99,135,223,16,175,142,248,93,40,123,80],"AttestedReport":{"Report":"ZNHc2QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"aEwvwSzYGloMCfkzX/e2e41peAEH5/B/epSIHoqVVxJMWdJK189y0iFTEbt3/L6DwUST0qK5fFVW5k0qO/fX6QE=","Signer":2},{"Signature":"1nE1knOOwxjWu4shG3Tt0qYd7tAmYPREtTDmxwqrPPYjox4flUWf3bmMuuvpPGdzGNnyr2E7oi6an8+eLO+/BwA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":10,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":1},"alphaAcceptPPB":0,"result":true,"reportEpochRound":{"Epoch":10,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:45.838Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"sender":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001079093} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.00115825} -{"level":"debug","ts":"2023-08-08T06:12:45.839Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"leader":2,"observation":"CN25x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} -{"level":"debug","ts":"2023-08-08T06:12:46.508Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.725Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.814Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:46.878Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.542Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.762Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:47.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.039Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:48.575Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:48.880Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.002Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.640Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:49","latency":"117.18µs"} -{"level":"debug","ts":"2023-08-08T06:12:49.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:49","latency":"117.195µs"} -{"level":"info","ts":"2023-08-08T06:12:49.841Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":10,"Round":3},"deltaCTimeout":true,"deviation":true,"alphaReportPPB":0,"result":true,"deltaC":0,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:49.842Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":10,"leader":2,"round":4,"messageRound":4,"roundMax":3,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":10,"Round":3,"H":[143,252,168,121,251,13,206,101,139,177,48,165,95,251,22,205,182,185,27,203,179,94,209,181,116,214,97,96,49,251,179,236],"AttestedReport":{"Report":"ZNHc3QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"/7tbUOw68NW7Us7z9N0VoqdudF+yO/WONpvkkzy/AfBr5Ohy1MKZmpZkqhm41YOGnMK+Q+HDJwaazN8cVs1DRgA=","Signer":2},{"Signature":"KJq/KLcvKraKj9Evbtecbhxns5Oq/9qN0J4oMNvp/cokUfwd/a/f5aQ/r8rNsBP5LCZUKVB4bBp6VgtYZhCNkAA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":4,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":11,"candidateEpochs":[11,11,11]} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":10,"Round":3},"latestAcceptedEpochRound":{"Epoch":10,"Round":2},"deviates":true,"contractEpochRound":{"Epoch":10,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"e":10,"l":2} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":3,"epoch":10} -{"level":"info","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:49.843Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":1,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":10,"round":3} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:49.844Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001091753} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001175688} -{"level":"debug","ts":"2023-08-08T06:12:49.845Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"observation":"COG5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2} -{"level":"debug","ts":"2023-08-08T06:12:49.912Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:49.946Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.065Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.707Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:50.914Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.012Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.067Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.715Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:51.946Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.021Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.099Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.802Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:52.963Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:12:53.108Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:53.116Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:53.847Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","alphaReportInfinite":false,"deviation":true,"deltaC":0,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":1},"deltaCTimeout":true,"result":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","alphaReportPPB":0,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","initialRound":false} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.848Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":1} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"event":{"Epoch":11,"Round":1,"H":[176,84,247,42,19,59,0,142,80,196,252,203,9,160,206,108,174,44,32,238,207,146,115,12,242,213,177,197,68,54,14,11],"AttestedReport":{"Report":"ZNHc4QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"WSiCqR40ptIxFBgmMuldDIS1wbzkjI34Ae/0AKCdJg9DXJepxn0Atc/1Ubli+hwY2RRK5WWa3DTfilwn0Ca0GAE=","Signer":2},{"Signature":"exsJRhH7brFP606JuV2vsUumjubmPE+ro+blbu4uv8wG3Bv7IF0+gMkO/qELhL9hxJ7QWx1a3GTd8zD8/SLqogA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","result":true,"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":1},"latestAcceptedEpochRound":{"Epoch":10,"Round":3}} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":1,"sender":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:53.849Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001218492} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001283325} -{"level":"debug","ts":"2023-08-08T06:12:53.850Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":2,"observation":"COW5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-08T06:12:53.868Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.018Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.171Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.174Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:54","latency":"114.991µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:54","latency":"137.609µs"} -{"level":"debug","ts":"2023-08-08T06:12:54.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.104Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.257Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:55.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.250Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.263Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:56.964Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.133Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:12:57.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.270Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:57.310Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:12:57.852Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","deltaC":0,"deviation":true,"initialRound":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":2},"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","result":true} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":2,"leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"sender":2,"epoch":11,"round":2} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","event":{"Epoch":11,"Round":2,"H":[136,213,19,145,164,144,187,137,16,41,183,200,53,59,52,153,87,188,16,198,95,245,116,225,81,138,220,179,142,54,79,178],"AttestedReport":{"Report":"ZNHc5QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"0unQdh1kewp1GtiKTnKkraWEpy+mprUeTGj79050/ORqpYNlxIYQDgO+77qeJL7NKti+azW+oRBr5ro4Wmgb2wA=","Signer":2},{"Signature":"LIzkwiggT2phpEdIhL/d68bwfMdj7aLqnX2jxq+tPDQc9SfmMRGi3bcMCKvxqKsMsLfpND85ZU9uvIhWLRWGQgE=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":2,"sender":4} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","latestAcceptedEpochRound":{"Epoch":11,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","contractEpochRound":{"Epoch":10,"Round":2},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":11,"Round":2}} -{"level":"debug","ts":"2023-08-08T06:12:57.853Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc"} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-08T06:12:57.854Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":0,"jobName":"","specID":1,"runTime":0.001218972} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","specID":1,"runTime":0.001398776} -{"level":"debug","ts":"2023-08-08T06:12:57.855Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"round":3,"observation":"COm5x6YGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:12:58.020Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.041Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:12:58.214Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.325Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:58.367Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.084Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.216Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.369Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:12:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:59","latency":"89.055µs"} -{"level":"debug","ts":"2023-08-08T06:12:59.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:12:59","latency":"94.791µs"} -{"level":"debug","ts":"2023-08-08T06:13:00.094Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.253Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.401Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:00.406Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.150Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.305Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.456Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:01.458Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:13:01.857Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","initialRound":false,"alphaReportPPB":0,"alphaReportInfinite":false,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-08T06:12:41.000Z","deviation":true,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","Epoch":11,"Round":3},"deltaC":0,"deltaCTimeout":true,"result":true} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"leader":2,"messageRound":4,"roundMax":3,"round":4} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","event":{"Epoch":11,"Round":3,"H":[190,218,159,1,130,242,218,241,52,115,19,95,107,159,39,189,123,82,241,139,41,90,60,137,160,101,6,242,195,117,234,204],"AttestedReport":{"Report":"ZNHc6QQBAgMEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"yOJQTlre1QOTyUivk/ErNhdl0YTyYbhbBHbKMaJz3sEMz87gqSSztfSlmb6QYM9De/S2gZRCs99MDS/E/hKo8QE=","Signer":2},{"Signature":"R3PzosykD0A9uMYYSPR5o/3Wc1DCPN1yAU+OkmnZ/GwJ0eJXLF/mVu3cPbn3nT91Mebgh2YmIUT3IR/GeB8McgA=","Signer":3}]}},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","round":3,"sender":2,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"round":3,"sender":4,"epoch":11} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":11,"Round":2},"alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":10,"Round":2},"reportEpochRound":{"Epoch":11,"Round":3},"alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"epoch":11,"round":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","epoch":11,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4,"newEpoch":12,"candidateEpochs":[12,12,12]} -{"level":"info","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"leader":2,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","e":11,"l":2} -{"level":"info","ts":"2023-08-08T06:13:01.858Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","leader":0,"epoch":12,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:13:01.859Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","sender":1,"epoch":11,"oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","round":3} -{"level":"debug","ts":"2023-08-08T06:13:02.011Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5) + transmissions (AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u)","version":"2.4.0@d0c54ea"} -{"level":"info","ts":"2023-08-08T06:13:02.011Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","epoch":11,"round":3,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:13:02.152Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.164Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"} -{"level":"debug","ts":"2023-08-08T06:13:02.164Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9"} -{"level":"debug","ts":"2023-08-08T06:13:02.325Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.469Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475161}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.478Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:02.530Z","logger":"Solana","caller":"txm/txm.go:396","msg":"tx state: processed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"} -{"level":"debug","ts":"2023-08-08T06:13:03.042Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-08T06:13:03.211Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9","signature":"2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"} -{"level":"debug","ts":"2023-08-08T06:13:03.211Z","logger":"Solana","caller":"txm/txm.go:272","msg":"ctx error on send retry transaction","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","error":"rpc call sendTransaction() on https://api.devnet.solana.com: Post \"https://api.devnet.solana.com\": context canceled","signatures":["2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"],"id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9"} -{"level":"debug","ts":"2023-08-08T06:13:03.211Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@d0c54ea","chainID":"devnet","chainSet":"solana","id":"fa22ff3d-1701-48c4-9cac-dc60ac78fed9","signatures":["2ySAitc2dT4MsJjSgNmA4PvHBeMreNU51poY3L9aG8dkNhUSrNXvJ8vK4TdiQdTAWns12mmFp4ywtjmjEXGJRusv"]} -{"level":"debug","ts":"2023-08-08T06:13:03.230Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.361Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.514Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:03.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.232Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.432Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.537Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.585Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:04","latency":"93.113µs"} -{"level":"debug","ts":"2023-08-08T06:13:04.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:04","latency":"68.92µs"} -{"level":"debug","ts":"2023-08-08T06:13:05.289Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.508Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.595Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:05.661Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.567Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.598Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:06.720Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.364Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.615Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.670Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:07.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.043Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:13:08.369Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.674Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:08.792Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.389Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.681Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.695Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:09","latency":"160.817µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:09","latency":"172.521µs"} -{"level":"debug","ts":"2023-08-08T06:13:09.840Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.431Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.688Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.737Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:10.841Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.727Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.766Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:11.807Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":8,"Round":2},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"info","ts":"2023-08-08T06:13:11.807Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:13:11.880Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.287Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA"} -{"level":"debug","ts":"2023-08-08T06:13:12.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.769Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.857Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:12.922Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.043Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-08T06:13:13.572Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.794Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","reportEpochRound":{"Epoch":5,"Round":3},"contractEpochRound":{"Epoch":11,"Round":3},"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-08T06:13:13.794Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","oid":4} -{"level":"debug","ts":"2023-08-08T06:13:13.863Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:13.877Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.016Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.639Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:14","latency":"101.817µs"} -{"level":"debug","ts":"2023-08-08T06:13:14.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:14","latency":"101.902µs"} -{"level":"debug","ts":"2023-08-08T06:13:14.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:14.951Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.104Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.644Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:15.967Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.119Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.645Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.950Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:16.998Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:17.151Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:17.649Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:17.955Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:18.044Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@d0c54ea","id":"ragep2p","peerID":"12D3KooWNW8rbyqYyvR14TviF8pRiesQuPDk9ZQ5vx6HHzxiQxP6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-08T06:13:18.053Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:18.206Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:18.746Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:19.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:19.132Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:19.285Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:19.765Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:19","latency":"98.579µs"} -{"level":"debug","ts":"2023-08-08T06:13:19.792Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@d0c54ea","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.126.100","errors":"","servedAt":"2023-08-08 06:13:19","latency":"101.532µs"} -{"level":"debug","ts":"2023-08-08T06:13:19.818Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":11,"Round":3},"reportEpochRound":{"Epoch":9,"Round":1}} -{"level":"info","ts":"2023-08-08T06:13:19.818Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@d0c54ea","jobID":1,"jobName":"sol-OCRv2-4-afca93a0-84a9-40ee-ac08-6e62b62258bc","contractID":"EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","transmitterID":"7AY1PcZWrzE4HhHqoVoWRPH1J6Q3umhKhTXe389Xa9hA","oid":4,"configDigest":"000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb"} -{"level":"debug","ts":"2023-08-08T06:13:20.071Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: AbasZsp4w2q3i7HnUVatsKpN4Q87juGGE9JyhMQwCc4u, result: {5 1691475177}","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:20.230Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5","version":"2.4.0@d0c54ea"} -{"level":"debug","ts":"2023-08-08T06:13:20.383Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: EuybhLRWUkhnDxvwfVbsNtq5cDSakXubSHkbMZdcFYz5, result (config digest): 000357d12dc8239875927c15d8f2b2219dfa16767aacbe728ea53bd708cfb9eb","version":"2.4.0@d0c54ea"} diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log deleted file mode 100644 index 8676cefe2..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/qa-mock-adapter_0/qa-mock-adapter.log +++ /dev/null @@ -1,288 +0,0 @@ -6:04AM INF Starting external adapter Port=:6060 -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:04AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:05AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:06AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:07AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:08AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:09AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Index Endpoint=/ -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Index Endpoint=/ -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Index Endpoint=/ -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Index Endpoint=/ -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Index Endpoint=/ -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Index Endpoint=/ -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:10AM INF Five Endpoint=/five Result=5 -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Index Endpoint=/ -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Index Endpoint=/ -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Five Endpoint=/five Result=5 -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:11AM INF Index Endpoint=/ -6:12AM INF Index Endpoint=/ -6:12AM INF Index Endpoint=/ -6:12AM INF Index Endpoint=/ -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Index Endpoint=/ -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:12AM INF Five Endpoint=/five Result=5 -6:13AM INF Index Endpoint=/ -6:13AM INF Index Endpoint=/ -6:13AM INF Index Endpoint=/ -6:13AM INF Index Endpoint=/ -6:13AM INF Index Endpoint=/ diff --git a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log b/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log deleted file mode 100644 index f35a3c74c..000000000 --- a/integration-tests/smoke/logs/TestSolanaGauntletOCRV2Smoke-solana-gauntlet-38c1f-1691475185/sol_0/sol-val.log +++ /dev/null @@ -1,2239 +0,0 @@ -Ledger location: test-ledger -Log: test-ledger/validator.log -Initializing... -Waiting for fees to stabilize 1... -Waiting for fees to stabilize 2... -Connecting... -Identity: CCMYbQzvbF82yYPbkFLsXpmqNWrupsJ19XSYfC5R6GGW -Genesis Hash: GgzVkuVH25sarknrv17QECNMuUp9QZb7ffMmao6pbncZ -Version: 1.13.3 -Shred Version: 59689 -Gossip Address: 127.0.0.1:1024 -TPU Address: 127.0.0.1:1027 -JSON RPC URL: http://127.0.0.1:8899 -00:00:01 | Processed Slot: 1 | Confirmed Slot: 1 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 0 | ◎500.000000000 -00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 -00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 -00:00:02 | Processed Slot: 3 | Confirmed Slot: 3 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 2 | ◎499.999990000 -00:00:02 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 -00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 -00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 -00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 -00:00:03 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 -00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 -00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 -00:00:04 | Processed Slot: 8 | Confirmed Slot: 8 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 7 | ◎499.999965000 -00:00:04 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 -00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 -00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 -00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 -00:00:05 | Processed Slot: 11 | Confirmed Slot: 11 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999950000 -00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 -00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 -00:00:06 | Processed Slot: 13 | Confirmed Slot: 13 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 12 | ◎499.999940000 -00:00:06 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 -00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 -00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 -00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 -00:00:07 | Processed Slot: 16 | Confirmed Slot: 16 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 15 | ◎499.999925000 -00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 -00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 -00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 -00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 -00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 -00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 -00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 -00:00:09 | Processed Slot: 21 | Confirmed Slot: 21 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 20 | ◎499.999900000 -00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 -00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 -00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 -00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 -00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 -00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 -00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 -00:00:11 | Processed Slot: 26 | Confirmed Slot: 26 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 25 | ◎499.999875000 -00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 -00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 -00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 -00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 -00:00:13 | Processed Slot: 29 | Confirmed Slot: 29 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 28 | ◎499.999860000 -00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 -00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 -00:00:13 | Processed Slot: 31 | Confirmed Slot: 31 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 30 | ◎499.999850000 -00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 -00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 -00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 -00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 -00:00:15 | Processed Slot: 34 | Confirmed Slot: 34 | Finalized Slot: 2 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 33 | ◎499.999835000 -00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 -00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 -00:00:15 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 -00:00:16 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 -00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 -00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 -00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 -00:00:17 | Processed Slot: 39 | Confirmed Slot: 39 | Finalized Slot: 7 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 38 | ◎499.999810000 -00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 -00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 -00:00:17 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 -00:00:18 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 -00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 -00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 -00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 -00:00:19 | Processed Slot: 44 | Confirmed Slot: 44 | Finalized Slot: 12 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 43 | ◎499.999785000 -00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 -00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 -00:00:19 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 -00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 -00:00:20 | Processed Slot: 47 | Confirmed Slot: 47 | Finalized Slot: 15 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 46 | ◎499.999770000 -00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 -00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 -00:00:21 | Processed Slot: 49 | Confirmed Slot: 49 | Finalized Slot: 17 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 48 | ◎499.999760000 -00:00:21 | Processed Slot: 50 | Confirmed Slot: 49 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999760000 -00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 -00:00:21 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 -00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 -00:00:22 | Processed Slot: 52 | Confirmed Slot: 52 | Finalized Slot: 20 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 51 | ◎499.999745000 -00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 -00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 -00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 -00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 -00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 -00:00:23 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 -00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 -00:00:24 | Processed Slot: 57 | Confirmed Slot: 57 | Finalized Slot: 25 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 56 | ◎499.999720000 -00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 -00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 -00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 -00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 -00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 -00:00:25 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 -00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 -00:00:26 | Processed Slot: 62 | Confirmed Slot: 62 | Finalized Slot: 30 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 61 | ◎499.999695000 -00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 -00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 -00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 -00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 -00:00:27 | Processed Slot: 65 | Confirmed Slot: 65 | Finalized Slot: 33 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 64 | ◎499.999680000 -00:00:27 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 -00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 -00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 -00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 -00:00:28 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 -00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 -00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 -00:00:29 | Processed Slot: 70 | Confirmed Slot: 70 | Finalized Slot: 38 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 69 | ◎499.999655000 -00:00:29 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 -00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 -00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 -00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 -00:00:31 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 -00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 -00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 -00:00:31 | Processed Slot: 75 | Confirmed Slot: 75 | Finalized Slot: 43 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 74 | ◎499.999630000 -00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 -00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 -00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 -00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 -00:00:33 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 -00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 -00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 -00:00:33 | Processed Slot: 80 | Confirmed Slot: 80 | Finalized Slot: 48 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 79 | ◎499.999605000 -00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 -00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 -00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 -00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 -00:00:35 | Processed Slot: 83 | Confirmed Slot: 83 | Finalized Slot: 51 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 82 | ◎499.999590000 -00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 -00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 -00:00:35 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 -00:00:36 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 -00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 -00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 -00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 -00:00:37 | Processed Slot: 88 | Confirmed Slot: 88 | Finalized Slot: 56 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 87 | ◎499.999565000 -00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 -00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 -00:00:37 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 -00:00:38 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 -00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 -00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 -00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 -00:00:39 | Processed Slot: 93 | Confirmed Slot: 93 | Finalized Slot: 61 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 92 | ◎499.999540000 -00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 -00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 -00:00:39 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 -00:00:40 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 -00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 -00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 -00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 -00:00:41 | Processed Slot: 98 | Confirmed Slot: 98 | Finalized Slot: 66 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 97 | ◎499.999515000 -00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 -00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 -00:00:41 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 -00:00:42 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 -00:00:42 | Processed Slot: 101 | Confirmed Slot: 101 | Finalized Slot: 69 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 100 | ◎499.999500000 -00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 -00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 -00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 -00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 -00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 -00:00:43 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 -00:00:44 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 -00:00:44 | Processed Slot: 106 | Confirmed Slot: 106 | Finalized Slot: 74 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 105 | ◎499.999475000 -00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 -00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 -00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 -00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 -00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 -00:00:45 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 -00:00:46 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 -00:00:46 | Processed Slot: 111 | Confirmed Slot: 111 | Finalized Slot: 79 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 110 | ◎499.999450000 -00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 -00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 -00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 -00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 -00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 -00:00:47 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 -00:00:48 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 -00:00:48 | Processed Slot: 116 | Confirmed Slot: 116 | Finalized Slot: 84 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 115 | ◎499.999425000 -00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 -00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 -00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 -00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 -00:00:49 | Processed Slot: 119 | Confirmed Slot: 119 | Finalized Slot: 87 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 118 | ◎499.999410000 -00:00:49 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 -00:00:50 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 -00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 -00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 -00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 -00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 -00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 -00:00:51 | Processed Slot: 124 | Confirmed Slot: 124 | Finalized Slot: 92 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 123 | ◎499.999385000 -00:00:51 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 -00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 -00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 -00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 -00:00:52 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 -00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 -00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 -00:00:53 | Processed Slot: 129 | Confirmed Slot: 129 | Finalized Slot: 97 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 128 | ◎499.999360000 -00:00:53 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 -00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 -00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 -00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 -00:00:54 | Processed Slot: 132 | Confirmed Slot: 132 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999345000 -00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 -00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 -00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 133 | ◎499.999335000 -00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999335000 -00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 -00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 -00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 -00:00:56 | Processed Slot: 137 | Confirmed Slot: 137 | Finalized Slot: 105 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 136 | ◎499.999320000 -00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999320000 -00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999320000 -00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999320000 -00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999320000 -00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999315000 -00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999310000 -00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999310000 -00:00:58 | Processed Slot: 142 | Confirmed Slot: 142 | Finalized Slot: 110 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999305000 -00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 -00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999300000 -00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999295000 -00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999295000 -00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999290000 -00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 -00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999285000 -00:01:00 | Processed Slot: 147 | Confirmed Slot: 147 | Finalized Slot: 115 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999280000 -00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 -00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 151 | ◎499.999275000 -00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999270000 -00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999270000 -00:01:02 | Processed Slot: 150 | Confirmed Slot: 150 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 153 | ◎499.999265000 -00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 -00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 154 | ◎499.999260000 -00:01:02 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999255000 -00:01:03 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999255000 -00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 156 | ◎499.999250000 -00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 -00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 -00:01:04 | Processed Slot: 155 | Confirmed Slot: 155 | Finalized Slot: 123 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 158 | ◎499.999240000 -00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 -00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 -00:01:04 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 -00:01:05 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 -00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 -00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 -00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 -00:01:06 | Processed Slot: 160 | Confirmed Slot: 160 | Finalized Slot: 128 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 163 | ◎499.999215000 -00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 -00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 -00:01:06 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 -00:01:07 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 -00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 -00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 -00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 -00:01:08 | Processed Slot: 165 | Confirmed Slot: 165 | Finalized Slot: 133 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 168 | ◎499.999190000 -00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 -00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 -00:01:08 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 -00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 -00:01:09 | Processed Slot: 168 | Confirmed Slot: 168 | Finalized Slot: 136 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 171 | ◎499.999175000 -00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 -00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 -00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 -00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 -00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 -00:01:10 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 -00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 -00:01:11 | Processed Slot: 173 | Confirmed Slot: 173 | Finalized Slot: 141 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 176 | ◎499.999150000 -00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 -00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 -00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 -00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 -00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 -00:01:12 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 -00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 -00:01:13 | Processed Slot: 178 | Confirmed Slot: 178 | Finalized Slot: 146 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 181 | ◎499.999125000 -00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 -00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 -00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 -00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 -00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 -00:01:14 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 -00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 -00:01:15 | Processed Slot: 183 | Confirmed Slot: 183 | Finalized Slot: 151 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 186 | ◎499.999100000 -00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 -00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 -00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 -00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 -00:01:16 | Processed Slot: 186 | Confirmed Slot: 186 | Finalized Slot: 154 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 189 | ◎499.999085000 -00:01:16 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 -00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 -00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 -00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 -00:01:17 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 -00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 -00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 -00:01:18 | Processed Slot: 191 | Confirmed Slot: 191 | Finalized Slot: 159 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 194 | ◎499.999060000 -00:01:18 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 -00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 -00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 -00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 -00:01:19 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 -00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 -00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 -00:01:20 | Processed Slot: 196 | Confirmed Slot: 196 | Finalized Slot: 164 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 199 | ◎499.999035000 -00:01:20 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 -00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 -00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 -00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 -00:01:21 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 -00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 -00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 -00:01:22 | Processed Slot: 201 | Confirmed Slot: 201 | Finalized Slot: 169 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 204 | ◎499.999010000 -00:01:22 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 -00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 -00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 -00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 -00:01:23 | Processed Slot: 204 | Confirmed Slot: 204 | Finalized Slot: 172 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 207 | ◎499.998995000 -00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 -00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 -00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 -00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 -00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 -00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 -00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 -00:01:25 | Processed Slot: 209 | Confirmed Slot: 209 | Finalized Slot: 177 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 212 | ◎499.998970000 -00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 -00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 -00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 -00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 -00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 -00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 -00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 -00:01:27 | Processed Slot: 214 | Confirmed Slot: 214 | Finalized Slot: 182 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 217 | ◎499.998945000 -00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 -00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 -00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 -00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 -00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 -00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 -00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 -00:01:29 | Processed Slot: 219 | Confirmed Slot: 219 | Finalized Slot: 187 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 222 | ◎499.998920000 -00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 -00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 -00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 -00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 -00:01:31 | Processed Slot: 222 | Confirmed Slot: 222 | Finalized Slot: 190 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 225 | ◎499.998905000 -00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 -00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 -00:01:31 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 -00:01:32 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 -00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 -00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 -00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 -00:01:33 | Processed Slot: 227 | Confirmed Slot: 227 | Finalized Slot: 195 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 230 | ◎499.998880000 -00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 -00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 -00:01:33 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 -00:01:34 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 -00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 -00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 -00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 -00:01:35 | Processed Slot: 232 | Confirmed Slot: 232 | Finalized Slot: 200 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 235 | ◎499.998855000 -00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 -00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 -00:01:35 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 -00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 -00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 -00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 -00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 -00:01:37 | Processed Slot: 237 | Confirmed Slot: 237 | Finalized Slot: 205 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 240 | ◎499.998830000 -00:01:37 | Processed Slot: 238 | Confirmed Slot: 237 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998830000 -00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 241 | ◎499.998825000 -00:01:37 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 -00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 242 | ◎499.998820000 -00:01:38 | Processed Slot: 240 | Confirmed Slot: 240 | Finalized Slot: 208 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 243 | ◎499.998815000 -00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 -00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998810000 -00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998805000 -00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998805000 -00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998800000 -00:01:39 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 -00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998795000 -00:01:40 | Processed Slot: 245 | Confirmed Slot: 245 | Finalized Slot: 213 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 248 | ◎499.998790000 -00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 -00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998785000 -00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998780000 -00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998780000 -00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998775000 -00:01:41 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 -00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998770000 -00:01:42 | Processed Slot: 250 | Confirmed Slot: 250 | Finalized Slot: 218 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 253 | ◎499.998765000 -00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 -00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998760000 -00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998755000 -00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998755000 -00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998750000 -00:01:43 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 -00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998745000 -00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998740000 -00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998740000 -00:01:44 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998735000 -00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 -00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998730000 -00:01:45 | Processed Slot: 258 | Confirmed Slot: 258 | Finalized Slot: 226 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 261 | ◎499.998725000 -00:01:45 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 -00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998720000 -00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998715000 -00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998715000 -00:01:46 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998710000 -00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 -00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998705000 -00:01:47 | Processed Slot: 263 | Confirmed Slot: 263 | Finalized Slot: 231 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 266 | ◎499.998700000 -00:01:47 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 -00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998695000 -00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998690000 -00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998690000 -00:01:49 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998685000 -00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 -00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998680000 -00:01:49 | Processed Slot: 268 | Confirmed Slot: 268 | Finalized Slot: 236 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 271 | ◎499.998675000 -00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 -00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998670000 -00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998665000 -00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998665000 -00:01:51 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998660000 -00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 -00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998655000 -00:01:51 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 276 | ◎499.998650000 -00:01:52 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 276 | ◎499.998650000 -00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 277 | ◎499.998645000 -00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 -00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 278 | ◎499.998640000 -00:01:53 | Processed Slot: 276 | Confirmed Slot: 276 | Finalized Slot: 244 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 279 | ◎499.998635000 -00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 -00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 280 | ◎499.998630000 -00:01:53 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 281 | ◎499.998625000 -00:01:54 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 281 | ◎499.998625000 -00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 282 | ◎499.998620000 -00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 -00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 283 | ◎499.998615000 -00:01:55 | Processed Slot: 281 | Confirmed Slot: 281 | Finalized Slot: 249 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 284 | ◎499.998610000 -00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 -00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 285 | ◎499.998605000 -00:01:55 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 286 | ◎499.998600000 -00:01:56 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 286 | ◎499.998600000 -00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 287 | ◎499.998595000 -00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 -00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 288 | ◎499.998590000 -00:01:57 | Processed Slot: 286 | Confirmed Slot: 286 | Finalized Slot: 254 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 289 | ◎499.998585000 -00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 -00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 290 | ◎499.998580000 -00:01:57 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 291 | ◎499.998575000 -00:01:58 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 291 | ◎499.998575000 -00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 292 | ◎499.998570000 -00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 -00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 293 | ◎499.998565000 -00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 294 | ◎499.998560000 -00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 294 | ◎499.998560000 -00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 295 | ◎499.998555000 -00:01:59 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 -00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 296 | ◎499.998550000 -00:02:00 | Processed Slot: 294 | Confirmed Slot: 294 | Finalized Slot: 262 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 297 | ◎499.998545000 -00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 -00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 298 | ◎499.998540000 -00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 299 | ◎499.998535000 -00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 299 | ◎499.998535000 -00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 300 | ◎499.998530000 -00:02:01 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 -00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 301 | ◎499.998525000 -00:02:02 | Processed Slot: 299 | Confirmed Slot: 299 | Finalized Slot: 267 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 302 | ◎499.998520000 -00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 -00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 303 | ◎499.998515000 -00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 304 | ◎499.998510000 -00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 304 | ◎499.998510000 -00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 305 | ◎499.998505000 -00:02:03 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 -00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 306 | ◎499.998500000 -00:02:04 | Processed Slot: 304 | Confirmed Slot: 304 | Finalized Slot: 272 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 307 | ◎499.998495000 -00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 -00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 308 | ◎499.998490000 -00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998485000 -00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998485000 -00:02:05 | Processed Slot: 307 | Confirmed Slot: 307 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 310 | ◎499.998480000 -00:02:05 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 -00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 311 | ◎499.998475000 -00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 312 | ◎499.998470000 -00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 312 | ◎499.998470000 -00:02:06 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 313 | ◎499.998465000 -00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 -00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 314 | ◎499.998460000 -00:02:07 | Processed Slot: 312 | Confirmed Slot: 312 | Finalized Slot: 280 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 315 | ◎499.998455000 -00:02:07 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 -00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 316 | ◎499.998450000 -00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 317 | ◎499.998445000 -00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 317 | ◎499.998445000 -00:02:08 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 318 | ◎499.998440000 -00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 -00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 319 | ◎499.998435000 -00:02:09 | Processed Slot: 317 | Confirmed Slot: 317 | Finalized Slot: 285 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 320 | ◎499.998430000 -00:02:09 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 -00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 321 | ◎499.998425000 -00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 322 | ◎499.998420000 -00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 322 | ◎499.998420000 -00:02:10 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 323 | ◎499.998415000 -00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 -00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 324 | ◎499.998410000 -00:02:11 | Processed Slot: 322 | Confirmed Slot: 322 | Finalized Slot: 290 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 325 | ◎499.998405000 -00:02:11 | Processed Slot: 323 | Confirmed Slot: 322 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998405000 -00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 326 | ◎499.998400000 -00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 327 | ◎499.998395000 -00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 327 | ◎499.998395000 -00:02:12 | Processed Slot: 325 | Confirmed Slot: 325 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 328 | ◎499.998390000 -00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 -00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 329 | ◎499.998385000 -00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 330 | ◎499.998380000 -00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 330 | ◎499.998380000 -00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 331 | ◎499.998375000 -00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 -00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 332 | ◎499.998370000 -00:02:14 | Processed Slot: 330 | Confirmed Slot: 330 | Finalized Slot: 298 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 333 | ◎499.998365000 -00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 -00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 334 | ◎499.998360000 -00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 335 | ◎499.998355000 -00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 335 | ◎499.998355000 -00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 336 | ◎499.998350000 -00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 -00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 337 | ◎499.998345000 -00:02:16 | Processed Slot: 335 | Confirmed Slot: 335 | Finalized Slot: 303 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 338 | ◎499.998340000 -00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 -00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 339 | ◎499.998335000 -00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 340 | ◎499.998330000 -00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 340 | ◎499.998330000 -00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 341 | ◎499.998325000 -00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 -00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 342 | ◎499.998320000 -00:02:18 | Processed Slot: 340 | Confirmed Slot: 340 | Finalized Slot: 308 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 343 | ◎499.998315000 -00:02:19 | Processed Slot: 341 | Confirmed Slot: 340 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998315000 -00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.998310000 -00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 345 | ◎499.998305000 -00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 345 | ◎499.998305000 -00:02:20 | Processed Slot: 343 | Confirmed Slot: 343 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 346 | ◎499.998300000 -00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 -00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 347 | ◎499.998295000 -00:02:20 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 348 | ◎499.998290000 -00:02:21 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 348 | ◎499.998290000 -00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 349 | ◎499.998285000 -00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 -00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 350 | ◎499.998280000 -00:02:22 | Processed Slot: 348 | Confirmed Slot: 348 | Finalized Slot: 316 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 351 | ◎499.998275000 -00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 -00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 352 | ◎499.998270000 -00:02:22 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 353 | ◎499.998265000 -00:02:23 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 353 | ◎499.998265000 -00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 354 | ◎499.998260000 -00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 -00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 355 | ◎499.998255000 -00:02:24 | Processed Slot: 353 | Confirmed Slot: 353 | Finalized Slot: 321 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 356 | ◎499.998250000 -00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 -00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 357 | ◎499.998245000 -00:02:24 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 358 | ◎499.998240000 -00:02:25 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 358 | ◎499.998240000 -00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 359 | ◎499.998235000 -00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 -00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 360 | ◎499.998230000 -00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 361 | ◎499.998225000 -00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 361 | ◎499.998225000 -00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 362 | ◎499.998220000 -00:02:26 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 363 | ◎499.998215000 -00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 363 | ◎499.998215000 -00:02:27 | Processed Slot: 361 | Confirmed Slot: 361 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 364 | ◎499.998210000 -00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 -00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 365 | ◎499.998205000 -00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 366 | ◎499.998200000 -00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 366 | ◎499.998200000 -00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 367 | ◎499.998195000 -00:02:28 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 -00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 368 | ◎499.998190000 -00:02:29 | Processed Slot: 366 | Confirmed Slot: 366 | Finalized Slot: 334 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 369 | ◎499.998185000 -00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 -00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 370 | ◎499.998180000 -00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 371 | ◎499.998175000 -00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 371 | ◎499.998175000 -00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 372 | ◎499.998170000 -00:02:30 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 -00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 373 | ◎499.998165000 -00:02:31 | Processed Slot: 371 | Confirmed Slot: 371 | Finalized Slot: 339 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 374 | ◎499.998160000 -00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 -00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 375 | ◎499.998155000 -00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 376 | ◎499.998150000 -00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 376 | ◎499.998150000 -00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 377 | ◎499.998145000 -00:02:32 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 -00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 378 | ◎499.998140000 -00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 379 | ◎499.998135000 -00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 379 | ◎499.998135000 -00:02:33 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 380 | ◎499.998130000 -00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 381 | ◎499.998125000 -00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 381 | ◎499.998125000 -00:02:34 | Processed Slot: 379 | Confirmed Slot: 379 | Finalized Slot: 347 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 382 | ◎499.998120000 -00:02:34 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 -00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 383 | ◎499.998115000 -00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 384 | ◎499.998110000 -00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 384 | ◎499.998110000 -00:02:35 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 385 | ◎499.998105000 -00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 -00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 386 | ◎499.998100000 -00:02:36 | Processed Slot: 384 | Confirmed Slot: 384 | Finalized Slot: 352 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 387 | ◎499.998095000 -00:02:36 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 -00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 388 | ◎499.998090000 -00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.998085000 -00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.998085000 -00:02:37 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 390 | ◎499.998080000 -00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 -00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 391 | ◎499.998075000 -00:02:38 | Processed Slot: 389 | Confirmed Slot: 389 | Finalized Slot: 357 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 392 | ◎499.998070000 -00:02:38 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 -00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 393 | ◎499.998065000 -00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 394 | ◎499.998060000 -00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 394 | ◎499.998060000 -00:02:39 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 395 | ◎499.998055000 -00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 -00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 396 | ◎499.998050000 -00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 397 | ◎499.998045000 -00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 397 | ◎499.998045000 -00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 398 | ◎499.998040000 -00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 -00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 399 | ◎499.998035000 -00:02:41 | Processed Slot: 397 | Confirmed Slot: 397 | Finalized Slot: 365 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 400 | ◎499.998030000 -00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 -00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 401 | ◎499.998025000 -00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 402 | ◎499.998020000 -00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 402 | ◎499.998020000 -00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 403 | ◎499.998015000 -00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 -00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 404 | ◎499.998010000 -00:02:43 | Processed Slot: 402 | Confirmed Slot: 402 | Finalized Slot: 370 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 405 | ◎499.998005000 -00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 -00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 406 | ◎499.998000000 -00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 407 | ◎499.997995000 -00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 407 | ◎499.997995000 -00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 408 | ◎499.997990000 -00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 -00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 409 | ◎499.997985000 -00:02:45 | Processed Slot: 407 | Confirmed Slot: 407 | Finalized Slot: 375 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 410 | ◎499.997980000 -00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 -00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 411 | ◎499.997975000 -00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 412 | ◎499.997970000 -00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 412 | ◎499.997970000 -00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 413 | ◎499.997965000 -00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 -00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 414 | ◎499.997960000 -00:02:47 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 415 | ◎499.997955000 -00:02:48 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 415 | ◎499.997955000 -00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 416 | ◎499.997950000 -00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 -00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 417 | ◎499.997945000 -00:02:49 | Processed Slot: 415 | Confirmed Slot: 415 | Finalized Slot: 383 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 418 | ◎499.997940000 -00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 -00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 419 | ◎499.997935000 -00:02:49 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 420 | ◎499.997930000 -00:02:50 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 420 | ◎499.997930000 -00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 421 | ◎499.997925000 -00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 -00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 422 | ◎499.997920000 -00:02:51 | Processed Slot: 420 | Confirmed Slot: 420 | Finalized Slot: 388 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 423 | ◎499.997915000 -00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 -00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 424 | ◎499.997910000 -00:02:51 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 425 | ◎499.997905000 -00:02:52 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 425 | ◎499.997905000 -00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 426 | ◎499.997900000 -00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 -00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 427 | ◎499.997895000 -00:02:53 | Processed Slot: 425 | Confirmed Slot: 425 | Finalized Slot: 393 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 428 | ◎499.997890000 -00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 -00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 429 | ◎499.997885000 -00:02:53 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 430 | ◎499.997880000 -00:02:54 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 430 | ◎499.997880000 -00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 431 | ◎499.997875000 -00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 -00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 432 | ◎499.997870000 -00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.997865000 -00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.997865000 -00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 434 | ◎499.997860000 -00:02:55 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 -00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 435 | ◎499.997855000 -00:02:56 | Processed Slot: 433 | Confirmed Slot: 433 | Finalized Slot: 401 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 436 | ◎499.997850000 -00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 -00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 437 | ◎499.997845000 -00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 438 | ◎499.997840000 -00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 438 | ◎499.997840000 -00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 439 | ◎499.997835000 -00:02:57 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 -00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 440 | ◎499.997830000 -00:02:58 | Processed Slot: 438 | Confirmed Slot: 438 | Finalized Slot: 406 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 441 | ◎499.997825000 -00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 -00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 442 | ◎499.997820000 -00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 443 | ◎499.997815000 -00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 443 | ◎499.997815000 -00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 444 | ◎499.997810000 -00:02:59 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 -00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 445 | ◎499.997805000 -00:03:00 | Processed Slot: 443 | Confirmed Slot: 443 | Finalized Slot: 411 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 446 | ◎499.997800000 -00:03:00 | Processed Slot: 444 | Confirmed Slot: 443 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997800000 -00:03:00 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 447 | ◎499.997795000 -00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 448 | ◎499.997790000 -00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 448 | ◎499.997790000 -00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 449 | ◎499.997785000 -00:03:01 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 -00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 450 | ◎499.997780000 -00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 451 | ◎499.997775000 -00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 451 | ◎499.997775000 -00:03:02 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 452 | ◎499.997770000 -00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 -00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 453 | ◎499.997765000 -00:03:03 | Processed Slot: 451 | Confirmed Slot: 451 | Finalized Slot: 419 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 454 | ◎499.997760000 -00:03:03 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 -00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 455 | ◎499.997755000 -00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 456 | ◎499.997750000 -00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 456 | ◎499.997750000 -00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 457 | ◎499.997745000 -00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 -00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 458 | ◎499.997740000 -00:03:05 | Processed Slot: 456 | Confirmed Slot: 456 | Finalized Slot: 424 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 459 | ◎499.997735000 -00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 -00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 460 | ◎499.997730000 -00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 461 | ◎499.997725000 -00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 461 | ◎499.997725000 -00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 462 | ◎499.997720000 -00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 -00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 463 | ◎499.997715000 -00:03:07 | Processed Slot: 461 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 464 | ◎499.997710000 -00:03:08 | Processed Slot: 462 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997710000 -00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 465 | ◎499.997705000 -00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 466 | ◎499.997700000 -00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 466 | ◎499.997700000 -00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 467 | ◎499.997695000 -00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 -00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 468 | ◎499.997690000 -00:03:09 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 469 | ◎499.997685000 -00:03:10 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 469 | ◎499.997685000 -00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 470 | ◎499.997680000 -00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 -00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.997675000 -00:03:11 | Processed Slot: 469 | Confirmed Slot: 469 | Finalized Slot: 437 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 472 | ◎499.997670000 -00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 -00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 473 | ◎499.997665000 -00:03:11 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 474 | ◎499.997660000 -00:03:12 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 474 | ◎499.997660000 -00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 475 | ◎499.997655000 -00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 -00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 476 | ◎499.997650000 -00:03:13 | Processed Slot: 474 | Confirmed Slot: 474 | Finalized Slot: 442 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 477 | ◎499.997645000 -00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 -00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 478 | ◎499.997640000 -00:03:13 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 479 | ◎499.997635000 -00:03:14 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 479 | ◎499.997635000 -00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 480 | ◎499.997630000 -00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 -00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 481 | ◎499.997625000 -00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 482 | ◎499.997620000 -00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 482 | ◎499.997620000 -00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 483 | ◎499.997615000 -00:03:15 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 484 | ◎499.997610000 -00:03:16 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 484 | ◎499.997610000 -00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 485 | ◎499.997605000 -00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 -00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 486 | ◎499.997600000 -00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 487 | ◎499.997595000 -00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 487 | ◎499.997595000 -00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 488 | ◎499.997590000 -00:03:17 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 -00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 489 | ◎499.997585000 -00:03:18 | Processed Slot: 487 | Confirmed Slot: 487 | Finalized Slot: 455 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 490 | ◎499.997580000 -00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 -00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 491 | ◎499.997575000 -00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 492 | ◎499.997570000 -00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 492 | ◎499.997570000 -00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 493 | ◎499.997565000 -00:03:19 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 -00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 494 | ◎499.997560000 -00:03:20 | Processed Slot: 492 | Confirmed Slot: 492 | Finalized Slot: 460 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 495 | ◎499.997555000 -00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 -00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 496 | ◎499.997550000 -00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 497 | ◎499.997545000 -00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 497 | ◎499.997545000 -00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 498 | ◎499.997540000 -00:03:21 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 -00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 499 | ◎499.997535000 -00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 500 | ◎499.997530000 -00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 500 | ◎499.997530000 -00:03:22 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 501 | ◎499.997525000 -00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 502 | ◎499.997520000 -00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 502 | ◎499.997520000 -00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 503 | ◎499.997515000 -00:03:23 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 -00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 504 | ◎499.997510000 -00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 505 | ◎499.997505000 -00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 505 | ◎499.997505000 -00:03:24 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 506 | ◎499.997500000 -00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 -00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 507 | ◎499.997495000 -00:03:25 | Processed Slot: 505 | Confirmed Slot: 505 | Finalized Slot: 473 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.997490000 -00:03:25 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 -00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 509 | ◎499.997485000 -00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 510 | ◎499.997480000 -00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 510 | ◎499.997480000 -00:03:26 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 511 | ◎499.997475000 -00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 -00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 512 | ◎499.997470000 -00:03:27 | Processed Slot: 510 | Confirmed Slot: 510 | Finalized Slot: 478 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 513 | ◎499.997465000 -00:03:27 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 -00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 514 | ◎499.997460000 -00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 515 | ◎499.997455000 -00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 515 | ◎499.997455000 -00:03:28 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 516 | ◎499.997450000 -00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 -00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 517 | ◎499.997445000 -00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 518 | ◎499.997440000 -00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 518 | ◎499.997440000 -00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 519 | ◎499.997435000 -00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 520 | ◎499.997430000 -00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 520 | ◎499.997430000 -00:03:30 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 521 | ◎499.997425000 -00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 -00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 522 | ◎499.997420000 -00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 523 | ◎499.997415000 -00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 523 | ◎499.997415000 -00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 524 | ◎499.997410000 -00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 -00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 525 | ◎499.997405000 -00:03:32 | Processed Slot: 523 | Confirmed Slot: 523 | Finalized Slot: 491 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 526 | ◎499.997400000 -00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 -00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 527 | ◎499.997395000 -00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 528 | ◎499.997390000 -00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 528 | ◎499.997390000 -00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 529 | ◎499.997385000 -00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 -00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 530 | ◎499.997380000 -00:03:34 | Processed Slot: 528 | Confirmed Slot: 528 | Finalized Slot: 496 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 531 | ◎499.997375000 -00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 -00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 532 | ◎499.997370000 -00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 533 | ◎499.997365000 -00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 533 | ◎499.997365000 -00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 534 | ◎499.997360000 -00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 -00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 535 | ◎499.997355000 -00:03:36 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 536 | ◎499.997350000 -00:03:37 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 536 | ◎499.997350000 -00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 537 | ◎499.997345000 -00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 538 | ◎499.997340000 -00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 538 | ◎499.997340000 -00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 539 | ◎499.997335000 -00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 -00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 540 | ◎499.997330000 -00:03:38 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 541 | ◎499.997325000 -00:03:39 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 541 | ◎499.997325000 -00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 542 | ◎499.997320000 -00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 -00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 543 | ◎499.997315000 -00:03:40 | Processed Slot: 541 | Confirmed Slot: 541 | Finalized Slot: 509 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 544 | ◎499.997310000 -00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 -00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.997305000 -00:03:40 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 546 | ◎499.997300000 -00:03:41 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 546 | ◎499.997300000 -00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 547 | ◎499.997295000 -00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 -00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 548 | ◎499.997290000 -00:03:42 | Processed Slot: 546 | Confirmed Slot: 546 | Finalized Slot: 514 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 549 | ◎499.997285000 -00:03:42 | Processed Slot: 547 | Confirmed Slot: 546 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997285000 -00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 550 | ◎499.997280000 -00:03:42 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 551 | ◎499.997275000 -00:03:43 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 551 | ◎499.997275000 -00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 552 | ◎499.997270000 -00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 -00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 553 | ◎499.997265000 -00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 554 | ◎499.997260000 -00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 554 | ◎499.997260000 -00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 555 | ◎499.997255000 -00:03:44 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 556 | ◎499.997250000 -00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 556 | ◎499.997250000 -00:03:45 | Processed Slot: 554 | Confirmed Slot: 554 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 557 | ◎499.997245000 -00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 -00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 558 | ◎499.997240000 -00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 559 | ◎499.997235000 -00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 559 | ◎499.997235000 -00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 560 | ◎499.997230000 -00:03:46 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 -00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 561 | ◎499.997225000 -00:03:47 | Processed Slot: 559 | Confirmed Slot: 559 | Finalized Slot: 527 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 562 | ◎499.997220000 -00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 -00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 563 | ◎499.997215000 -00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 564 | ◎499.997210000 -00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 564 | ◎499.997210000 -00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 565 | ◎499.997205000 -00:03:48 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 -00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 566 | ◎499.997200000 -00:03:49 | Processed Slot: 564 | Confirmed Slot: 564 | Finalized Slot: 532 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 567 | ◎499.997195000 -00:03:49 | Processed Slot: 565 | Confirmed Slot: 564 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997195000 -00:03:49 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 568 | ◎499.997190000 -00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 569 | ◎499.997185000 -00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 569 | ◎499.997185000 -00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 570 | ◎499.997180000 -00:03:50 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 -00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 571 | ◎499.997175000 -00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 572 | ◎499.997170000 -00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 572 | ◎499.997170000 -00:03:51 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 573 | ◎499.997165000 -00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 574 | ◎499.997160000 -00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 574 | ◎499.997160000 -00:03:52 | Processed Slot: 572 | Confirmed Slot: 572 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 575 | ◎499.997155000 -00:03:52 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 -00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 576 | ◎499.997150000 -00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 577 | ◎499.997145000 -00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 577 | ◎499.997145000 -00:03:53 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 578 | ◎499.997140000 -00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 -00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 579 | ◎499.997135000 -00:03:54 | Processed Slot: 577 | Confirmed Slot: 577 | Finalized Slot: 545 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 580 | ◎499.997130000 -00:03:54 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 -00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 581 | ◎499.997125000 -00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 582 | ◎499.997120000 -00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 582 | ◎499.997120000 -00:03:55 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 583 | ◎499.997115000 -00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 -00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 584 | ◎499.997110000 -00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 585 | ◎499.997105000 -00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 585 | ◎499.997105000 -00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 586 | ◎499.997100000 -00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 587 | ◎499.997095000 -00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 587 | ◎499.997095000 -00:03:57 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 588 | ◎499.997090000 -00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 -00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 589 | ◎499.997085000 -00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 590 | ◎499.997080000 -00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 590 | ◎499.997080000 -00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 591 | ◎499.997075000 -00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 592 | ◎499.997070000 -00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 592 | ◎499.997070000 -00:03:59 | Processed Slot: 590 | Confirmed Slot: 590 | Finalized Slot: 558 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 593 | ◎499.997065000 -00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 -00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 594 | ◎499.997060000 -00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 595 | ◎499.997055000 -00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 595 | ◎499.997055000 -00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 596 | ◎499.997050000 -00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 -00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 597 | ◎499.997045000 -00:04:01 | Processed Slot: 595 | Confirmed Slot: 595 | Finalized Slot: 563 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 598 | ◎499.997040000 -00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 -00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 599 | ◎499.997035000 -00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 600 | ◎499.997030000 -00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 600 | ◎499.997030000 -00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 601 | ◎499.997025000 -00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 -00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 602 | ◎499.997020000 -00:04:03 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 603 | ◎499.997015000 -00:04:04 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 603 | ◎499.997015000 -00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 604 | ◎499.997010000 -00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 605 | ◎499.997005000 -00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 605 | ◎499.997005000 -00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 606 | ◎499.997000000 -00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 -00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 607 | ◎499.996995000 -00:04:05 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 608 | ◎499.996990000 -00:04:06 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 608 | ◎499.996990000 -00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 609 | ◎499.996985000 -00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 -00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 610 | ◎499.996980000 -00:04:07 | Processed Slot: 608 | Confirmed Slot: 608 | Finalized Slot: 576 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 611 | ◎499.996975000 -00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 -00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 612 | ◎499.996970000 -00:04:07 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 613 | ◎499.996965000 -00:04:08 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 613 | ◎499.996965000 -00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 614 | ◎499.996960000 -00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 -00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 615 | ◎499.996955000 -00:04:09 | Processed Slot: 613 | Confirmed Slot: 613 | Finalized Slot: 581 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 616 | ◎499.996950000 -00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 -00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 617 | ◎499.996945000 -00:04:09 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 618 | ◎499.996940000 -00:04:10 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 618 | ◎499.996940000 -00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 619 | ◎499.996935000 -00:04:10 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 -00:04:10 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 620 | ◎499.996930000 -00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 621 | ◎499.996925000 -00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 621 | ◎499.996925000 -00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 622 | ◎499.996920000 -00:04:11 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 623 | ◎499.996915000 -00:04:12 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 623 | ◎499.996915000 -00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 624 | ◎499.996910000 -00:04:12 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 -00:04:12 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 625 | ◎499.996905000 -00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 626 | ◎499.996900000 -00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 626 | ◎499.996900000 -00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 627 | ◎499.996895000 -00:04:13 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 -00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 628 | ◎499.996890000 -00:04:14 | Processed Slot: 626 | Confirmed Slot: 626 | Finalized Slot: 594 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 629 | ◎499.996885000 -00:04:14 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 -00:04:14 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 630 | ◎499.996880000 -00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 631 | ◎499.996875000 -00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 631 | ◎499.996875000 -00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 632 | ◎499.996870000 -00:04:15 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 -00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 633 | ◎499.996865000 -00:04:16 | Processed Slot: 631 | Confirmed Slot: 631 | Finalized Slot: 599 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 634 | ◎499.996860000 -00:04:16 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 -00:04:16 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 635 | ◎499.996855000 -00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 636 | ◎499.996850000 -00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 636 | ◎499.996850000 -00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 637 | ◎499.996845000 -00:04:17 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 -00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 638 | ◎499.996840000 -00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 639 | ◎499.996835000 -00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 639 | ◎499.996835000 -00:04:18 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 640 | ◎499.996830000 -00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 641 | ◎499.996825000 -00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 641 | ◎499.996825000 -00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 642 | ◎499.996820000 -00:04:19 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 -00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 643 | ◎499.996815000 -00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 644 | ◎499.996810000 -00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 644 | ◎499.996810000 -00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 645 | ◎499.996805000 -00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 -00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 646 | ◎499.996800000 -00:04:21 | Processed Slot: 644 | Confirmed Slot: 644 | Finalized Slot: 612 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 647 | ◎499.996795000 -00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 -00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 648 | ◎499.996790000 -00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 649 | ◎499.996785000 -00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 649 | ◎499.996785000 -00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 650 | ◎499.996780000 -00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 -00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 651 | ◎499.996775000 -00:04:23 | Processed Slot: 649 | Confirmed Slot: 649 | Finalized Slot: 617 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 652 | ◎499.996770000 -00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 -00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 653 | ◎499.996765000 -00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 654 | ◎499.996760000 -00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 654 | ◎499.996760000 -00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 655 | ◎499.996755000 -00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 -00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 656 | ◎499.996750000 -00:04:25 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 657 | ◎499.996745000 -00:04:26 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 657 | ◎499.996745000 -00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 658 | ◎499.996740000 -00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 659 | ◎499.996735000 -00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 659 | ◎499.996735000 -00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 660 | ◎499.996730000 -00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 -00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 661 | ◎499.996725000 -00:04:27 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 662 | ◎499.996720000 -00:04:28 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 662 | ◎499.996720000 -00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 663 | ◎499.996715000 -00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 -00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 664 | ◎499.996710000 -00:04:29 | Processed Slot: 662 | Confirmed Slot: 662 | Finalized Slot: 630 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 665 | ◎499.996705000 -00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 -00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 666 | ◎499.996700000 -00:04:29 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 667 | ◎499.996695000 -00:04:30 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 667 | ◎499.996695000 -00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 668 | ◎499.996690000 -00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 -00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 669 | ◎499.996685000 -00:04:31 | Processed Slot: 667 | Confirmed Slot: 667 | Finalized Slot: 635 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 670 | ◎499.996680000 -00:04:31 | Processed Slot: 668 | Confirmed Slot: 667 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996680000 -00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 671 | ◎499.996675000 -00:04:31 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 672 | ◎499.996670000 -00:04:32 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 672 | ◎499.996670000 -00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 673 | ◎499.996665000 -00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 -00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 674 | ◎499.996660000 -00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 675 | ◎499.996655000 -00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 675 | ◎499.996655000 -00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 676 | ◎499.996650000 -00:04:33 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 677 | ◎499.996645000 -00:04:34 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 677 | ◎499.996645000 -00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 678 | ◎499.996640000 -00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 -00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 679 | ◎499.996635000 -00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 680 | ◎499.996630000 -00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 680 | ◎499.996630000 -00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 681 | ◎499.996625000 -00:04:35 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 -00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 682 | ◎499.996620000 -00:04:36 | Processed Slot: 680 | Confirmed Slot: 680 | Finalized Slot: 648 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 683 | ◎499.996615000 -00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 -00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 684 | ◎499.996610000 -00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 685 | ◎499.996605000 -00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 685 | ◎499.996605000 -00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 686 | ◎499.996600000 -00:04:37 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 -00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 687 | ◎499.996595000 -00:04:38 | Processed Slot: 685 | Confirmed Slot: 685 | Finalized Slot: 653 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 688 | ◎499.996590000 -00:04:38 | Processed Slot: 686 | Confirmed Slot: 685 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996590000 -00:04:38 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 689 | ◎499.996585000 -00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 690 | ◎499.996580000 -00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 690 | ◎499.996580000 -00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 691 | ◎499.996575000 -00:04:39 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 -00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 692 | ◎499.996570000 -00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 693 | ◎499.996565000 -00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 693 | ◎499.996565000 -00:04:40 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 694 | ◎499.996560000 -00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 695 | ◎499.996555000 -00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 695 | ◎499.996555000 -00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 696 | ◎499.996550000 -00:04:41 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 -00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 697 | ◎499.996545000 -00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 698 | ◎499.996540000 -00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 698 | ◎499.996540000 -00:04:42 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 699 | ◎499.996535000 -00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 -00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 700 | ◎499.996530000 -00:04:43 | Processed Slot: 698 | Confirmed Slot: 698 | Finalized Slot: 666 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 701 | ◎499.996525000 -00:04:43 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 -00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 702 | ◎499.996520000 -00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 703 | ◎499.996515000 -00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 703 | ◎499.996515000 -00:04:44 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 704 | ◎499.996510000 -00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 -00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 705 | ◎499.996505000 -00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 706 | ◎499.996500000 -00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 706 | ◎499.996500000 -00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 707 | ◎499.996495000 -00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 708 | ◎499.996490000 -00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 708 | ◎499.996490000 -00:04:46 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 709 | ◎499.996485000 -00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 -00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 710 | ◎499.996480000 -00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 711 | ◎499.996475000 -00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 711 | ◎499.996475000 -00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 712 | ◎499.996470000 -00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 713 | ◎499.996465000 -00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 713 | ◎499.996465000 -00:04:48 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 714 | ◎499.996460000 -00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 -00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 715 | ◎499.996455000 -00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 716 | ◎499.996450000 -00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 716 | ◎499.996450000 -00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 717 | ◎499.996445000 -00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 -00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 718 | ◎499.996440000 -00:04:50 | Processed Slot: 716 | Confirmed Slot: 716 | Finalized Slot: 684 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 719 | ◎499.996435000 -00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 -00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 720 | ◎499.996430000 -00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 721 | ◎499.996425000 -00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 721 | ◎499.996425000 -00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 722 | ◎499.996420000 -00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 -00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 723 | ◎499.996415000 -00:04:52 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 724 | ◎499.996410000 -00:04:53 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 724 | ◎499.996410000 -00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 725 | ◎499.996405000 -00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 726 | ◎499.996400000 -00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 726 | ◎499.996400000 -00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 727 | ◎499.996395000 -00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 -00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 728 | ◎499.996390000 -00:04:54 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 729 | ◎499.996385000 -00:04:55 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 729 | ◎499.996385000 -00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 730 | ◎499.996380000 -00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 731 | ◎499.996375000 -00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 731 | ◎499.996375000 -00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 732 | ◎499.996370000 -00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 -00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 733 | ◎499.996365000 -00:04:56 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 734 | ◎499.996360000 -00:04:57 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 734 | ◎499.996360000 -00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 735 | ◎499.996355000 -00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 -00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 736 | ◎499.996350000 -00:04:58 | Processed Slot: 734 | Confirmed Slot: 734 | Finalized Slot: 702 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 737 | ◎499.996345000 -00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 -00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 738 | ◎499.996340000 -00:04:58 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 739 | ◎499.996335000 -00:04:59 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 739 | ◎499.996335000 -00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 740 | ◎499.996330000 -00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 -00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 741 | ◎499.996325000 -00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 742 | ◎499.996320000 -00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 742 | ◎499.996320000 -00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 743 | ◎499.996315000 -00:05:00 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 744 | ◎499.996310000 -00:05:01 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 744 | ◎499.996310000 -00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 745 | ◎499.996305000 -00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 -00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 746 | ◎499.996300000 -00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 747 | ◎499.996295000 -00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 747 | ◎499.996295000 -00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 748 | ◎499.996290000 -00:05:02 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 749 | ◎499.996285000 -00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 749 | ◎499.996285000 -00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 750 | ◎499.996280000 -00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 -00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 751 | ◎499.996275000 -00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 752 | ◎499.996270000 -00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 752 | ◎499.996270000 -00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 753 | ◎499.996265000 -00:05:04 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 -00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 754 | ◎499.996260000 -00:05:05 | Processed Slot: 752 | Confirmed Slot: 752 | Finalized Slot: 720 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 755 | ◎499.996255000 -00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 -00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 756 | ◎499.996250000 -00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 757 | ◎499.996245000 -00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 757 | ◎499.996245000 -00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 758 | ◎499.996240000 -00:05:06 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 -00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 759 | ◎499.996235000 -00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 760 | ◎499.996230000 -00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 760 | ◎499.996230000 -00:05:07 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 761 | ◎499.996225000 -00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 762 | ◎499.996220000 -00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 762 | ◎499.996220000 -00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 763 | ◎499.996215000 -00:05:08 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 -00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 764 | ◎499.996210000 -00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 765 | ◎499.996205000 -00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 765 | ◎499.996205000 -00:05:09 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 766 | ◎499.996200000 -00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 767 | ◎499.996195000 -00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 767 | ◎499.996195000 -00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 768 | ◎499.996190000 -00:05:10 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 -00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 769 | ◎499.996185000 -00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 770 | ◎499.996180000 -00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 770 | ◎499.996180000 -00:05:11 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 771 | ◎499.996175000 -00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 -00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 772 | ◎499.996170000 -00:05:12 | Processed Slot: 770 | Confirmed Slot: 770 | Finalized Slot: 738 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 773 | ◎499.996165000 -00:05:12 | Processed Slot: 771 | Confirmed Slot: 770 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996165000 -00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 774 | ◎499.996160000 -00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 775 | ◎499.996155000 -00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 775 | ◎499.996155000 -00:05:13 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 776 | ◎499.996150000 -00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 -00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 777 | ◎499.996145000 -00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 778 | ◎499.996140000 -00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 778 | ◎499.996140000 -00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 779 | ◎499.996135000 -00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 780 | ◎499.996130000 -00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 780 | ◎499.996130000 -00:05:15 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 781 | ◎499.996125000 -00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 -00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 782 | ◎499.996120000 -00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 783 | ◎499.996115000 -00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 783 | ◎499.996115000 -00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 784 | ◎499.996110000 -00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 785 | ◎499.996105000 -00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 785 | ◎499.996105000 -00:05:17 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 786 | ◎499.996100000 -00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 -00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 787 | ◎499.996095000 -00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 788 | ◎499.996090000 -00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 788 | ◎499.996090000 -00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 789 | ◎499.996085000 -00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 -00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 790 | ◎499.996080000 -00:05:19 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 791 | ◎499.996075000 -00:05:20 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 791 | ◎499.996075000 -00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 792 | ◎499.996070000 -00:05:20 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 793 | ◎499.996065000 -00:05:20 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 793 | ◎499.996065000 -00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 794 | ◎499.996060000 -00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 -00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 795 | ◎499.996055000 -00:05:21 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 796 | ◎499.996050000 -00:05:22 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 796 | ◎499.996050000 -00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 797 | ◎499.996045000 -00:05:22 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 798 | ◎499.996040000 -00:05:22 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 798 | ◎499.996040000 -00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 799 | ◎499.996035000 -00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 -00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 800 | ◎499.996030000 -00:05:23 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 801 | ◎499.996025000 -00:05:24 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 801 | ◎499.996025000 -00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 802 | ◎499.996020000 -00:05:24 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 803 | ◎499.996015000 -00:05:24 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 803 | ◎499.996015000 -00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 804 | ◎499.996010000 -00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 -00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 805 | ◎499.996005000 -00:05:25 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 806 | ◎499.996000000 -00:05:26 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 806 | ◎499.996000000 -00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 807 | ◎499.995995000 -00:05:26 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 -00:05:26 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 808 | ◎499.995990000 -00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 809 | ◎499.995985000 -00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 809 | ◎499.995985000 -00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 810 | ◎499.995980000 -00:05:27 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 811 | ◎499.995975000 -00:05:28 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 811 | ◎499.995975000 -00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 812 | ◎499.995970000 -00:05:28 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 -00:05:28 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 813 | ◎499.995965000 -00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 814 | ◎499.995960000 -00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 814 | ◎499.995960000 -00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 815 | ◎499.995955000 -00:05:29 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 816 | ◎499.995950000 -00:05:30 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 816 | ◎499.995950000 -00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 817 | ◎499.995945000 -00:05:30 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 -00:05:30 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 818 | ◎499.995940000 -00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 819 | ◎499.995935000 -00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 819 | ◎499.995935000 -00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 820 | ◎499.995930000 -00:05:31 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 821 | ◎499.995925000 -00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 821 | ◎499.995925000 -00:05:32 | Processed Slot: 819 | Confirmed Slot: 819 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 822 | ◎499.995920000 -00:05:32 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 -00:05:32 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 823 | ◎499.995915000 -00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 824 | ◎499.995910000 -00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 824 | ◎499.995910000 -00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 825 | ◎499.995905000 -00:05:33 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 -00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 826 | ◎499.995900000 -00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 827 | ◎499.995895000 -00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 827 | ◎499.995895000 -00:05:34 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 828 | ◎499.995890000 -00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 829 | ◎499.995885000 -00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 829 | ◎499.995885000 -00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 830 | ◎499.995880000 -00:05:35 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 -00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 831 | ◎499.995875000 -00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 832 | ◎499.995870000 -00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 832 | ◎499.995870000 -00:05:36 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 833 | ◎499.995865000 -00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 834 | ◎499.995860000 -00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 834 | ◎499.995860000 -00:05:37 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 835 | ◎499.995855000 -00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 -00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 836 | ◎499.995850000 -00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 837 | ◎499.995845000 -00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 837 | ◎499.995845000 -00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 838 | ◎499.995840000 -00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 839 | ◎499.995835000 -00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 839 | ◎499.995835000 -00:05:39 | Processed Slot: 837 | Confirmed Slot: 837 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 840 | ◎499.995830000 -00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 -00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 841 | ◎499.995825000 -00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 842 | ◎499.995820000 -00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 842 | ◎499.995820000 -00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 843 | ◎499.995815000 -00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 -00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 844 | ◎499.995810000 -00:05:41 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 845 | ◎499.995805000 -00:05:42 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 845 | ◎499.995805000 -00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 846 | ◎499.995800000 -00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 847 | ◎499.995795000 -00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 847 | ◎499.995795000 -00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 848 | ◎499.995790000 -00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 -00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 849 | ◎499.995785000 -00:05:43 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 850 | ◎499.995780000 -00:05:44 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 850 | ◎499.995780000 -00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 851 | ◎499.995775000 -00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 852 | ◎499.995770000 -00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 852 | ◎499.995770000 -00:05:45 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 853 | ◎499.995765000 -00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 -00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 854 | ◎499.995760000 -00:05:45 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 855 | ◎499.995755000 -00:05:46 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 855 | ◎499.995755000 -00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 856 | ◎499.995750000 -00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 857 | ◎499.995745000 -00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 857 | ◎499.995745000 -00:05:47 | Processed Slot: 855 | Confirmed Slot: 855 | Finalized Slot: 823 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 858 | ◎499.995740000 -00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 -00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 859 | ◎499.995735000 -00:05:47 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 860 | ◎499.995730000 -00:05:48 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 860 | ◎499.995730000 -00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 861 | ◎499.995725000 -00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 -00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 862 | ◎499.995720000 -00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 863 | ◎499.995715000 -00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 863 | ◎499.995715000 -00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 864 | ◎499.995710000 -00:05:49 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 865 | ◎499.995705000 -00:05:50 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 865 | ◎499.995705000 -00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 866 | ◎499.995700000 -00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 -00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 867 | ◎499.995695000 -00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 868 | ◎499.995690000 -00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 868 | ◎499.995690000 -00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 869 | ◎499.995685000 -00:05:51 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 870 | ◎499.995680000 -00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 870 | ◎499.995680000 -00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 871 | ◎499.995675000 -00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 -00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 872 | ◎499.995670000 -00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 873 | ◎499.995665000 -00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 873 | ◎499.995665000 -00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 874 | ◎499.995660000 -00:05:53 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 -00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 875 | ◎499.995655000 -00:05:54 | Processed Slot: 873 | Confirmed Slot: 873 | Finalized Slot: 841 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 876 | ◎499.995650000 -00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 -00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 877 | ◎499.995645000 -00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 878 | ◎499.995640000 -00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 878 | ◎499.995640000 -00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 879 | ◎499.995635000 -00:05:55 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 -00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 880 | ◎499.995630000 -00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 881 | ◎499.995625000 -00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 881 | ◎499.995625000 -00:05:56 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 882 | ◎499.995620000 -00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 883 | ◎499.995615000 -00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 883 | ◎499.995615000 -00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 884 | ◎499.995610000 -00:05:57 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 -00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 885 | ◎499.995605000 -00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 886 | ◎499.995600000 -00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 886 | ◎499.995600000 -00:05:58 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 887 | ◎499.995595000 -00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 888 | ◎499.995590000 -00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 888 | ◎499.995590000 -00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 889 | ◎499.995585000 -00:05:59 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 -00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 890 | ◎499.995580000 -00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 891 | ◎499.995575000 -00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 891 | ◎499.995575000 -00:06:00 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 892 | ◎499.995570000 -00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 -00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 893 | ◎499.995565000 -00:06:01 | Processed Slot: 891 | Confirmed Slot: 891 | Finalized Slot: 859 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 894 | ◎499.995560000 -00:06:01 | Processed Slot: 892 | Confirmed Slot: 891 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995560000 -00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 895 | ◎499.995555000 -00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 896 | ◎499.995550000 -00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 896 | ◎499.995550000 -00:06:02 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 897 | ◎499.995545000 -00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 -00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 898 | ◎499.995540000 -00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 899 | ◎499.995535000 -00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 899 | ◎499.995535000 -00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 900 | ◎499.995530000 -00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 901 | ◎499.995525000 -00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 901 | ◎499.995525000 -00:06:04 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 902 | ◎499.995520000 -00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 -00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 903 | ◎499.995515000 -00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 904 | ◎499.995510000 -00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 904 | ◎499.995510000 -00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 905 | ◎499.995505000 -00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 906 | ◎499.995500000 -00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 906 | ◎499.995500000 -00:06:06 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 907 | ◎499.995495000 -00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 -00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 908 | ◎499.995490000 -00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 909 | ◎499.995485000 -00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 909 | ◎499.995485000 -00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 910 | ◎499.995480000 -00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 -00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 911 | ◎499.995475000 -00:06:08 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 912 | ◎499.995470000 -00:06:09 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 912 | ◎499.995470000 -00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 913 | ◎499.995465000 -00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 914 | ◎499.995460000 -00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 914 | ◎499.995460000 -00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 915 | ◎499.995455000 -00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 -00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 916 | ◎499.995450000 -00:06:10 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 917 | ◎499.995445000 -00:06:11 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 917 | ◎499.995445000 -00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 918 | ◎499.995440000 -00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 919 | ◎499.995435000 -00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 919 | ◎499.995435000 -00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 920 | ◎499.995430000 -00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 -00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 921 | ◎499.995425000 -00:06:12 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 922 | ◎499.995420000 -00:06:13 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 922 | ◎499.995420000 -00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 923 | ◎499.995415000 -00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 924 | ◎499.995410000 -00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 924 | ◎499.995410000 -00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 925 | ◎499.995405000 -00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 -00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 926 | ◎499.995400000 -00:06:14 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 927 | ◎499.995395000 -00:06:15 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 927 | ◎499.995395000 -00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 928 | ◎499.995390000 -00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 -00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 929 | ◎499.995385000 -00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 930 | ◎499.995380000 -00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 930 | ◎499.995380000 -00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 931 | ◎499.995375000 -00:06:16 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 932 | ◎499.995370000 -00:06:17 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 932 | ◎499.995370000 -00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 933 | ◎499.995365000 -00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 -00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 934 | ◎499.995360000 -00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 935 | ◎499.995355000 -00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 935 | ◎499.995355000 -00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 936 | ◎499.995350000 -00:06:18 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 937 | ◎499.995345000 -00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 937 | ◎499.995345000 -00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 938 | ◎499.995340000 -00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 -00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 939 | ◎499.995335000 -00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 940 | ◎499.995330000 -00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 940 | ◎499.995330000 -00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 941 | ◎499.995325000 -00:06:20 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 942 | ◎499.995320000 -00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 942 | ◎499.995320000 -00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 943 | ◎499.995315000 -00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 -00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 944 | ◎499.995310000 -00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 945 | ◎499.995305000 -00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 945 | ◎499.995305000 -00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 946 | ◎499.995300000 -00:06:22 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 -00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 947 | ◎499.995295000 -00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 948 | ◎499.995290000 -00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 948 | ◎499.995290000 -00:06:23 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 949 | ◎499.995285000 -00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 950 | ◎499.995280000 -00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 950 | ◎499.995280000 -00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 951 | ◎499.995275000 -00:06:24 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 -00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 952 | ◎499.995270000 -00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 953 | ◎499.995265000 -00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 953 | ◎499.995265000 -00:06:25 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 954 | ◎499.995260000 -00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 955 | ◎499.995255000 -00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 955 | ◎499.995255000 -00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 956 | ◎499.995250000 -00:06:26 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 -00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 957 | ◎499.995245000 -00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 958 | ◎499.995240000 -00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 958 | ◎499.995240000 -00:06:27 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 959 | ◎499.995235000 -00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 960 | ◎499.995230000 -00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 960 | ◎499.995230000 -00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 961 | ◎499.995225000 -00:06:28 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 -00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 962 | ◎499.995220000 -00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 963 | ◎499.995215000 -00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 963 | ◎499.995215000 -00:06:29 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 964 | ◎499.995210000 -00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 -00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 965 | ◎499.995205000 -00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 966 | ◎499.995200000 -00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 966 | ◎499.995200000 -00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 967 | ◎499.995195000 -00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 968 | ◎499.995190000 -00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 968 | ◎499.995190000 -00:06:31 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 969 | ◎499.995185000 -00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 -00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 970 | ◎499.995180000 -00:06:32 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 971 | ◎499.995175000 -00:06:32 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 971 | ◎499.995175000 -00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 972 | ◎499.995170000 -00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 973 | ◎499.995165000 -00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 973 | ◎499.995165000 -00:06:33 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 974 | ◎499.995160000 -00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 -00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 975 | ◎499.995155000 -00:06:34 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 976 | ◎499.995150000 -00:06:34 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 976 | ◎499.995150000 -00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 977 | ◎499.995145000 -00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 978 | ◎499.995140000 -00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 978 | ◎499.995140000 -00:06:35 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 979 | ◎499.995135000 -00:06:36 | Processed Slot: 977 | Confirmed Slot: 976 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 -00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 980 | ◎499.995130000 -00:06:36 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 981 | ◎499.995125000 -00:06:36 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 981 | ◎499.995125000 -00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 982 | ◎499.995120000 -00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 -00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 983 | ◎499.995115000 -00:06:37 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 984 | ◎499.995110000 -00:06:38 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 984 | ◎499.995110000 -00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 985 | ◎499.995105000 -00:06:38 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 986 | ◎499.995100000 -00:06:38 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 986 | ◎499.995100000 -00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 987 | ◎499.995095000 -00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 -00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 988 | ◎499.995090000 -00:06:39 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 989 | ◎499.995085000 -00:06:40 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 989 | ◎499.995085000 -00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 990 | ◎499.995080000 -00:06:40 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 991 | ◎499.995075000 -00:06:40 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 991 | ◎499.995075000 -00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 992 | ◎499.995070000 -00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 -00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 993 | ◎499.995065000 -00:06:41 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 994 | ◎499.995060000 -00:06:42 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 994 | ◎499.995060000 -00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 995 | ◎499.995055000 -00:06:42 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 996 | ◎499.995050000 -00:06:42 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 996 | ◎499.995050000 -00:06:43 | Processed Slot: 994 | Confirmed Slot: 994 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 997 | ◎499.995045000 -00:06:43 | Processed Slot: 995 | Confirmed Slot: 994 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995045000 -00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 998 | ◎499.995040000 -00:06:43 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 999 | ◎499.995035000 -00:06:44 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 999 | ◎499.995035000 -00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1000 | ◎499.995030000 -00:06:44 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 -00:06:44 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1001 | ◎499.995025000 -00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1002 | ◎499.995020000 -00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1002 | ◎499.995020000 -00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎499.995015000 -00:06:45 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1004 | ◎499.995010000 -00:06:46 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1004 | ◎499.995010000 -00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1005 | ◎499.995005000 -00:06:46 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 -00:06:46 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1006 | ◎499.995000000 -00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1007 | ◎499.994995000 -00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1007 | ◎499.994995000 -00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1008 | ◎499.994990000 -00:06:47 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1009 | ◎499.994985000 -00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1009 | ◎499.994985000 -00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1010 | ◎499.994980000 -00:06:48 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 -00:06:48 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1011 | ◎499.994975000 -00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1012 | ◎499.994970000 -00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1012 | ◎499.994970000 -00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1013 | ◎499.994965000 -00:06:49 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 -00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1014 | ◎499.994960000 -00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎499.994955000 -00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎499.994955000 -00:06:50 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1016 | ◎499.994950000 -00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1017 | ◎499.994945000 -00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1017 | ◎499.994945000 -00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1018 | ◎499.994940000 -00:06:51 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 -00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1019 | ◎499.994935000 -00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1020 | ◎499.994930000 -00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1020 | ◎499.994930000 -00:06:52 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1021 | ◎499.994925000 -00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1022 | ◎499.994920000 -00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1022 | ◎499.994920000 -00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1023 | ◎499.994915000 -00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 -00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1024 | ◎499.994910000 -00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1025 | ◎499.994905000 -00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1025 | ◎499.994905000 -00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1026 | ◎499.994900000 -00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1027 | ◎499.994895000 -00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1027 | ◎499.994895000 -00:06:55 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1028 | ◎499.994890000 -00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 -00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1029 | ◎499.994885000 -00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1030 | ◎499.994880000 -00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1030 | ◎499.994880000 -00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1031 | ◎499.994875000 -00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 -00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎499.994870000 -00:06:57 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1033 | ◎499.994865000 -00:06:58 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 1033 | ◎499.994865000 -00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1034 | ◎499.994860000 -00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1035 | ◎499.994855000 -00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1035 | ◎499.994855000 -00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1036 | ◎499.994850000 -00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 -00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1037 | ◎499.994845000 -00:06:59 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1038 | ◎499.994840000 -00:07:00 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1038 | ◎499.994840000 -00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1039 | ◎499.994835000 -00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1040 | ◎499.994830000 -00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1040 | ◎499.994830000 -00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1041 | ◎499.994825000 -00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 -00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1042 | ◎499.994820000 -00:07:01 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1043 | ◎499.994815000 -00:07:02 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1043 | ◎499.994815000 -00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1044 | ◎499.994810000 -00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1045 | ◎499.994805000 -00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1045 | ◎499.994805000 -00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1046 | ◎499.994800000 -00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 -00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1047 | ◎499.994795000 -00:07:03 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1048 | ◎499.994790000 -00:07:04 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1048 | ◎499.994790000 -00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1049 | ◎499.994785000 -00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 -00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎499.994780000 -00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1051 | ◎499.994775000 -00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1051 | ◎499.994775000 -00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1052 | ◎499.994770000 -00:07:05 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1053 | ◎499.994765000 -00:07:06 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1053 | ◎499.994765000 -00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1054 | ◎499.994760000 -00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 -00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎499.994755000 -00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎499.994750000 -00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎499.994750000 -00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎499.994745000 -00:07:07 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎499.994740000 -00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎499.994740000 -00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎499.994735000 -00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 -00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎499.994730000 -00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎499.994725000 -00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎499.994725000 -00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎499.994720000 -00:07:09 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎499.994715000 -00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎499.994715000 -00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎499.994710000 -00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 -00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1065 | ◎499.994705000 -00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1066 | ◎499.994700000 -00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1066 | ◎499.994700000 -00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1067 | ◎499.994695000 -00:07:11 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 -00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1068 | ◎499.994690000 -00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎499.994685000 -00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎499.994685000 -00:07:12 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1070 | ◎499.994680000 -00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1071 | ◎499.994675000 -00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1071 | ◎499.994675000 -00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1072 | ◎499.994670000 -00:07:13 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 -00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1073 | ◎499.994665000 -00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎499.994660000 -00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎499.994660000 -00:07:14 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1075 | ◎499.994655000 -00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1076 | ◎499.994650000 -00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1076 | ◎499.994650000 -00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1077 | ◎499.994645000 -00:07:15 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 -00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1078 | ◎499.994640000 -00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎499.994635000 -00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎499.994635000 -00:07:16 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1080 | ◎499.994630000 -00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎499.994625000 -00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎499.994625000 -00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎499.994620000 -00:07:17 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 -00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎499.994615000 -00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎499.994610000 -00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎499.994610000 -00:07:18 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎499.994605000 -00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 -00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎499.994600000 -00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎499.994595000 -00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎499.994595000 -00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎499.994590000 -00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎499.994585000 -00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎499.994585000 -00:07:20 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎499.994580000 -00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 -00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1091 | ◎499.994575000 -00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1092 | ◎499.994570000 -00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1092 | ◎499.994570000 -00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1093 | ◎499.994565000 -00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1094 | ◎499.994560000 -00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1094 | ◎499.994560000 -00:07:22 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1095 | ◎499.994555000 -00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 -00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1096 | ◎499.994550000 -00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1097 | ◎499.994545000 -00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1097 | ◎499.994545000 -00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1098 | ◎499.994540000 -00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎499.994535000 -00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎499.994535000 -00:07:24 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1100 | ◎499.994530000 -00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1097 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994530000 -00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1101 | ◎499.994525000 -00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1102 | ◎499.994520000 -00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1102 | ◎499.994520000 -00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1103 | ◎499.994515000 -00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 -00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1104 | ◎499.994510000 -00:07:26 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1105 | ◎499.994505000 -00:07:27 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1105 | ◎499.994505000 -00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1106 | ◎499.994500000 -00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1107 | ◎499.994495000 -00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1107 | ◎499.994495000 -00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎499.994490000 -00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 -00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1109 | ◎499.994485000 -00:07:28 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1110 | ◎499.994480000 -00:07:29 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1110 | ◎499.994480000 -00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1111 | ◎499.994475000 -00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1112 | ◎499.994470000 -00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1112 | ◎499.994470000 -00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1113 | ◎499.994465000 -00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 -00:07:30 | Processed Slot: 1111 | Confirmed Slot: 1111 | Finalized Slot: 1079 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎499.994460000 -00:07:30 | Processed Slot: 1112 | Confirmed Slot: 1112 | Finalized Slot: 1080 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎499.994455000 -00:07:31 | Processed Slot: 1112 | Confirmed Slot: 1112 | Finalized Slot: 1080 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎499.994455000 -00:07:31 | Processed Slot: 1113 | Confirmed Slot: 1113 | Finalized Slot: 1081 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎499.994450000 -00:07:31 | Processed Slot: 1114 | Confirmed Slot: 1114 | Finalized Slot: 1082 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎499.994445000 -00:07:31 | Processed Slot: 1114 | Confirmed Slot: 1114 | Finalized Slot: 1082 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎499.994445000 -00:07:32 | Processed Slot: 1115 | Confirmed Slot: 1115 | Finalized Slot: 1083 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎499.994440000 -00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1115 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994440000 -00:07:32 | Processed Slot: 1116 | Confirmed Slot: 1116 | Finalized Slot: 1084 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎499.994435000 -00:07:32 | Processed Slot: 1117 | Confirmed Slot: 1117 | Finalized Slot: 1085 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎499.994430000 -00:07:33 | Processed Slot: 1117 | Confirmed Slot: 1117 | Finalized Slot: 1085 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎499.994430000 -00:07:33 | Processed Slot: 1118 | Confirmed Slot: 1118 | Finalized Slot: 1086 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎499.994425000 -00:07:33 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 -00:07:33 | Processed Slot: 1119 | Confirmed Slot: 1119 | Finalized Slot: 1087 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎499.994420000 -00:07:34 | Processed Slot: 1120 | Confirmed Slot: 1120 | Finalized Slot: 1088 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1123 | ◎499.994415000 -00:07:34 | Processed Slot: 1120 | Confirmed Slot: 1120 | Finalized Slot: 1088 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1123 | ◎499.994415000 -00:07:34 | Processed Slot: 1121 | Confirmed Slot: 1121 | Finalized Slot: 1089 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1124 | ◎499.994410000 -00:07:34 | Processed Slot: 1122 | Confirmed Slot: 1122 | Finalized Slot: 1090 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎499.994405000 -00:07:35 | Processed Slot: 1122 | Confirmed Slot: 1122 | Finalized Slot: 1090 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎499.994405000 -00:07:35 | Processed Slot: 1123 | Confirmed Slot: 1123 | Finalized Slot: 1091 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1126 | ◎499.994400000 -00:07:35 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 -00:07:35 | Processed Slot: 1124 | Confirmed Slot: 1124 | Finalized Slot: 1092 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1127 | ◎499.994395000 -00:07:36 | Processed Slot: 1125 | Confirmed Slot: 1125 | Finalized Slot: 1093 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1128 | ◎499.994390000 -00:07:36 | Processed Slot: 1125 | Confirmed Slot: 1125 | Finalized Slot: 1093 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1128 | ◎499.994390000 -00:07:36 | Processed Slot: 1126 | Confirmed Slot: 1126 | Finalized Slot: 1094 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎499.994385000 -00:07:36 | Processed Slot: 1127 | Confirmed Slot: 1127 | Finalized Slot: 1095 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1130 | ◎499.994380000 -00:07:37 | Processed Slot: 1127 | Confirmed Slot: 1127 | Finalized Slot: 1095 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1130 | ◎499.994380000 -00:07:37 | Processed Slot: 1128 | Confirmed Slot: 1128 | Finalized Slot: 1096 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1131 | ◎499.994375000 -00:07:37 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 -00:07:37 | Processed Slot: 1129 | Confirmed Slot: 1129 | Finalized Slot: 1097 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1132 | ◎499.994370000 -00:07:38 | Processed Slot: 1130 | Confirmed Slot: 1130 | Finalized Slot: 1098 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1133 | ◎499.994365000 -00:07:38 | Processed Slot: 1130 | Confirmed Slot: 1130 | Finalized Slot: 1098 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1133 | ◎499.994365000 -00:07:38 | Processed Slot: 1131 | Confirmed Slot: 1131 | Finalized Slot: 1099 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎499.994360000 -00:07:38 | Processed Slot: 1132 | Confirmed Slot: 1132 | Finalized Slot: 1100 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1135 | ◎499.994355000 -00:07:39 | Processed Slot: 1132 | Confirmed Slot: 1132 | Finalized Slot: 1100 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1135 | ◎499.994355000 -00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 -00:07:39 | Processed Slot: 1133 | Confirmed Slot: 1133 | Finalized Slot: 1101 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1136 | ◎499.994350000 -00:07:39 | Processed Slot: 1134 | Confirmed Slot: 1134 | Finalized Slot: 1102 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎499.994345000 -00:07:40 | Processed Slot: 1135 | Confirmed Slot: 1135 | Finalized Slot: 1103 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎499.994340000 -00:07:40 | Processed Slot: 1135 | Confirmed Slot: 1135 | Finalized Slot: 1103 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎499.994340000 -00:07:40 | Processed Slot: 1136 | Confirmed Slot: 1136 | Finalized Slot: 1104 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎499.994335000 -00:07:40 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 -00:07:41 | Processed Slot: 1137 | Confirmed Slot: 1137 | Finalized Slot: 1105 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎499.994330000 -00:07:41 | Processed Slot: 1138 | Confirmed Slot: 1138 | Finalized Slot: 1106 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎499.994325000 -00:07:41 | Processed Slot: 1138 | Confirmed Slot: 1138 | Finalized Slot: 1106 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎499.994325000 -00:07:41 | Processed Slot: 1139 | Confirmed Slot: 1139 | Finalized Slot: 1107 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎499.994320000 -00:07:42 | Processed Slot: 1140 | Confirmed Slot: 1140 | Finalized Slot: 1108 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎499.994315000 -00:07:42 | Processed Slot: 1140 | Confirmed Slot: 1140 | Finalized Slot: 1108 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎499.994315000 -00:07:42 | Processed Slot: 1141 | Confirmed Slot: 1141 | Finalized Slot: 1109 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎499.994310000 -00:07:42 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 -00:07:43 | Processed Slot: 1142 | Confirmed Slot: 1142 | Finalized Slot: 1110 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎499.994305000 -00:07:43 | Processed Slot: 1143 | Confirmed Slot: 1143 | Finalized Slot: 1111 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎499.994300000 -00:07:43 | Processed Slot: 1143 | Confirmed Slot: 1143 | Finalized Slot: 1111 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎499.994300000 -00:07:43 | Processed Slot: 1144 | Confirmed Slot: 1144 | Finalized Slot: 1112 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1147 | ◎499.994295000 -00:07:44 | Processed Slot: 1145 | Confirmed Slot: 1145 | Finalized Slot: 1113 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1148 | ◎499.994290000 -00:07:44 | Processed Slot: 1145 | Confirmed Slot: 1145 | Finalized Slot: 1113 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1148 | ◎499.994290000 -00:07:44 | Processed Slot: 1146 | Confirmed Slot: 1146 | Finalized Slot: 1114 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1149 | ◎499.994285000 -00:07:44 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 -00:07:45 | Processed Slot: 1147 | Confirmed Slot: 1147 | Finalized Slot: 1115 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1150 | ◎499.994280000 -00:07:45 | Processed Slot: 1148 | Confirmed Slot: 1148 | Finalized Slot: 1116 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎499.994275000 -00:07:45 | Processed Slot: 1148 | Confirmed Slot: 1148 | Finalized Slot: 1116 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎499.994275000 -00:07:45 | Processed Slot: 1149 | Confirmed Slot: 1149 | Finalized Slot: 1117 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1152 | ◎499.994270000 -00:07:46 | Processed Slot: 1150 | Confirmed Slot: 1150 | Finalized Slot: 1118 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1153 | ◎499.994265000 -00:07:46 | Processed Slot: 1150 | Confirmed Slot: 1150 | Finalized Slot: 1118 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1153 | ◎499.994265000 -00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 -00:07:46 | Processed Slot: 1151 | Confirmed Slot: 1151 | Finalized Slot: 1119 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1154 | ◎499.994260000 -00:07:47 | Processed Slot: 1152 | Confirmed Slot: 1152 | Finalized Slot: 1120 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎499.994255000 -00:07:47 | Processed Slot: 1153 | Confirmed Slot: 1153 | Finalized Slot: 1121 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎499.994250000 -00:07:47 | Processed Slot: 1153 | Confirmed Slot: 1153 | Finalized Slot: 1121 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎499.994250000 -00:07:47 | Processed Slot: 1154 | Confirmed Slot: 1154 | Finalized Slot: 1122 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎499.994245000 -00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 -00:07:48 | Processed Slot: 1155 | Confirmed Slot: 1155 | Finalized Slot: 1123 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎499.994240000 -00:07:48 | Processed Slot: 1156 | Confirmed Slot: 1156 | Finalized Slot: 1124 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎499.994235000 -00:07:48 | Processed Slot: 1156 | Confirmed Slot: 1156 | Finalized Slot: 1124 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎499.994235000 -00:07:49 | Processed Slot: 1157 | Confirmed Slot: 1157 | Finalized Slot: 1125 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎499.994230000 -00:07:49 | Processed Slot: 1158 | Confirmed Slot: 1158 | Finalized Slot: 1126 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎499.994225000 -00:07:49 | Processed Slot: 1158 | Confirmed Slot: 1158 | Finalized Slot: 1126 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎499.994225000 -00:07:49 | Processed Slot: 1159 | Confirmed Slot: 1159 | Finalized Slot: 1127 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎499.994220000 -00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 -00:07:50 | Processed Slot: 1160 | Confirmed Slot: 1160 | Finalized Slot: 1128 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎499.994215000 -00:07:50 | Processed Slot: 1161 | Confirmed Slot: 1161 | Finalized Slot: 1129 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎499.994210000 -00:07:50 | Processed Slot: 1161 | Confirmed Slot: 1161 | Finalized Slot: 1129 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎499.994210000 -00:07:51 | Processed Slot: 1162 | Confirmed Slot: 1162 | Finalized Slot: 1130 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1165 | ◎499.994205000 -00:07:51 | Processed Slot: 1163 | Confirmed Slot: 1163 | Finalized Slot: 1131 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1166 | ◎499.994200000 -00:07:51 | Processed Slot: 1163 | Confirmed Slot: 1163 | Finalized Slot: 1131 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1166 | ◎499.994200000 -00:07:51 | Processed Slot: 1164 | Confirmed Slot: 1164 | Finalized Slot: 1132 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1167 | ◎499.994195000 -00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 -00:07:52 | Processed Slot: 1165 | Confirmed Slot: 1165 | Finalized Slot: 1133 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎499.994190000 -00:07:52 | Processed Slot: 1166 | Confirmed Slot: 1166 | Finalized Slot: 1134 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1169 | ◎499.994185000 -00:07:52 | Processed Slot: 1166 | Confirmed Slot: 1166 | Finalized Slot: 1134 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1169 | ◎499.994185000 -00:07:53 | Processed Slot: 1167 | Confirmed Slot: 1167 | Finalized Slot: 1135 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1170 | ◎499.994180000 -00:07:53 | Processed Slot: 1168 | Confirmed Slot: 1168 | Finalized Slot: 1136 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1171 | ◎499.994175000 -00:07:53 | Processed Slot: 1168 | Confirmed Slot: 1168 | Finalized Slot: 1136 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1171 | ◎499.994175000 -00:07:53 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 -00:07:54 | Processed Slot: 1169 | Confirmed Slot: 1169 | Finalized Slot: 1137 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1172 | ◎499.994170000 -00:07:54 | Processed Slot: 1170 | Confirmed Slot: 1170 | Finalized Slot: 1138 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1173 | ◎499.994165000 -00:07:54 | Processed Slot: 1171 | Confirmed Slot: 1171 | Finalized Slot: 1139 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1174 | ◎499.994160000 -00:07:54 | Processed Slot: 1171 | Confirmed Slot: 1171 | Finalized Slot: 1139 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1174 | ◎499.994160000 -00:07:55 | Processed Slot: 1172 | Confirmed Slot: 1172 | Finalized Slot: 1140 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎499.994155000 -00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 -00:07:55 | Processed Slot: 1173 | Confirmed Slot: 1173 | Finalized Slot: 1141 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎499.994150000 -00:07:55 | Processed Slot: 1174 | Confirmed Slot: 1174 | Finalized Slot: 1142 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎499.994145000 -00:07:56 | Processed Slot: 1174 | Confirmed Slot: 1174 | Finalized Slot: 1142 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎499.994145000 -00:07:56 | Processed Slot: 1175 | Confirmed Slot: 1175 | Finalized Slot: 1143 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎499.994140000 -00:07:56 | Processed Slot: 1176 | Confirmed Slot: 1176 | Finalized Slot: 1144 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎499.994135000 -00:07:56 | Processed Slot: 1176 | Confirmed Slot: 1176 | Finalized Slot: 1144 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎499.994135000 -00:07:57 | Processed Slot: 1177 | Confirmed Slot: 1177 | Finalized Slot: 1145 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎499.994130000 -00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 -00:07:57 | Processed Slot: 1178 | Confirmed Slot: 1178 | Finalized Slot: 1146 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎499.994125000 -00:07:57 | Processed Slot: 1179 | Confirmed Slot: 1179 | Finalized Slot: 1147 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎499.994120000 -00:07:58 | Processed Slot: 1179 | Confirmed Slot: 1179 | Finalized Slot: 1147 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎499.994120000 -00:07:58 | Processed Slot: 1180 | Confirmed Slot: 1180 | Finalized Slot: 1148 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎499.994115000 -00:07:58 | Processed Slot: 1181 | Confirmed Slot: 1181 | Finalized Slot: 1149 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎499.994110000 -00:07:58 | Processed Slot: 1181 | Confirmed Slot: 1181 | Finalized Slot: 1149 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎499.994110000 -00:07:59 | Processed Slot: 1182 | Confirmed Slot: 1182 | Finalized Slot: 1150 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1185 | ◎499.994105000 -00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 -00:07:59 | Processed Slot: 1183 | Confirmed Slot: 1183 | Finalized Slot: 1151 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎499.994100000 -00:07:59 | Processed Slot: 1184 | Confirmed Slot: 1184 | Finalized Slot: 1152 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎499.994095000 -00:08:00 | Processed Slot: 1184 | Confirmed Slot: 1184 | Finalized Slot: 1152 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎499.994095000 -00:08:00 | Processed Slot: 1185 | Confirmed Slot: 1185 | Finalized Slot: 1153 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎499.994090000 -00:08:00 | Processed Slot: 1186 | Confirmed Slot: 1186 | Finalized Slot: 1154 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎499.994085000 -00:08:00 | Processed Slot: 1186 | Confirmed Slot: 1186 | Finalized Slot: 1154 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎499.994085000 -00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 -00:08:01 | Processed Slot: 1187 | Confirmed Slot: 1187 | Finalized Slot: 1155 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎499.994080000 -00:08:01 | Processed Slot: 1188 | Confirmed Slot: 1188 | Finalized Slot: 1156 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎499.994075000 -00:08:01 | Processed Slot: 1189 | Confirmed Slot: 1189 | Finalized Slot: 1157 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎499.994070000 -00:08:02 | Processed Slot: 1189 | Confirmed Slot: 1189 | Finalized Slot: 1157 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎499.994070000 -00:08:02 | Processed Slot: 1190 | Confirmed Slot: 1190 | Finalized Slot: 1158 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎499.994065000 -00:08:02 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 -00:08:02 | Processed Slot: 1191 | Confirmed Slot: 1191 | Finalized Slot: 1159 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎499.994060000 -00:08:03 | Processed Slot: 1192 | Confirmed Slot: 1192 | Finalized Slot: 1160 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎499.994055000 -00:08:03 | Processed Slot: 1192 | Confirmed Slot: 1192 | Finalized Slot: 1160 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎499.994055000 -00:08:03 | Processed Slot: 1193 | Confirmed Slot: 1193 | Finalized Slot: 1161 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎499.994050000 -00:08:03 | Processed Slot: 1194 | Confirmed Slot: 1194 | Finalized Slot: 1162 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎499.994045000 -00:08:04 | Processed Slot: 1194 | Confirmed Slot: 1194 | Finalized Slot: 1162 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎499.994045000 -00:08:04 | Processed Slot: 1195 | Confirmed Slot: 1195 | Finalized Slot: 1163 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎499.994040000 -00:08:04 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 -00:08:04 | Processed Slot: 1196 | Confirmed Slot: 1196 | Finalized Slot: 1164 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎499.994035000 -00:08:05 | Processed Slot: 1197 | Confirmed Slot: 1197 | Finalized Slot: 1165 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎499.994030000 -00:08:05 | Processed Slot: 1197 | Confirmed Slot: 1197 | Finalized Slot: 1165 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎499.994030000 -00:08:05 | Processed Slot: 1198 | Confirmed Slot: 1198 | Finalized Slot: 1166 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎499.994025000 -00:08:05 | Processed Slot: 1199 | Confirmed Slot: 1199 | Finalized Slot: 1167 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎499.994020000 -00:08:06 | Processed Slot: 1199 | Confirmed Slot: 1199 | Finalized Slot: 1167 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎499.994020000 -00:08:06 | Processed Slot: 1200 | Confirmed Slot: 1200 | Finalized Slot: 1168 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎499.994015000 -00:08:06 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 -00:08:06 | Processed Slot: 1201 | Confirmed Slot: 1201 | Finalized Slot: 1169 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎499.994010000 -00:08:07 | Processed Slot: 1202 | Confirmed Slot: 1202 | Finalized Slot: 1170 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎499.994005000 -00:08:07 | Processed Slot: 1202 | Confirmed Slot: 1202 | Finalized Slot: 1170 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎499.994005000 -00:08:07 | Processed Slot: 1203 | Confirmed Slot: 1203 | Finalized Slot: 1171 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎499.994000000 -00:08:07 | Processed Slot: 1204 | Confirmed Slot: 1204 | Finalized Slot: 1172 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎499.993995000 -00:08:08 | Processed Slot: 1204 | Confirmed Slot: 1204 | Finalized Slot: 1172 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎499.993995000 -00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1205 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993990000 -00:08:08 | Processed Slot: 1205 | Confirmed Slot: 1205 | Finalized Slot: 1173 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎499.993990000 -00:08:09 | Processed Slot: 1206 | Confirmed Slot: 1206 | Finalized Slot: 1174 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎499.993985000 -00:08:09 | Processed Slot: 1207 | Confirmed Slot: 1207 | Finalized Slot: 1175 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎499.993980000 -00:08:09 | Processed Slot: 1207 | Confirmed Slot: 1207 | Finalized Slot: 1175 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎499.993980000 -00:08:09 | Processed Slot: 1208 | Confirmed Slot: 1208 | Finalized Slot: 1176 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎499.993975000 -00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 -00:08:10 | Processed Slot: 1209 | Confirmed Slot: 1209 | Finalized Slot: 1177 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎499.993970000 -00:08:10 | Processed Slot: 1210 | Confirmed Slot: 1210 | Finalized Slot: 1178 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎499.993965000 -00:08:10 | Processed Slot: 1210 | Confirmed Slot: 1210 | Finalized Slot: 1178 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎499.993965000 -00:08:11 | Processed Slot: 1211 | Confirmed Slot: 1211 | Finalized Slot: 1179 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎499.993960000 -00:08:11 | Processed Slot: 1212 | Confirmed Slot: 1212 | Finalized Slot: 1180 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎499.993955000 -00:08:11 | Processed Slot: 1212 | Confirmed Slot: 1212 | Finalized Slot: 1180 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎499.993955000 -00:08:11 | Processed Slot: 1213 | Confirmed Slot: 1213 | Finalized Slot: 1181 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎499.993950000 -00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 -00:08:12 | Processed Slot: 1214 | Confirmed Slot: 1214 | Finalized Slot: 1182 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎499.993945000 -00:08:12 | Processed Slot: 1215 | Confirmed Slot: 1215 | Finalized Slot: 1183 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎499.993940000 -00:08:12 | Processed Slot: 1215 | Confirmed Slot: 1215 | Finalized Slot: 1183 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎499.993940000 -00:08:13 | Processed Slot: 1216 | Confirmed Slot: 1216 | Finalized Slot: 1184 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎499.993935000 -00:08:13 | Processed Slot: 1217 | Confirmed Slot: 1217 | Finalized Slot: 1185 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎499.993930000 -00:08:13 | Processed Slot: 1217 | Confirmed Slot: 1217 | Finalized Slot: 1185 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎499.993930000 -00:08:13 | Processed Slot: 1218 | Confirmed Slot: 1218 | Finalized Slot: 1186 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎499.993925000 -00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 -00:08:14 | Processed Slot: 1219 | Confirmed Slot: 1219 | Finalized Slot: 1187 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎499.993920000 -00:08:14 | Processed Slot: 1220 | Confirmed Slot: 1220 | Finalized Slot: 1188 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎499.993915000 -00:08:14 | Processed Slot: 1220 | Confirmed Slot: 1220 | Finalized Slot: 1188 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎499.993915000 -00:08:15 | Processed Slot: 1221 | Confirmed Slot: 1221 | Finalized Slot: 1189 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎499.993910000 -00:08:15 | Processed Slot: 1222 | Confirmed Slot: 1222 | Finalized Slot: 1190 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎499.993905000 -00:08:15 | Processed Slot: 1222 | Confirmed Slot: 1222 | Finalized Slot: 1190 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎499.993905000 -00:08:15 | Processed Slot: 1223 | Confirmed Slot: 1223 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993900000 -00:08:16 | Processed Slot: 1223 | Confirmed Slot: 1223 | Finalized Slot: 1191 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎499.993900000 -00:08:16 | Processed Slot: 1224 | Confirmed Slot: 1224 | Finalized Slot: 1192 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎499.993895000 -00:08:16 | Processed Slot: 1225 | Confirmed Slot: 1225 | Finalized Slot: 1193 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎499.993890000 -00:08:16 | Processed Slot: 1225 | Confirmed Slot: 1225 | Finalized Slot: 1193 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎499.993890000 -00:08:17 | Processed Slot: 1226 | Confirmed Slot: 1226 | Finalized Slot: 1194 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎499.993885000 -00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 -00:08:17 | Processed Slot: 1227 | Confirmed Slot: 1227 | Finalized Slot: 1195 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎499.993880000 -00:08:17 | Processed Slot: 1228 | Confirmed Slot: 1228 | Finalized Slot: 1196 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎499.993875000 -00:08:18 | Processed Slot: 1228 | Confirmed Slot: 1228 | Finalized Slot: 1196 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎499.993875000 -00:08:18 | Processed Slot: 1229 | Confirmed Slot: 1229 | Finalized Slot: 1197 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎499.993870000 -00:08:18 | Processed Slot: 1230 | Confirmed Slot: 1230 | Finalized Slot: 1198 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎499.993865000 -00:08:18 | Processed Slot: 1230 | Confirmed Slot: 1230 | Finalized Slot: 1198 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎499.993865000 -00:08:19 | Processed Slot: 1231 | Confirmed Slot: 1231 | Finalized Slot: 1199 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎499.993860000 -00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 -00:08:19 | Processed Slot: 1232 | Confirmed Slot: 1232 | Finalized Slot: 1200 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎499.993855000 -00:08:19 | Processed Slot: 1233 | Confirmed Slot: 1233 | Finalized Slot: 1201 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎499.993850000 -00:08:20 | Processed Slot: 1233 | Confirmed Slot: 1233 | Finalized Slot: 1201 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎499.993850000 -00:08:20 | Processed Slot: 1234 | Confirmed Slot: 1234 | Finalized Slot: 1202 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎499.993845000 -00:08:20 | Processed Slot: 1235 | Confirmed Slot: 1235 | Finalized Slot: 1203 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎499.993840000 -00:08:20 | Processed Slot: 1235 | Confirmed Slot: 1235 | Finalized Slot: 1203 | Full Snapshot Slot: 1100 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎499.993840000 -00:08:21 | Processed Slot: 1236 | Confirmed Slot: 1236 | Finalized Slot: 1204 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎499.993835000 -00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1236 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993835000 -00:08:21 | Processed Slot: 1237 | Confirmed Slot: 1237 | Finalized Slot: 1205 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎499.993830000 -00:08:21 | Processed Slot: 1238 | Confirmed Slot: 1238 | Finalized Slot: 1206 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎499.993825000 -00:08:22 | Processed Slot: 1238 | Confirmed Slot: 1238 | Finalized Slot: 1206 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎499.993825000 -00:08:22 | Processed Slot: 1239 | Confirmed Slot: 1239 | Finalized Slot: 1207 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎499.993820000 -00:08:22 | Processed Slot: 1240 | Confirmed Slot: 1240 | Finalized Slot: 1208 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎499.993815000 -00:08:22 | Processed Slot: 1240 | Confirmed Slot: 1240 | Finalized Slot: 1208 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎499.993815000 -00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1241 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993810000 -00:08:23 | Processed Slot: 1241 | Confirmed Slot: 1241 | Finalized Slot: 1209 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎499.993810000 -00:08:23 | Processed Slot: 1242 | Confirmed Slot: 1242 | Finalized Slot: 1210 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎499.993805000 -00:08:23 | Processed Slot: 1243 | Confirmed Slot: 1243 | Finalized Slot: 1211 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎499.993800000 -00:08:24 | Processed Slot: 1243 | Confirmed Slot: 1243 | Finalized Slot: 1211 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎499.993800000 -00:08:24 | Processed Slot: 1244 | Confirmed Slot: 1244 | Finalized Slot: 1212 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎499.993795000 -00:08:24 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 -00:08:24 | Processed Slot: 1245 | Confirmed Slot: 1245 | Finalized Slot: 1213 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎499.993790000 -00:08:25 | Processed Slot: 1246 | Confirmed Slot: 1246 | Finalized Slot: 1214 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎499.993785000 -00:08:25 | Processed Slot: 1246 | Confirmed Slot: 1246 | Finalized Slot: 1214 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎499.993785000 -00:08:25 | Processed Slot: 1247 | Confirmed Slot: 1247 | Finalized Slot: 1215 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎499.993780000 -00:08:25 | Processed Slot: 1248 | Confirmed Slot: 1248 | Finalized Slot: 1216 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎499.993775000 -00:08:26 | Processed Slot: 1248 | Confirmed Slot: 1248 | Finalized Slot: 1216 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎499.993775000 -00:08:26 | Processed Slot: 1249 | Confirmed Slot: 1249 | Finalized Slot: 1217 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎499.993770000 -00:08:26 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 -00:08:26 | Processed Slot: 1250 | Confirmed Slot: 1250 | Finalized Slot: 1218 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎499.993765000 -00:08:27 | Processed Slot: 1251 | Confirmed Slot: 1251 | Finalized Slot: 1219 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎499.993760000 -00:08:27 | Processed Slot: 1251 | Confirmed Slot: 1251 | Finalized Slot: 1219 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎499.993760000 -00:08:27 | Processed Slot: 1252 | Confirmed Slot: 1252 | Finalized Slot: 1220 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎499.993755000 -00:08:27 | Processed Slot: 1253 | Confirmed Slot: 1253 | Finalized Slot: 1221 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎499.993750000 -00:08:28 | Processed Slot: 1253 | Confirmed Slot: 1253 | Finalized Slot: 1221 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎499.993750000 -00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 -00:08:28 | Processed Slot: 1254 | Confirmed Slot: 1254 | Finalized Slot: 1222 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎499.993745000 -00:08:28 | Processed Slot: 1255 | Confirmed Slot: 1255 | Finalized Slot: 1223 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎499.993740000 -00:08:29 | Processed Slot: 1256 | Confirmed Slot: 1256 | Finalized Slot: 1224 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎499.993735000 -00:08:29 | Processed Slot: 1256 | Confirmed Slot: 1256 | Finalized Slot: 1224 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎499.993735000 -00:08:29 | Processed Slot: 1257 | Confirmed Slot: 1257 | Finalized Slot: 1225 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎499.993730000 -00:08:29 | Processed Slot: 1258 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎499.993725000 -00:08:30 | Processed Slot: 1258 | Confirmed Slot: 1258 | Finalized Slot: 1226 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎499.993725000 -00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1259 | Finalized Slot: 1227 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993720000 -00:08:30 | Processed Slot: 1259 | Confirmed Slot: 1259 | Finalized Slot: 1227 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎499.993720000 -00:08:30 | Processed Slot: 1260 | Confirmed Slot: 1260 | Finalized Slot: 1228 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎499.993715000 -00:08:31 | Processed Slot: 1261 | Confirmed Slot: 1261 | Finalized Slot: 1229 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎499.993710000 -00:08:31 | Processed Slot: 1261 | Confirmed Slot: 1261 | Finalized Slot: 1229 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎499.993710000 -00:08:31 | Processed Slot: 1262 | Confirmed Slot: 1262 | Finalized Slot: 1230 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎499.993705000 -00:08:31 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 -00:08:32 | Processed Slot: 1263 | Confirmed Slot: 1263 | Finalized Slot: 1231 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎499.993700000 -00:08:32 | Processed Slot: 1264 | Confirmed Slot: 1264 | Finalized Slot: 1232 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎499.993695000 -00:08:32 | Processed Slot: 1264 | Confirmed Slot: 1264 | Finalized Slot: 1232 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎499.993695000 -00:08:32 | Processed Slot: 1265 | Confirmed Slot: 1265 | Finalized Slot: 1233 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎499.993690000 -00:08:33 | Processed Slot: 1266 | Confirmed Slot: 1266 | Finalized Slot: 1234 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎499.993685000 -00:08:33 | Processed Slot: 1266 | Confirmed Slot: 1266 | Finalized Slot: 1234 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎499.993685000 -00:08:33 | Processed Slot: 1267 | Confirmed Slot: 1267 | Finalized Slot: 1235 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎499.993680000 -00:08:33 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 -00:08:34 | Processed Slot: 1268 | Confirmed Slot: 1268 | Finalized Slot: 1236 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎499.993675000 -00:08:34 | Processed Slot: 1269 | Confirmed Slot: 1269 | Finalized Slot: 1237 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎499.993670000 -00:08:34 | Processed Slot: 1269 | Confirmed Slot: 1269 | Finalized Slot: 1237 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎499.993670000 -00:08:34 | Processed Slot: 1270 | Confirmed Slot: 1270 | Finalized Slot: 1238 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎499.993665000 -00:08:35 | Processed Slot: 1271 | Confirmed Slot: 1271 | Finalized Slot: 1239 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎499.993660000 -00:08:35 | Processed Slot: 1271 | Confirmed Slot: 1271 | Finalized Slot: 1239 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎499.993660000 -00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 -00:08:35 | Processed Slot: 1272 | Confirmed Slot: 1272 | Finalized Slot: 1240 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎499.993655000 -00:08:36 | Processed Slot: 1273 | Confirmed Slot: 1273 | Finalized Slot: 1241 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎499.993650000 -00:08:36 | Processed Slot: 1274 | Confirmed Slot: 1274 | Finalized Slot: 1242 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎499.993645000 -00:08:36 | Processed Slot: 1274 | Confirmed Slot: 1274 | Finalized Slot: 1242 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎499.993645000 -00:08:36 | Processed Slot: 1275 | Confirmed Slot: 1275 | Finalized Slot: 1243 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎499.993640000 -00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 -00:08:37 | Processed Slot: 1276 | Confirmed Slot: 1276 | Finalized Slot: 1244 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎499.993635000 -00:08:37 | Processed Slot: 1277 | Confirmed Slot: 1277 | Finalized Slot: 1245 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎499.993630000 -00:08:37 | Processed Slot: 1277 | Confirmed Slot: 1277 | Finalized Slot: 1245 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎499.993630000 -00:08:38 | Processed Slot: 1278 | Confirmed Slot: 1278 | Finalized Slot: 1246 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎499.993625000 -00:08:38 | Processed Slot: 1279 | Confirmed Slot: 1279 | Finalized Slot: 1247 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎499.993620000 -00:08:38 | Processed Slot: 1279 | Confirmed Slot: 1279 | Finalized Slot: 1247 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎499.993620000 -00:08:38 | Processed Slot: 1280 | Confirmed Slot: 1280 | Finalized Slot: 1248 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎499.993615000 -00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 -00:08:39 | Processed Slot: 1281 | Confirmed Slot: 1281 | Finalized Slot: 1249 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎499.993610000 -00:08:39 | Processed Slot: 1282 | Confirmed Slot: 1282 | Finalized Slot: 1250 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎499.993605000 -00:08:39 | Processed Slot: 1282 | Confirmed Slot: 1282 | Finalized Slot: 1250 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎499.993605000 -00:08:40 | Processed Slot: 1283 | Confirmed Slot: 1283 | Finalized Slot: 1251 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎499.993600000 -00:08:40 | Processed Slot: 1284 | Confirmed Slot: 1284 | Finalized Slot: 1252 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎499.993595000 -00:08:40 | Processed Slot: 1284 | Confirmed Slot: 1284 | Finalized Slot: 1252 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎499.993595000 -00:08:40 | Processed Slot: 1285 | Confirmed Slot: 1285 | Finalized Slot: 1253 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎499.993590000 -00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 -00:08:41 | Processed Slot: 1286 | Confirmed Slot: 1286 | Finalized Slot: 1254 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎499.993585000 -00:08:41 | Processed Slot: 1287 | Confirmed Slot: 1287 | Finalized Slot: 1255 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎499.993580000 -00:08:41 | Processed Slot: 1287 | Confirmed Slot: 1287 | Finalized Slot: 1255 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎499.993580000 -00:08:42 | Processed Slot: 1288 | Confirmed Slot: 1288 | Finalized Slot: 1256 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎499.993575000 -00:08:42 | Processed Slot: 1289 | Confirmed Slot: 1289 | Finalized Slot: 1257 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎499.993570000 -00:08:42 | Processed Slot: 1289 | Confirmed Slot: 1289 | Finalized Slot: 1257 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎499.993570000 -00:08:42 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 -00:08:43 | Processed Slot: 1290 | Confirmed Slot: 1290 | Finalized Slot: 1258 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎499.993565000 -00:08:43 | Processed Slot: 1291 | Confirmed Slot: 1291 | Finalized Slot: 1259 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎499.993560000 -00:08:43 | Processed Slot: 1292 | Confirmed Slot: 1292 | Finalized Slot: 1260 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎499.993555000 -00:08:43 | Processed Slot: 1292 | Confirmed Slot: 1292 | Finalized Slot: 1260 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎499.993555000 -00:08:44 | Processed Slot: 1293 | Confirmed Slot: 1293 | Finalized Slot: 1261 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎499.993550000 -00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 -00:08:44 | Processed Slot: 1294 | Confirmed Slot: 1294 | Finalized Slot: 1262 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎499.993545000 -00:08:44 | Processed Slot: 1295 | Confirmed Slot: 1295 | Finalized Slot: 1263 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎499.993540000 -00:08:45 | Processed Slot: 1295 | Confirmed Slot: 1295 | Finalized Slot: 1263 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎499.993540000 -00:08:45 | Processed Slot: 1296 | Confirmed Slot: 1296 | Finalized Slot: 1264 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎499.993535000 -00:08:45 | Processed Slot: 1297 | Confirmed Slot: 1297 | Finalized Slot: 1265 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎499.993530000 -00:08:45 | Processed Slot: 1297 | Confirmed Slot: 1297 | Finalized Slot: 1265 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎499.993530000 -00:08:46 | Processed Slot: 1298 | Confirmed Slot: 1298 | Finalized Slot: 1266 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎499.993525000 -00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 -00:08:46 | Processed Slot: 1299 | Confirmed Slot: 1299 | Finalized Slot: 1267 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎499.993520000 -00:08:46 | Processed Slot: 1300 | Confirmed Slot: 1300 | Finalized Slot: 1268 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎499.993515000 -00:08:47 | Processed Slot: 1300 | Confirmed Slot: 1300 | Finalized Slot: 1268 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎499.993515000 -00:08:47 | Processed Slot: 1301 | Confirmed Slot: 1301 | Finalized Slot: 1269 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎499.993510000 -00:08:47 | Processed Slot: 1302 | Confirmed Slot: 1302 | Finalized Slot: 1270 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎499.993505000 -00:08:47 | Processed Slot: 1302 | Confirmed Slot: 1302 | Finalized Slot: 1270 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎499.993505000 -00:08:48 | Processed Slot: 1303 | Confirmed Slot: 1303 | Finalized Slot: 1271 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎499.993500000 -00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 -00:08:48 | Processed Slot: 1304 | Confirmed Slot: 1304 | Finalized Slot: 1272 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎499.993495000 -00:08:48 | Processed Slot: 1305 | Confirmed Slot: 1305 | Finalized Slot: 1273 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎499.993490000 -00:08:49 | Processed Slot: 1305 | Confirmed Slot: 1305 | Finalized Slot: 1273 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎499.993490000 -00:08:49 | Processed Slot: 1306 | Confirmed Slot: 1306 | Finalized Slot: 1274 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎499.993485000 -00:08:49 | Processed Slot: 1307 | Confirmed Slot: 1307 | Finalized Slot: 1275 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎499.993480000 -00:08:49 | Processed Slot: 1307 | Confirmed Slot: 1307 | Finalized Slot: 1275 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎499.993480000 -00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 -00:08:50 | Processed Slot: 1308 | Confirmed Slot: 1308 | Finalized Slot: 1276 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎499.993475000 -00:08:50 | Processed Slot: 1309 | Confirmed Slot: 1309 | Finalized Slot: 1277 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎499.993470000 -00:08:50 | Processed Slot: 1310 | Confirmed Slot: 1310 | Finalized Slot: 1278 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎499.993465000 -00:08:51 | Processed Slot: 1310 | Confirmed Slot: 1310 | Finalized Slot: 1278 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎499.993465000 -00:08:51 | Processed Slot: 1311 | Confirmed Slot: 1311 | Finalized Slot: 1279 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎499.993460000 -00:08:51 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 -00:08:51 | Processed Slot: 1312 | Confirmed Slot: 1312 | Finalized Slot: 1280 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎499.993455000 -00:08:52 | Processed Slot: 1313 | Confirmed Slot: 1313 | Finalized Slot: 1281 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎499.993450000 -00:08:52 | Processed Slot: 1313 | Confirmed Slot: 1313 | Finalized Slot: 1281 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎499.993450000 -00:08:52 | Processed Slot: 1314 | Confirmed Slot: 1314 | Finalized Slot: 1282 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎499.993445000 -00:08:52 | Processed Slot: 1315 | Confirmed Slot: 1315 | Finalized Slot: 1283 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎499.993440000 -00:08:53 | Processed Slot: 1315 | Confirmed Slot: 1315 | Finalized Slot: 1283 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎499.993440000 -00:08:53 | Processed Slot: 1316 | Confirmed Slot: 1316 | Finalized Slot: 1284 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎499.993435000 -00:08:53 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 -00:08:53 | Processed Slot: 1317 | Confirmed Slot: 1317 | Finalized Slot: 1285 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎499.993430000 -00:08:54 | Processed Slot: 1318 | Confirmed Slot: 1318 | Finalized Slot: 1286 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎499.993425000 -00:08:54 | Processed Slot: 1318 | Confirmed Slot: 1318 | Finalized Slot: 1286 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎499.993425000 -00:08:54 | Processed Slot: 1319 | Confirmed Slot: 1319 | Finalized Slot: 1287 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎499.993420000 -00:08:54 | Processed Slot: 1320 | Confirmed Slot: 1320 | Finalized Slot: 1288 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎499.993415000 -00:08:55 | Processed Slot: 1320 | Confirmed Slot: 1320 | Finalized Slot: 1288 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎499.993415000 -00:08:55 | Processed Slot: 1321 | Confirmed Slot: 1321 | Finalized Slot: 1289 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎499.993410000 -00:08:55 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 -00:08:55 | Processed Slot: 1322 | Confirmed Slot: 1322 | Finalized Slot: 1290 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎499.993405000 -00:08:56 | Processed Slot: 1323 | Confirmed Slot: 1323 | Finalized Slot: 1291 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎499.993400000 -00:08:56 | Processed Slot: 1323 | Confirmed Slot: 1323 | Finalized Slot: 1291 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎499.993400000 -00:08:56 | Processed Slot: 1324 | Confirmed Slot: 1324 | Finalized Slot: 1292 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎499.993395000 -00:08:56 | Processed Slot: 1325 | Confirmed Slot: 1325 | Finalized Slot: 1293 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎499.993390000 -00:08:57 | Processed Slot: 1325 | Confirmed Slot: 1325 | Finalized Slot: 1293 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎499.993390000 -00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 -00:08:57 | Processed Slot: 1326 | Confirmed Slot: 1326 | Finalized Slot: 1294 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎499.993385000 -00:08:57 | Processed Slot: 1327 | Confirmed Slot: 1327 | Finalized Slot: 1295 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎499.993380000 -00:08:58 | Processed Slot: 1328 | Confirmed Slot: 1328 | Finalized Slot: 1296 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎499.993375000 -00:08:58 | Processed Slot: 1328 | Confirmed Slot: 1328 | Finalized Slot: 1296 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎499.993375000 -00:08:58 | Processed Slot: 1329 | Confirmed Slot: 1329 | Finalized Slot: 1297 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎499.993370000 -00:08:58 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 -00:08:59 | Processed Slot: 1330 | Confirmed Slot: 1330 | Finalized Slot: 1298 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎499.993365000 -00:08:59 | Processed Slot: 1331 | Confirmed Slot: 1331 | Finalized Slot: 1299 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎499.993360000 -00:08:59 | Processed Slot: 1331 | Confirmed Slot: 1331 | Finalized Slot: 1299 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎499.993360000 -00:08:59 | Processed Slot: 1332 | Confirmed Slot: 1332 | Finalized Slot: 1300 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎499.993355000 -00:09:00 | Processed Slot: 1333 | Confirmed Slot: 1333 | Finalized Slot: 1301 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎499.993350000 -00:09:00 | Processed Slot: 1333 | Confirmed Slot: 1333 | Finalized Slot: 1301 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎499.993350000 -00:09:00 | Processed Slot: 1334 | Confirmed Slot: 1334 | Finalized Slot: 1302 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎499.993345000 -00:09:00 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1200 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 -00:09:01 | Processed Slot: 1335 | Confirmed Slot: 1335 | Finalized Slot: 1303 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎499.993340000 -00:09:01 | Processed Slot: 1336 | Confirmed Slot: 1336 | Finalized Slot: 1304 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎499.993335000 -00:09:01 | Processed Slot: 1336 | Confirmed Slot: 1336 | Finalized Slot: 1304 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎499.993335000 -00:09:01 | Processed Slot: 1337 | Confirmed Slot: 1337 | Finalized Slot: 1305 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎499.993330000 -00:09:02 | Processed Slot: 1338 | Confirmed Slot: 1338 | Finalized Slot: 1306 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎499.993325000 -00:09:02 | Processed Slot: 1338 | Confirmed Slot: 1338 | Finalized Slot: 1306 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎499.993325000 -00:09:02 | Processed Slot: 1339 | Confirmed Slot: 1339 | Finalized Slot: 1307 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎499.993320000 -00:09:02 | Processed Slot: 1340 | Confirmed Slot: 1339 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 -00:09:03 | Processed Slot: 1340 | Confirmed Slot: 1340 | Finalized Slot: 1308 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎499.993315000 -00:09:03 | Processed Slot: 1341 | Confirmed Slot: 1341 | Finalized Slot: 1309 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎499.993310000 -00:09:03 | Processed Slot: 1341 | Confirmed Slot: 1341 | Finalized Slot: 1309 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎499.993310000 -00:09:03 | Processed Slot: 1342 | Confirmed Slot: 1342 | Finalized Slot: 1310 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎499.993305000 -00:09:04 | Processed Slot: 1343 | Confirmed Slot: 1343 | Finalized Slot: 1311 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎499.993300000 -00:09:04 | Processed Slot: 1343 | Confirmed Slot: 1343 | Finalized Slot: 1311 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎499.993300000 -00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 -00:09:04 | Processed Slot: 1344 | Confirmed Slot: 1344 | Finalized Slot: 1312 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎499.993295000 -00:09:05 | Processed Slot: 1345 | Confirmed Slot: 1345 | Finalized Slot: 1313 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎499.993290000 -00:09:05 | Processed Slot: 1346 | Confirmed Slot: 1346 | Finalized Slot: 1314 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎499.993285000 -00:09:05 | Processed Slot: 1346 | Confirmed Slot: 1346 | Finalized Slot: 1314 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎499.993285000 -00:09:05 | Processed Slot: 1347 | Confirmed Slot: 1347 | Finalized Slot: 1315 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎499.993280000 -00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 -00:09:06 | Processed Slot: 1348 | Confirmed Slot: 1348 | Finalized Slot: 1316 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎499.993275000 -00:09:06 | Processed Slot: 1349 | Confirmed Slot: 1349 | Finalized Slot: 1317 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎499.993270000 -00:09:06 | Processed Slot: 1349 | Confirmed Slot: 1349 | Finalized Slot: 1317 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎499.993270000 -00:09:07 | Processed Slot: 1350 | Confirmed Slot: 1350 | Finalized Slot: 1318 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎499.993265000 -00:09:07 | Processed Slot: 1351 | Confirmed Slot: 1351 | Finalized Slot: 1319 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎499.993260000 -00:09:07 | Processed Slot: 1351 | Confirmed Slot: 1351 | Finalized Slot: 1319 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎499.993260000 -00:09:07 | Processed Slot: 1352 | Confirmed Slot: 1352 | Finalized Slot: 1320 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎499.993255000 -00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 -00:09:08 | Processed Slot: 1353 | Confirmed Slot: 1353 | Finalized Slot: 1321 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎499.993250000 -00:09:08 | Processed Slot: 1354 | Confirmed Slot: 1354 | Finalized Slot: 1322 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎499.993245000 -00:09:08 | Processed Slot: 1354 | Confirmed Slot: 1354 | Finalized Slot: 1322 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎499.993245000 -00:09:09 | Processed Slot: 1355 | Confirmed Slot: 1355 | Finalized Slot: 1323 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎499.993240000 -00:09:09 | Processed Slot: 1356 | Confirmed Slot: 1356 | Finalized Slot: 1324 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎499.993235000 -00:09:09 | Processed Slot: 1356 | Confirmed Slot: 1356 | Finalized Slot: 1324 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎499.993235000 -00:09:09 | Processed Slot: 1357 | Confirmed Slot: 1357 | Finalized Slot: 1325 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎499.993230000 -00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1357 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993230000 -00:09:10 | Processed Slot: 1358 | Confirmed Slot: 1358 | Finalized Slot: 1326 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎499.993225000 -00:09:10 | Processed Slot: 1359 | Confirmed Slot: 1359 | Finalized Slot: 1327 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎499.993220000 -00:09:10 | Processed Slot: 1359 | Confirmed Slot: 1359 | Finalized Slot: 1327 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎499.993220000 -00:09:11 | Processed Slot: 1360 | Confirmed Slot: 1360 | Finalized Slot: 1328 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎499.993215000 -00:09:11 | Processed Slot: 1361 | Confirmed Slot: 1361 | Finalized Slot: 1329 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎499.993210000 -00:09:11 | Processed Slot: 1361 | Confirmed Slot: 1361 | Finalized Slot: 1329 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎499.993210000 -00:09:11 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 -00:09:12 | Processed Slot: 1362 | Confirmed Slot: 1362 | Finalized Slot: 1330 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎499.993205000 -00:09:12 | Processed Slot: 1363 | Confirmed Slot: 1363 | Finalized Slot: 1331 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎499.993200000 -00:09:12 | Processed Slot: 1364 | Confirmed Slot: 1364 | Finalized Slot: 1332 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1367 | ◎499.993195000 -00:09:12 | Processed Slot: 1364 | Confirmed Slot: 1364 | Finalized Slot: 1332 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1367 | ◎499.993195000 -00:09:13 | Processed Slot: 1365 | Confirmed Slot: 1365 | Finalized Slot: 1333 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1368 | ◎499.993190000 -00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 -00:09:13 | Processed Slot: 1366 | Confirmed Slot: 1366 | Finalized Slot: 1334 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1369 | ◎499.993185000 -00:09:13 | Processed Slot: 1367 | Confirmed Slot: 1367 | Finalized Slot: 1335 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1370 | ◎499.993180000 -00:09:14 | Processed Slot: 1367 | Confirmed Slot: 1367 | Finalized Slot: 1335 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1370 | ◎499.993180000 -00:09:14 | Processed Slot: 1368 | Confirmed Slot: 1368 | Finalized Slot: 1336 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1371 | ◎499.993175000 -00:09:14 | Processed Slot: 1369 | Confirmed Slot: 1369 | Finalized Slot: 1337 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1372 | ◎499.993170000 -00:09:14 | Processed Slot: 1369 | Confirmed Slot: 1369 | Finalized Slot: 1337 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1372 | ◎499.993170000 -00:09:15 | Processed Slot: 1370 | Confirmed Slot: 1370 | Finalized Slot: 1338 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1373 | ◎499.993165000 -00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 -00:09:15 | Processed Slot: 1371 | Confirmed Slot: 1371 | Finalized Slot: 1339 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1374 | ◎499.993160000 -00:09:15 | Processed Slot: 1372 | Confirmed Slot: 1372 | Finalized Slot: 1340 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1375 | ◎499.993155000 -00:09:16 | Processed Slot: 1372 | Confirmed Slot: 1372 | Finalized Slot: 1340 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1375 | ◎499.993155000 -00:09:16 | Processed Slot: 1373 | Confirmed Slot: 1373 | Finalized Slot: 1341 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎499.993150000 -00:09:16 | Processed Slot: 1374 | Confirmed Slot: 1374 | Finalized Slot: 1342 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎499.993145000 -00:09:16 | Processed Slot: 1374 | Confirmed Slot: 1374 | Finalized Slot: 1342 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎499.993145000 -00:09:17 | Processed Slot: 1375 | Confirmed Slot: 1375 | Finalized Slot: 1343 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎499.993140000 -00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1375 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993140000 -00:09:17 | Processed Slot: 1376 | Confirmed Slot: 1376 | Finalized Slot: 1344 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎499.993135000 -00:09:17 | Processed Slot: 1377 | Confirmed Slot: 1377 | Finalized Slot: 1345 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎499.993130000 -00:09:18 | Processed Slot: 1377 | Confirmed Slot: 1377 | Finalized Slot: 1345 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎499.993130000 -00:09:18 | Processed Slot: 1378 | Confirmed Slot: 1378 | Finalized Slot: 1346 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎499.993125000 -00:09:18 | Processed Slot: 1379 | Confirmed Slot: 1379 | Finalized Slot: 1347 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎499.993120000 -00:09:18 | Processed Slot: 1379 | Confirmed Slot: 1379 | Finalized Slot: 1347 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎499.993120000 -00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 -00:09:19 | Processed Slot: 1380 | Confirmed Slot: 1380 | Finalized Slot: 1348 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎499.993115000 -00:09:19 | Processed Slot: 1381 | Confirmed Slot: 1381 | Finalized Slot: 1349 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1384 | ◎499.993110000 -00:09:19 | Processed Slot: 1382 | Confirmed Slot: 1382 | Finalized Slot: 1350 | Full Snapshot Slot: 1300 | Incremental Snapshot Slot: - | Transactions: 1385 | ◎499.993105000 diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log deleted file mode 100644 index da58005a3..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-03 06:33:06.086 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:06.191 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC -2023-08-03 06:33:06.204 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-03 06:33:06.888 UTC [48] LOG: received fast shutdown request -.2023-08-03 06:33:06.889 UTC [48] LOG: aborting any active transactions -2023-08-03 06:33:06.891 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 06:33:06.891 UTC [50] LOG: shutting down -2023-08-03 06:33:06.981 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 06:33:06.997 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 06:33:06.997 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 06:33:06.999 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:07.077 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:06 UTC -2023-08-03 06:33:07.081 UTC [1] LOG: database system is ready to accept connections -2023-08-03 06:33:07.586 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 06:33:08.782 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 06:33:08.782 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 06:33:08.782 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 06:33:08.782 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 06:33:08.782 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 06:33:08.782 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log deleted file mode 100644 index c6a654dcc..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_0/node.log +++ /dev/null @@ -1,581 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T06:33:08.678Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.678Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.678Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:08.679Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} -{"level":"debug","ts":"2023-08-03T06:33:08.774Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.774Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.774Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"ecb7718f-7ce6-4595-b06b-86a4ee07a613"} -{"level":"debug","ts":"2023-08-03T06:33:08.779Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"ecb7718f-7ce6-4595-b06b-86a4ee07a613"} -{"level":"debug","ts":"2023-08-03T06:33:08.782Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} -2023/08/03 06:33:09 OK 0001_initial.sql -2023/08/03 06:33:09 OK 0002_gormv2.sql -2023/08/03 06:33:09 OK 0003_eth_logs_table.sql -2023/08/03 06:33:09 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 06:33:09 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 06:33:09 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 06:33:09 OK 0007_reverse_eth_logs_table.sql -2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql -2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 06:33:09 OK 0010_bridge_fk.sql -2023/08/03 06:33:09 OK 0011_latest_round_requested.sql -2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql -2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql -2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql -2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 06:33:09 OK 0018_add_node_version_table.sql -2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 06:33:09 OK 0020_remove_result_task.sql -2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql -2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql -2023/08/03 06:33:09 OK 0025_create_log_config_table.sql -2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql -2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 06:33:09 OK 0028_vrf_v2.sql -2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql -2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql -2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql -2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql -2023/08/03 06:33:09 OK 0036_external_job_id.go -2023/08/03 06:33:09 OK 0037_cascade_deletes.sql -2023/08/03 06:33:09 OK 0038_create_csa_keys.sql -2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql -2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql -2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql -2023/08/03 06:33:09 OK 0042_create_job_proposals.sql -2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go -2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 06:33:09 OK 0056_multichain.go -2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql -2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql -2023/08/03 06:33:09 OK 0061_multichain_relations.sql -2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql -2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql -2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql -2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql -2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql -2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql -2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql -2023/08/03 06:33:09 OK 0075_unique_job_names.sql -2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql -2023/08/03 06:33:09 OK 0078_only_one_version.sql -2023/08/03 06:33:09 OK 0079_vrf_v2_fields.sql -2023/08/03 06:33:09 OK 0080_drop_unused_cols.sql -2023/08/03 06:33:09 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 06:33:09 OK 0082_lease_lock.sql -2023/08/03 06:33:09 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 06:33:09 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 06:33:09 OK 0085_requested_confs_delay.sql -2023/08/03 06:33:09 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 06:33:09 OK 0087_ocr2_tables.sql -2023/08/03 06:33:09 OK 0088_vrfv2_request_timeout.sql -2023/08/03 06:33:09 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 06:33:09 OK 0090_ocr_new_timeouts.sql -2023/08/03 06:33:09 OK 0091_ocr2_relay.sql -2023/08/03 06:33:09 OK 0092_bptxm_tx_checkers.sql -2023/08/03 06:33:09 OK 0093_terra_txm.sql -2023/08/03 06:33:09 OK 0094_blockhash_store_job.sql -2023/08/03 06:33:09 OK 0095_terra_fcd.sql -2023/08/03 06:33:09 OK 0096_create_job_proposal_specs.sql -2023/08/03 06:33:09 OK 0097_bootstrap_spec.sql -2023/08/03 06:33:09 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 06:33:09 OK 0099_terra_msgs_created_at.sql -2023/08/03 06:33:09 OK 0100_bootstrap_config.sql -2023/08/03 06:33:09 OK 0101_generic_ocr2.sql -2023/08/03 06:33:09 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 06:33:09 OK 0103_terra_msgs_type_url.sql -2023/08/03 06:33:09 OK 0104_terra_cascade_delete.sql -2023/08/03 06:33:09 OK 0105_create_forwarder_addresses.sql -2023/08/03 06:33:10 OK 0106_evm_node_uniqueness.sql -2023/08/03 06:33:10 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 06:33:10 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 06:33:10 OK 0109_solana_chains_nodes.sql -2023/08/03 06:33:10 OK 0110_add_vrf_chunk_size.sql -2023/08/03 06:33:10 OK 0111_terra_msgs_state_started.sql -2023/08/03 06:33:10 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 06:33:10 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 06:33:10 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 06:33:10 OK 0115_log_poller.sql -2023/08/03 06:33:10 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 06:33:10 OK 0117_add_log_poller_idx.sql -2023/08/03 06:33:10 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 06:33:10 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 06:33:10 OK 0120_log_poller_data_idx.sql -2023/08/03 06:33:10 OK 0121_remove_log_configs.sql -2023/08/03 06:33:10 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 06:33:10 OK 0123_terra_idx_simplify.sql -2023/08/03 06:33:10 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 06:33:10 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 06:33:10 OK 0126_remove_observation_source.sql -2023/08/03 06:33:10 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 06:33:10 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 06:33:10 OK 0129_add_job_gas_limit.sql -2023/08/03 06:33:10 OK 0130_starknet_chains_nodes.sql -2023/08/03 06:33:10 OK 0131_add_multi_user.sql -2023/08/03 06:33:10 OK 0132_log_index_uniqueness.sql -2023/08/03 06:33:10 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 06:33:10 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 06:33:10 OK 0135_tx_index_not_null.sql -2023/08/03 06:33:10 OK 0136_add_job_allow_forwarding.sql -2023/08/03 06:33:10 OK 0137_remove_tx_index.sql -2023/08/03 06:33:10 OK 0138_rename_allowforwarding_field.sql -2023/08/03 06:33:10 OK 0139_multi_chain_keys.sql -2023/08/03 06:33:10 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 06:33:10 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 06:33:10 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 06:33:10 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 06:33:10 OK 0144_optimize_lp.sql -2023/08/03 06:33:10 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 06:33:10 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 06:33:10 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 06:33:10 OK 0148_dkg_shares.sql -2023/08/03 06:33:10 OK 0149_bridge_last_good_value.sql -2023/08/03 06:33:10 OK 0150_gaslaneprice_vrf.sql -2023/08/03 06:33:10 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 06:33:10 OK 0152_ocr2_multichain.sql -2023/08/03 06:33:10 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 06:33:10 OK 0154_ocr2dr_requests_table.sql -2023/08/03 06:33:10 OK 0155_remove_terra.sql -2023/08/03 06:33:10 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 06:33:10 OK 0157_add_log_poller_filters_table.sql -2023/08/03 06:33:10 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 06:33:10 OK 0159_add_name_to_job_proposals.sql -2023/08/03 06:33:10 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 06:33:10 OK 0161_update_job_proposal_status.sql -2023/08/03 06:33:10 OK 0162_logpoller_block_timestamps.sql -2023/08/03 06:33:10 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 06:33:10 OK 0164_add_cosmos.sql -2023/08/03 06:33:10 OK 0165_update_job_proposal_constraints.sql -2023/08/03 06:33:10 OK 0166_block_header_feeder_job.sql -2023/08/03 06:33:10 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 06:33:10 OK 0168_drop_node_tables.sql -2023/08/03 06:33:10 OK 0169_log_poller_pruning.sql -2023/08/03 06:33:10 OK 0170_gateway_job_spec.sql -2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql -2023/08/03 06:33:10 OK 0174_vrf_owner.sql -2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql -2023/08/03 06:33:10 OK 0176_s4_shared_table.sql -2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql -2023/08/03 06:33:10 OK 0178_drop_access_list.sql -2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql -2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql -2023/08/03 06:33:10 OK 0183_functions_new_fields.sql -2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql -2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 06:33:10 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.492Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:14.981Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 77de4f57adcff2818ded1018c04ab3abfed7d8acadc2dac014d88aa286e69194 for chain type solana","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:14.981Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:17.281Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 9rQgSqAk3yPZ9RwxgRyxkwXYFuUBmfZzvqCbyArTNoAj","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:19.379Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 85c1fcb353e38648d73de6ac5ce0cb90e93dcb64cdd425d20955b711f0d94a87","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.791Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.985Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.985Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T06:33:21.986Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T06:33:21.986Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T06:33:21.986Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} -{"level":"debug","ts":"2023-08-03T06:33:21.986Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} -{"level":"warn","ts":"2023-08-03T06:33:21.986Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} -{"level":"warn","ts":"2023-08-03T06:33:21.987Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 37873. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":37873} -{"level":"debug","ts":"2023-08-03T06:33:21.987Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":37873,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T06:33:21.988Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","id":"PeerV1","v1peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/37873","v1listenPort":37873} -{"level":"debug","ts":"2023-08-03T06:33:21.988Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG Counter:0 Addrs:[10.14.91.55:6690 127.0.0.1:6690] Sig:wIJ9lg/sTIoQQ8nsuKLqEe/ntEqge7/3mbDLwSit/fgUDaKHAYeg2tIJq3p4MJsSkGNgzuKJSTaPco/9cRXVBQ==}","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:33:21.989Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"recvLoop"} -{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:33:21.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:21.991Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T06:33:21.991Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.991Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.32s","version":"2.4.0@114e039","appID":"ecb7718f-7ce6-4595-b06b-86a4ee07a613"} -{"level":"debug","ts":"2023-08-03T06:33:21.991Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000670753} -{"level":"info","ts":"2023-08-03T06:33:21.999Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T06:33:22.002Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.011041446} -{"level":"debug","ts":"2023-08-03T06:33:22.002Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.088Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.734531ms"} -{"level":"debug","ts":"2023-08-03T06:33:23.089Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:23","latency":"213.903µs"} -{"level":"debug","ts":"2023-08-03T06:33:26.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:27.164Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"warn","ts":"2023-08-03T06:33:27.167Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:28","latency":"132.618µs"} -{"level":"debug","ts":"2023-08-03T06:33:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:28","latency":"132.362µs"} -{"level":"debug","ts":"2023-08-03T06:33:31.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:33:31.989Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peersDetected":0,"id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} -{"level":"debug","ts":"2023-08-03T06:33:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:33","latency":"99.773µs"} -{"level":"debug","ts":"2023-08-03T06:33:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:33","latency":"98.713µs"} -{"level":"debug","ts":"2023-08-03T06:33:36.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:38","latency":"92.029µs"} -{"level":"debug","ts":"2023-08-03T06:33:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:38","latency":"104.573µs"} -{"level":"debug","ts":"2023-08-03T06:33:41.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:43","latency":"106.963µs"} -{"level":"debug","ts":"2023-08-03T06:33:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:43","latency":"107.069µs"} -{"level":"debug","ts":"2023-08-03T06:33:46.991Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:48","latency":"138.197µs"} -{"level":"debug","ts":"2023-08-03T06:33:48.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:48","latency":"169.052µs"} -{"level":"debug","ts":"2023-08-03T06:33:51.992Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:53","latency":"120.064µs"} -{"level":"debug","ts":"2023-08-03T06:33:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:53","latency":"121.153µs"} -{"level":"debug","ts":"2023-08-03T06:33:56.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:58","latency":"99.412µs"} -{"level":"debug","ts":"2023-08-03T06:33:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:33:58","latency":"113.396µs"} -{"level":"debug","ts":"2023-08-03T06:34:01.993Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:03.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:03","latency":"75.965µs"} -{"level":"debug","ts":"2023-08-03T06:34:03.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:03","latency":"114.511µs"} -{"level":"debug","ts":"2023-08-03T06:34:03.802Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:34:03.804Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T06:34:03.897Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T06:34:03.899Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:03","latency":"96.544336ms"} -{"level":"debug","ts":"2023-08-03T06:34:06.994Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:07.016Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:07","latency":"9.577919ms"} -{"level":"debug","ts":"2023-08-03T06:34:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:08","latency":"107.616µs"} -{"level":"debug","ts":"2023-08-03T06:34:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:08","latency":"92.426µs"} -{"level":"debug","ts":"2023-08-03T06:34:09.400Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:09","latency":"2.1738989s"} -{"level":"debug","ts":"2023-08-03T06:34:11.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:13.003Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:13","latency":"3.392089912s"} -{"level":"debug","ts":"2023-08-03T06:34:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:13","latency":"96.442µs"} -{"level":"debug","ts":"2023-08-03T06:34:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:13","latency":"104.31µs"} -{"level":"debug","ts":"2023-08-03T06:34:16.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:18","latency":"90.345µs"} -{"level":"debug","ts":"2023-08-03T06:34:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:18","latency":"92.164µs"} -{"level":"debug","ts":"2023-08-03T06:34:21.995Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:23","latency":"85.858µs"} -{"level":"debug","ts":"2023-08-03T06:34:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:23","latency":"132.354µs"} -{"level":"debug","ts":"2023-08-03T06:34:26.996Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:28","latency":"96.516µs"} -{"level":"debug","ts":"2023-08-03T06:34:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:28","latency":"89.206µs"} -{"level":"debug","ts":"2023-08-03T06:34:31.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:33","latency":"95.281µs"} -{"level":"debug","ts":"2023-08-03T06:34:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:33","latency":"132.419µs"} -{"level":"debug","ts":"2023-08-03T06:34:36.997Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:38","latency":"98.94µs"} -{"level":"debug","ts":"2023-08-03T06:34:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:38","latency":"93.505µs"} -{"level":"debug","ts":"2023-08-03T06:34:41.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:43","latency":"120.94µs"} -{"level":"debug","ts":"2023-08-03T06:34:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:43","latency":"124.896µs"} -{"level":"debug","ts":"2023-08-03T06:34:46.998Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:48","latency":"93.452µs"} -{"level":"debug","ts":"2023-08-03T06:34:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:48","latency":"94.966µs"} -{"level":"debug","ts":"2023-08-03T06:34:51.999Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:53","latency":"146.246µs"} -{"level":"debug","ts":"2023-08-03T06:34:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:53","latency":"157.773µs"} -{"level":"debug","ts":"2023-08-03T06:34:57.000Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:58","latency":"88.374µs"} -{"level":"debug","ts":"2023-08-03T06:34:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:34:58","latency":"109.532µs"} -{"level":"debug","ts":"2023-08-03T06:35:02.001Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:03","latency":"97.282µs"} -{"level":"debug","ts":"2023-08-03T06:35:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:03","latency":"92.363µs"} -{"level":"debug","ts":"2023-08-03T06:35:07.002Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:08","latency":"93.848µs"} -{"level":"debug","ts":"2023-08-03T06:35:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:08","latency":"101.373µs"} -{"level":"debug","ts":"2023-08-03T06:35:12.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:13","latency":"106.652µs"} -{"level":"debug","ts":"2023-08-03T06:35:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:13","latency":"116.369µs"} -{"level":"debug","ts":"2023-08-03T06:35:17.003Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:18","latency":"95.709µs"} -{"level":"debug","ts":"2023-08-03T06:35:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:18","latency":"106.613µs"} -{"level":"debug","ts":"2023-08-03T06:35:22.004Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:23","latency":"89.203µs"} -{"level":"debug","ts":"2023-08-03T06:35:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:23","latency":"90.534µs"} -{"level":"debug","ts":"2023-08-03T06:35:27.005Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:28","latency":"98.981µs"} -{"level":"debug","ts":"2023-08-03T06:35:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:28","latency":"101.743µs"} -{"level":"debug","ts":"2023-08-03T06:35:32.005Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:33","latency":"87.987µs"} -{"level":"debug","ts":"2023-08-03T06:35:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:33","latency":"88.734µs"} -{"level":"debug","ts":"2023-08-03T06:35:37.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:38","latency":"91.234µs"} -{"level":"debug","ts":"2023-08-03T06:35:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:38","latency":"93.206µs"} -{"level":"debug","ts":"2023-08-03T06:35:42.006Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:35:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:43","latency":"93.621µs"} -{"level":"debug","ts":"2023-08-03T06:35:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:43","latency":"96.263µs"} -{"level":"debug","ts":"2023-08-03T06:35:47.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:48","latency":"88.756µs"} -{"level":"debug","ts":"2023-08-03T06:35:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:48","latency":"104.213µs"} -{"level":"debug","ts":"2023-08-03T06:35:52.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:53","latency":"128.708µs"} -{"level":"debug","ts":"2023-08-03T06:35:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:53","latency":"123.861µs"} -{"level":"debug","ts":"2023-08-03T06:35:57.007Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:58","latency":"98.055µs"} -{"level":"debug","ts":"2023-08-03T06:35:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:35:58","latency":"112.15µs"} -{"level":"debug","ts":"2023-08-03T06:36:02.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:03","latency":"101.063µs"} -{"level":"debug","ts":"2023-08-03T06:36:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:03","latency":"95.385µs"} -{"level":"debug","ts":"2023-08-03T06:36:07.008Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:08","latency":"117.979µs"} -{"level":"debug","ts":"2023-08-03T06:36:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:08","latency":"108.971µs"} -{"level":"debug","ts":"2023-08-03T06:36:12.009Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:13","latency":"96.427µs"} -{"level":"debug","ts":"2023-08-03T06:36:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:13","latency":"79.177µs"} -{"level":"debug","ts":"2023-08-03T06:36:17.010Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:18","latency":"91.021µs"} -{"level":"debug","ts":"2023-08-03T06:36:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:18","latency":"109.614µs"} -{"level":"debug","ts":"2023-08-03T06:36:22.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:23","latency":"99.044µs"} -{"level":"debug","ts":"2023-08-03T06:36:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:23","latency":"75.362µs"} -{"level":"debug","ts":"2023-08-03T06:36:27.011Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:28","latency":"87.21µs"} -{"level":"debug","ts":"2023-08-03T06:36:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:28","latency":"109.247µs"} -{"level":"debug","ts":"2023-08-03T06:36:32.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:36:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:33","latency":"94.57µs"} -{"level":"debug","ts":"2023-08-03T06:36:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:33","latency":"71.43µs"} -{"level":"debug","ts":"2023-08-03T06:36:37.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:38","latency":"98.241µs"} -{"level":"debug","ts":"2023-08-03T06:36:38.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:38","latency":"108.978µs"} -{"level":"debug","ts":"2023-08-03T06:36:42.012Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:43","latency":"87.598µs"} -{"level":"debug","ts":"2023-08-03T06:36:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:43","latency":"91.183µs"} -{"level":"debug","ts":"2023-08-03T06:36:47.013Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:36:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:48","latency":"96.755µs"} -{"level":"debug","ts":"2023-08-03T06:36:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:48","latency":"98.867µs"} -{"level":"debug","ts":"2023-08-03T06:36:52.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:53","latency":"98.186µs"} -{"level":"debug","ts":"2023-08-03T06:36:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:53","latency":"96.243µs"} -{"level":"debug","ts":"2023-08-03T06:36:57.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:36:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:58","latency":"98.324µs"} -{"level":"debug","ts":"2023-08-03T06:36:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:36:58","latency":"96.134µs"} -{"level":"debug","ts":"2023-08-03T06:37:02.014Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:37:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:03","latency":"124.57µs"} -{"level":"debug","ts":"2023-08-03T06:37:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:03","latency":"101.417µs"} -{"level":"debug","ts":"2023-08-03T06:37:07.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:08","latency":"93.488µs"} -{"level":"debug","ts":"2023-08-03T06:37:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:08","latency":"111.235µs"} -{"level":"debug","ts":"2023-08-03T06:37:12.015Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:13","latency":"115.818µs"} -{"level":"debug","ts":"2023-08-03T06:37:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:13","latency":"127.348µs"} -{"level":"debug","ts":"2023-08-03T06:37:17.016Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:18","latency":"107.598µs"} -{"level":"debug","ts":"2023-08-03T06:37:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:18","latency":"90.104µs"} -{"level":"debug","ts":"2023-08-03T06:37:22.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:23","latency":"92.164µs"} -{"level":"debug","ts":"2023-08-03T06:37:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:23","latency":"85.192µs"} -{"level":"debug","ts":"2023-08-03T06:37:27.017Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:28","latency":"97.235µs"} -{"level":"debug","ts":"2023-08-03T06:37:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:28","latency":"104.472µs"} -{"level":"debug","ts":"2023-08-03T06:37:32.018Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:33","latency":"94.819µs"} -{"level":"debug","ts":"2023-08-03T06:37:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:33","latency":"97.212µs"} -{"level":"debug","ts":"2023-08-03T06:37:37.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:37:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:38","latency":"94.858µs"} -{"level":"debug","ts":"2023-08-03T06:37:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:38","latency":"94.115µs"} -{"level":"debug","ts":"2023-08-03T06:37:42.019Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:43","latency":"91.491µs"} -{"level":"debug","ts":"2023-08-03T06:37:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:43","latency":"101.727µs"} -{"level":"debug","ts":"2023-08-03T06:37:47.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:37:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:48","latency":"103.022µs"} -{"level":"debug","ts":"2023-08-03T06:37:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:48","latency":"108.146µs"} -{"level":"debug","ts":"2023-08-03T06:37:52.020Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:53","latency":"86.172µs"} -{"level":"debug","ts":"2023-08-03T06:37:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:53","latency":"91.352µs"} -{"level":"debug","ts":"2023-08-03T06:37:57.021Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:58","latency":"96.733µs"} -{"level":"debug","ts":"2023-08-03T06:37:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:37:58","latency":"118.801µs"} -{"level":"debug","ts":"2023-08-03T06:38:02.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:03","latency":"92.032µs"} -{"level":"debug","ts":"2023-08-03T06:38:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:03","latency":"102.392µs"} -{"level":"debug","ts":"2023-08-03T06:38:07.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:08","latency":"89.911µs"} -{"level":"debug","ts":"2023-08-03T06:38:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:08","latency":"71.417µs"} -{"level":"debug","ts":"2023-08-03T06:38:12.022Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:13","latency":"112.791µs"} -{"level":"debug","ts":"2023-08-03T06:38:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:13","latency":"74.737µs"} -{"level":"debug","ts":"2023-08-03T06:38:17.023Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:38:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:18","latency":"97.541µs"} -{"level":"debug","ts":"2023-08-03T06:38:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:18","latency":"97.801µs"} -{"level":"debug","ts":"2023-08-03T06:38:22.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:38:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:23","latency":"88.871µs"} -{"level":"debug","ts":"2023-08-03T06:38:23.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:23","latency":"114.408µs"} -{"level":"debug","ts":"2023-08-03T06:38:27.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:28","latency":"107.195µs"} -{"level":"debug","ts":"2023-08-03T06:38:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:28","latency":"103.503µs"} -{"level":"info","ts":"2023-08-03T06:38:31.990Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0} -{"level":"debug","ts":"2023-08-03T06:38:32.024Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:38:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:33","latency":"117.435µs"} -{"level":"debug","ts":"2023-08-03T06:38:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:33","latency":"119.761µs"} -{"level":"debug","ts":"2023-08-03T06:38:37.025Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:38","latency":"97.591µs"} -{"level":"debug","ts":"2023-08-03T06:38:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:38","latency":"78.197µs"} -{"level":"debug","ts":"2023-08-03T06:38:42.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:43.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:43","latency":"110.301µs"} -{"level":"debug","ts":"2023-08-03T06:38:43.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:43","latency":"106.21µs"} -{"level":"debug","ts":"2023-08-03T06:38:47.026Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:38:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:48","latency":"95.726µs"} -{"level":"debug","ts":"2023-08-03T06:38:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:48","latency":"106.431µs"} -{"level":"debug","ts":"2023-08-03T06:38:52.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:53","latency":"98.164µs"} -{"level":"debug","ts":"2023-08-03T06:38:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:53","latency":"102.922µs"} -{"level":"debug","ts":"2023-08-03T06:38:57.027Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:38:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:58","latency":"98.875µs"} -{"level":"debug","ts":"2023-08-03T06:38:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:38:58","latency":"92.697µs"} -{"level":"debug","ts":"2023-08-03T06:39:02.028Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:03","latency":"97.146µs"} -{"level":"debug","ts":"2023-08-03T06:39:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:03","latency":"105.266µs"} -{"level":"debug","ts":"2023-08-03T06:39:07.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:08","latency":"78.126µs"} -{"level":"debug","ts":"2023-08-03T06:39:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:08","latency":"90.728µs"} -{"level":"debug","ts":"2023-08-03T06:39:12.029Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:13","latency":"94.983µs"} -{"level":"debug","ts":"2023-08-03T06:39:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:13","latency":"100.709µs"} -{"level":"debug","ts":"2023-08-03T06:39:17.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:18","latency":"108.914µs"} -{"level":"debug","ts":"2023-08-03T06:39:18.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:18","latency":"81.355µs"} -{"level":"debug","ts":"2023-08-03T06:39:22.030Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:23.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:23","latency":"103.086µs"} -{"level":"debug","ts":"2023-08-03T06:39:23.088Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:23","latency":"107.321µs"} -{"level":"debug","ts":"2023-08-03T06:39:27.031Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:28","latency":"91.703µs"} -{"level":"debug","ts":"2023-08-03T06:39:28.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:28","latency":"92.642µs"} -{"level":"debug","ts":"2023-08-03T06:39:32.032Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:39:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:33","latency":"91.725µs"} -{"level":"debug","ts":"2023-08-03T06:39:33.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:33","latency":"95.698µs"} -{"level":"debug","ts":"2023-08-03T06:39:37.033Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:38","latency":"92.809µs"} -{"level":"debug","ts":"2023-08-03T06:39:38.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:38","latency":"92.196µs"} -{"level":"debug","ts":"2023-08-03T06:39:42.033Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:43","latency":"96.546µs"} -{"level":"debug","ts":"2023-08-03T06:39:43.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:43","latency":"93.38µs"} -{"level":"debug","ts":"2023-08-03T06:39:47.034Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:48","latency":"99.43µs"} -{"level":"debug","ts":"2023-08-03T06:39:48.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:48","latency":"74.493µs"} -{"level":"debug","ts":"2023-08-03T06:39:52.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:39:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:53","latency":"96.805µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:53","latency":"96.902µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.538Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:53","latency":"65.218µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.749Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:53","latency":"37.114µs"} -{"level":"debug","ts":"2023-08-03T06:39:57.035Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:57.352Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"1.889375ms"} -{"level":"debug","ts":"2023-08-03T06:39:57.567Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_85c1fcb3_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"3.809619ms"} -{"level":"debug","ts":"2023-08-03T06:39:57.783Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_85c1fcb3_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"3.052427ms"} -{"level":"debug","ts":"2023-08-03T06:39:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:58","latency":"96.024µs"} -{"level":"debug","ts":"2023-08-03T06:39:58.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:39:58","latency":"91.674µs"} -{"level":"info","ts":"2023-08-03T06:40:00.530Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"bootstrap","jobID":1} -{"level":"debug","ts":"2023-08-03T06:40:00.531Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"info","ts":"2023-08-03T06:40:00.531Z","caller":"ocrbootstrap/delegate.go:110","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:40:00.531Z","caller":"ocrbootstrap/delegate.go:127","msg":"Launching new bootstrap node","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","args":{"BootstrapperFactory":{"BinaryNetworkEndpointFactory":{},"BootstrapperFactory":{}},"V2Bootstrappers":null,"ContractConfigTracker":{},"Database":{},"LocalConfig":{"BlockchainTimeout":20000000000,"ContractConfigConfirmations":1,"SkipContractConfigConfirmations":false,"ContractConfigTrackerPollInterval":15000000000,"ContractTransmitterTransmitTimeout":10000000000,"DatabaseTimeout":10000000000,"MinOCR2MaxDurationQuery":0,"DevelopmentMode":""},"Logger":{},"MonitoringEndpoint":null,"OffchainConfigDigester":{"ProgramID":"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x","StateID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg"}}} -{"level":"debug","ts":"2023-08-03T06:40:00.531Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":2} -{"level":"debug","ts":"2023-08-03T06:40:00.531Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.532Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.532Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":2} -{"level":"info","ts":"2023-08-03T06:40:00.532Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"bootstrap","jobID":1} -{"level":"debug","ts":"2023-08-03T06:40:00.533Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.533Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:00.533Z","logger":"OCRBootstrap","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} -{"level":"info","ts":"2023-08-03T06:40:00.533Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} -{"level":"debug","ts":"2023-08-03T06:40:00.533Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"bootstrap\\\"\\nname = \\\"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c\\\"\\nforwardingAllowed = false\\n\\n\\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\n\\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"9.493301ms"} -{"level":"debug","ts":"2023-08-03T06:40:00.534Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} -{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.534Z","logger":"OCRBootstrap","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":"","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":null,"id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ragedisco/v1","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ragedisco/v1","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamName":"ragedisco/v1","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:00.535Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"]} -{"level":"info","ts":"2023-08-03T06:40:00.538Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","loaded":[],"numLoaded":0,"queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"numQueried":4,"_id":"discoveryProtocol","id":"ragep2p","found":[],"numFound":0} -{"level":"info","ts":"2023-08-03T06:40:00.538Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:46","msg":"BootstrapperV2: Initialized","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","bootstrappers":null,"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"_id":"bootstrapperV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2"} -{"level":"info","ts":"2023-08-03T06:40:00.538Z","logger":"SingletonPeerWrapper","caller":"networking/bootstrapper_v2.go:81","msg":"BootstrapperV2: Started listening","version":"2.4.0@114e039","_id":"bootstrapperV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:40:01.566Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.567Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.036Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:02.566Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.568Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:03","latency":"101.075µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:03","latency":"98.996µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.646Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.648Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:04.596Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.21.114:48222","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","direction":"in"} -{"level":"info","ts":"2023-08-03T06:40:04.596Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamName":"ragedisco/v1","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2"} -{"level":"info","ts":"2023-08-03T06:40:04.597Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:40:04.659Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.660Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.706Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.707Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:05.887Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"in","remoteAddr":"10.14.113.114:51454","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:05.888Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","streamName":"ragedisco/v1","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0"} -{"level":"info","ts":"2023-08-03T06:40:05.888Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} -{"level":"info","ts":"2023-08-03T06:40:06.561Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.63.201:59862","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","direction":"in"} -{"level":"info","ts":"2023-08-03T06:40:06.561Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","streamName":"ragedisco/v1","id":"ragep2p","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"info","ts":"2023-08-03T06:40:06.562Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}"} -{"level":"info","ts":"2023-08-03T06:40:06.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","direction":"in","remoteAddr":"10.14.3.137:42320"} -{"level":"info","ts":"2023-08-03T06:40:06.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ragedisco/v1","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8"} -{"level":"info","ts":"2023-08-03T06:40:06.622Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-03T06:40:06.765Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.766Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.037Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:07.797Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.799Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:08","latency":"97.174µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:08","latency":"92.395µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.851Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.852Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.928Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.929Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.015Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.016Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:12.085Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.086Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:13","latency":"114.49µs"} -{"level":"debug","ts":"2023-08-03T06:40:13.087Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.82.251","errors":"","servedAt":"2023-08-03 06:40:13","latency":"134.622µs"} -{"level":"debug","ts":"2023-08-03T06:40:13.139Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.140Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.165Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.167Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.187Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.188Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.535Z","logger":"OCRBootstrap","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-bootstrap-7ccecbff-523e-441d-9371-a7b1a54b197c","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","feedID":""} -{"level":"debug","ts":"2023-08-03T06:40:16.199Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.200Z","logger":"Solana.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log deleted file mode 100644 index fa7a42c1a..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - -waiting for server to start....2023-08-03 06:33:07.680 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:07.766 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:07 UTC -2023-08-03 06:33:07.771 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-03 06:33:08.385 UTC [48] LOG: received fast shutdown request -.2023-08-03 06:33:08.386 UTC [48] LOG: aborting any active transactions -2023-08-03 06:33:08.388 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 06:33:08.388 UTC [50] LOG: shutting down -2023-08-03 06:33:08.480 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 06:33:08.494 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 06:33:08.494 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 06:33:08.497 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:08.567 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:08 UTC -2023-08-03 06:33:08.571 UTC [1] LOG: database system is ready to accept connections -2023-08-03 06:33:09.395 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 06:33:10.566 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 06:33:10.566 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 06:33:10.566 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 06:33:10.566 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 06:33:10.567 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 06:33:10.567 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log deleted file mode 100644 index 531879058..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_1/node.log +++ /dev/null @@ -1,782 +0,0 @@ -0.0.0.0:5432 - no response -waiting for database to start -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.478Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} -{"level":"debug","ts":"2023-08-03T06:33:10.483Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.483Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.483Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"3326c91c-e231-405f-b69a-069aecb140d4"} -{"level":"debug","ts":"2023-08-03T06:33:10.489Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"3326c91c-e231-405f-b69a-069aecb140d4"} -{"level":"debug","ts":"2023-08-03T06:33:10.566Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} -2023/08/03 06:33:10 OK 0001_initial.sql -2023/08/03 06:33:10 OK 0002_gormv2.sql -2023/08/03 06:33:11 OK 0003_eth_logs_table.sql -2023/08/03 06:33:11 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 06:33:11 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 06:33:11 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 06:33:11 OK 0007_reverse_eth_logs_table.sql -2023/08/03 06:33:11 OK 0008_reapply_eth_logs_table.sql -2023/08/03 06:33:11 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 06:33:11 OK 0010_bridge_fk.sql -2023/08/03 06:33:11 OK 0011_latest_round_requested.sql -2023/08/03 06:33:11 OK 0012_change_jobs_to_numeric.sql -2023/08/03 06:33:11 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 06:33:11 OK 0014_add_keeper_tables.sql -2023/08/03 06:33:11 OK 0015_simplify_log_broadcaster.sql -2023/08/03 06:33:11 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 06:33:11 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 06:33:11 OK 0018_add_node_version_table.sql -2023/08/03 06:33:11 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 06:33:11 OK 0020_remove_result_task.sql -2023/08/03 06:33:11 OK 0021_add_job_id_topic_filter.sql -2023/08/03 06:33:11 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 06:33:11 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 06:33:11 OK 0024_add_cron_spec_tables.sql -2023/08/03 06:33:11 OK 0025_create_log_config_table.sql -2023/08/03 06:33:11 OK 0026_eth_tx_meta.sql -2023/08/03 06:33:11 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 06:33:11 OK 0028_vrf_v2.sql -2023/08/03 06:33:11 OK 0029_add_webhook_spec_tables.sql -2023/08/03 06:33:11 OK 0030_drop_keys_last_used.sql -2023/08/03 06:33:11 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 06:33:11 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 06:33:11 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 06:33:11 OK 0034_webhook_external_initiator.sql -2023/08/03 06:33:11 OK 0035_create_feeds_managers.sql -2023/08/03 06:33:11 OK 0036_external_job_id.go -2023/08/03 06:33:11 OK 0037_cascade_deletes.sql -2023/08/03 06:33:11 OK 0038_create_csa_keys.sql -2023/08/03 06:33:11 OK 0039_remove_fmv2_precision.sql -2023/08/03 06:33:11 OK 0040_heads_l1_block_number.sql -2023/08/03 06:33:11 OK 0041_eth_tx_strategies.sql -2023/08/03 06:33:11 OK 0042_create_job_proposals.sql -2023/08/03 06:33:11 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 06:33:11 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 06:33:11 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 06:33:11 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 06:33:11 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 06:33:11 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 06:33:11 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 06:33:11 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 06:33:11 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 06:33:11 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 06:33:11 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 06:33:11 OK 0054_remove_legacy_pipeline.go -2023/08/03 06:33:11 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 06:33:11 OK 0056_multichain.go -2023/08/03 06:33:11 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 06:33:11 OK 0058_direct_request_whitelist.sql -2023/08/03 06:33:11 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 06:33:11 OK 0060_combine_keys_tables.sql -2023/08/03 06:33:11 OK 0061_multichain_relations.sql -2023/08/03 06:33:11 OK 0062_upgrade_keepers.sql -2023/08/03 06:33:11 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 06:33:11 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 06:33:11 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 06:33:11 OK 0066_update_job_proposal_status.sql -2023/08/03 06:33:11 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 06:33:11 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 06:33:11 OK 0069_remove_unused_columns.sql -2023/08/03 06:33:11 OK 0070_dynamic_fee_txes.sql -2023/08/03 06:33:11 OK 0071_allow_null_json_serializable.sql -2023/08/03 06:33:11 OK 0072_drop_unused_tables.sql -2023/08/03 06:33:11 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 06:33:11 OK 0074_simulation_eth_tx.sql -2023/08/03 06:33:11 OK 0075_unique_job_names.sql -2023/08/03 06:33:11 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 06:33:11 OK 0077_add_webauthn_table.sql -2023/08/03 06:33:11 OK 0078_only_one_version.sql -2023/08/03 06:33:11 OK 0079_vrf_v2_fields.sql -2023/08/03 06:33:11 OK 0080_drop_unused_cols.sql -2023/08/03 06:33:11 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 06:33:11 OK 0082_lease_lock.sql -2023/08/03 06:33:11 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 06:33:11 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 06:33:11 OK 0085_requested_confs_delay.sql -2023/08/03 06:33:11 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 06:33:11 OK 0087_ocr2_tables.sql -2023/08/03 06:33:11 OK 0088_vrfv2_request_timeout.sql -2023/08/03 06:33:11 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 06:33:11 OK 0090_ocr_new_timeouts.sql -2023/08/03 06:33:11 OK 0091_ocr2_relay.sql -2023/08/03 06:33:11 OK 0092_bptxm_tx_checkers.sql -2023/08/03 06:33:11 OK 0093_terra_txm.sql -2023/08/03 06:33:11 OK 0094_blockhash_store_job.sql -2023/08/03 06:33:11 OK 0095_terra_fcd.sql -2023/08/03 06:33:11 OK 0096_create_job_proposal_specs.sql -2023/08/03 06:33:11 OK 0097_bootstrap_spec.sql -2023/08/03 06:33:11 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 06:33:11 OK 0099_terra_msgs_created_at.sql -2023/08/03 06:33:11 OK 0100_bootstrap_config.sql -2023/08/03 06:33:11 OK 0101_generic_ocr2.sql -2023/08/03 06:33:11 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 06:33:11 OK 0103_terra_msgs_type_url.sql -2023/08/03 06:33:11 OK 0104_terra_cascade_delete.sql -2023/08/03 06:33:11 OK 0105_create_forwarder_addresses.sql -2023/08/03 06:33:11 OK 0106_evm_node_uniqueness.sql -2023/08/03 06:33:11 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 06:33:11 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 06:33:11 OK 0109_solana_chains_nodes.sql -2023/08/03 06:33:11 OK 0110_add_vrf_chunk_size.sql -2023/08/03 06:33:11 OK 0111_terra_msgs_state_started.sql -2023/08/03 06:33:11 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 06:33:11 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 06:33:11 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 06:33:11 OK 0115_log_poller.sql -2023/08/03 06:33:11 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 06:33:11 OK 0117_add_log_poller_idx.sql -2023/08/03 06:33:11 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 06:33:11 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 06:33:11 OK 0120_log_poller_data_idx.sql -2023/08/03 06:33:11 OK 0121_remove_log_configs.sql -2023/08/03 06:33:11 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 06:33:11 OK 0123_terra_idx_simplify.sql -2023/08/03 06:33:11 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 06:33:11 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 06:33:11 OK 0126_remove_observation_source.sql -2023/08/03 06:33:11 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 06:33:11 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 06:33:11 OK 0129_add_job_gas_limit.sql -2023/08/03 06:33:11 OK 0130_starknet_chains_nodes.sql -2023/08/03 06:33:11 OK 0131_add_multi_user.sql -2023/08/03 06:33:11 OK 0132_log_index_uniqueness.sql -2023/08/03 06:33:11 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 06:33:11 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 06:33:11 OK 0135_tx_index_not_null.sql -2023/08/03 06:33:11 OK 0136_add_job_allow_forwarding.sql -2023/08/03 06:33:11 OK 0137_remove_tx_index.sql -2023/08/03 06:33:11 OK 0138_rename_allowforwarding_field.sql -2023/08/03 06:33:11 OK 0139_multi_chain_keys.sql -2023/08/03 06:33:11 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 06:33:11 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 06:33:11 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 06:33:11 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 06:33:12 OK 0144_optimize_lp.sql -2023/08/03 06:33:12 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 06:33:12 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 06:33:12 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 06:33:12 OK 0148_dkg_shares.sql -2023/08/03 06:33:12 OK 0149_bridge_last_good_value.sql -2023/08/03 06:33:12 OK 0150_gaslaneprice_vrf.sql -2023/08/03 06:33:12 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 06:33:12 OK 0152_ocr2_multichain.sql -2023/08/03 06:33:12 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 06:33:12 OK 0154_ocr2dr_requests_table.sql -2023/08/03 06:33:12 OK 0155_remove_terra.sql -2023/08/03 06:33:12 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 06:33:12 OK 0157_add_log_poller_filters_table.sql -2023/08/03 06:33:12 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 06:33:12 OK 0159_add_name_to_job_proposals.sql -2023/08/03 06:33:12 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 06:33:12 OK 0161_update_job_proposal_status.sql -2023/08/03 06:33:12 OK 0162_logpoller_block_timestamps.sql -2023/08/03 06:33:12 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 06:33:12 OK 0164_add_cosmos.sql -2023/08/03 06:33:12 OK 0165_update_job_proposal_constraints.sql -2023/08/03 06:33:12 OK 0166_block_header_feeder_job.sql -2023/08/03 06:33:12 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 06:33:12 OK 0168_drop_node_tables.sql -2023/08/03 06:33:12 OK 0169_log_poller_pruning.sql -2023/08/03 06:33:12 OK 0170_gateway_job_spec.sql -2023/08/03 06:33:12 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 06:33:12 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 06:33:12 OK 0173_add_s4_functions_table.sql -2023/08/03 06:33:12 OK 0174_vrf_owner.sql -2023/08/03 06:33:12 OK 0175_logpoller_querying_improvements.sql -2023/08/03 06:33:12 OK 0176_s4_shared_table.sql -2023/08/03 06:33:12 OK 0177_add_ocr_protocol_state.sql -2023/08/03 06:33:12 OK 0178_drop_access_list.sql -2023/08/03 06:33:12 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 06:33:12 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 06:33:12 OK 0181_bhs_vrfv2plus.sql -2023/08/03 06:33:12 OK 0182_nullable_feed_id.sql -2023/08/03 06:33:12 OK 0183_functions_new_fields.sql -2023/08/03 06:33:12 OK 0184_chains_tables_removal.sql -2023/08/03 06:33:12 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 06:33:12 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T06:33:12.299Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:12.300Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:16.776Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 56f474b241eadfdc5c2f3cf3a19c419dddd0edeefabc2cf46ff1cfedefad381e for chain type solana","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:16.776Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:18.997Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 57FNtDDDr6RKjVZT3aiQooZ7pRej5VXtuB2WcevJE5Pw","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.087Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID b73998f113c4b593c491cb372105f9633a9f7a3cd847b16ebf7dfe438279daf5","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.479Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:23.672Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:23.673Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T06:33:23.673Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T06:33:23.673Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T06:33:23.673Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T06:33:23.673Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.673Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} -{"level":"warn","ts":"2023-08-03T06:33:23.674Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 34453. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":34453} -{"level":"debug","ts":"2023-08-03T06:33:23.674Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":34453,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T06:33:23.675Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1listenPort":34453,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/34453","v1peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"PeerV1"} -{"level":"debug","ts":"2023-08-03T06:33:23.675Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","in":"lockedBumpOwnAnnouncement","_id":"discoveryProtocol","id":"ragep2p","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}"} -{"level":"info","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:33:23.676Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","in":"saveLoop","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","in":"recvLoop","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:23.676Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:23.678Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T06:33:23.678Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:23.678Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.20s","version":"2.4.0@114e039","appID":"3326c91c-e231-405f-b69a-069aecb140d4"} -{"level":"debug","ts":"2023-08-03T06:33:23.679Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000655839} -{"level":"info","ts":"2023-08-03T06:33:23.686Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T06:33:23.690Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.011053057} -{"level":"debug","ts":"2023-08-03T06:33:23.690Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:24.630Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:24","latency":"2.18698ms"} -{"level":"debug","ts":"2023-08-03T06:33:24.631Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:24","latency":"234.472µs"} -{"level":"debug","ts":"2023-08-03T06:33:28.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:29.074Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"warn","ts":"2023-08-03T06:33:29.076Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:29","latency":"101.552µs"} -{"level":"debug","ts":"2023-08-03T06:33:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:29","latency":"117.606µs"} -{"level":"info","ts":"2023-08-03T06:33:33.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-03T06:33:33.678Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:34","latency":"111.708µs"} -{"level":"debug","ts":"2023-08-03T06:33:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:34","latency":"128.289µs"} -{"level":"debug","ts":"2023-08-03T06:33:38.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:39","latency":"98.464µs"} -{"level":"debug","ts":"2023-08-03T06:33:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:39","latency":"98.53µs"} -{"level":"debug","ts":"2023-08-03T06:33:43.679Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:44","latency":"106.295µs"} -{"level":"debug","ts":"2023-08-03T06:33:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:44","latency":"122.837µs"} -{"level":"debug","ts":"2023-08-03T06:33:48.680Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:49","latency":"123.95µs"} -{"level":"debug","ts":"2023-08-03T06:33:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:49","latency":"119.719µs"} -{"level":"debug","ts":"2023-08-03T06:33:53.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:54","latency":"88.182µs"} -{"level":"debug","ts":"2023-08-03T06:33:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:54","latency":"92.629µs"} -{"level":"debug","ts":"2023-08-03T06:33:58.681Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:33:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:59","latency":"73.464µs"} -{"level":"debug","ts":"2023-08-03T06:33:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:33:59","latency":"105.289µs"} -{"level":"debug","ts":"2023-08-03T06:34:03.682Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:34:04.531Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:34:04.532Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T06:34:04.595Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T06:34:04.609Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:04","latency":"78.217016ms"} -{"level":"debug","ts":"2023-08-03T06:34:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:04","latency":"89.885µs"} -{"level":"debug","ts":"2023-08-03T06:34:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:04","latency":"89.807µs"} -{"level":"debug","ts":"2023-08-03T06:34:08.683Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:09","latency":"97.003µs"} -{"level":"debug","ts":"2023-08-03T06:34:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:09","latency":"96.979µs"} -{"level":"debug","ts":"2023-08-03T06:34:13.229Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:13","latency":"15.952981ms"} -{"level":"debug","ts":"2023-08-03T06:34:13.684Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:14","latency":"87.687µs"} -{"level":"debug","ts":"2023-08-03T06:34:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:14","latency":"91.953µs"} -{"level":"debug","ts":"2023-08-03T06:34:15.500Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:15","latency":"2.063081244s"} -{"level":"debug","ts":"2023-08-03T06:34:18.001Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:18","latency":"2.29146572s"} -{"level":"debug","ts":"2023-08-03T06:34:18.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:19","latency":"121.033µs"} -{"level":"debug","ts":"2023-08-03T06:34:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:19","latency":"124.911µs"} -{"level":"debug","ts":"2023-08-03T06:34:23.685Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:24.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:24","latency":"108.195µs"} -{"level":"debug","ts":"2023-08-03T06:34:24.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:24","latency":"112.76µs"} -{"level":"debug","ts":"2023-08-03T06:34:28.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:29","latency":"89.898µs"} -{"level":"debug","ts":"2023-08-03T06:34:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:29","latency":"89.736µs"} -{"level":"debug","ts":"2023-08-03T06:34:33.686Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:34","latency":"86.363µs"} -{"level":"debug","ts":"2023-08-03T06:34:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:34","latency":"139.232µs"} -{"level":"debug","ts":"2023-08-03T06:34:38.687Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:39","latency":"100.431µs"} -{"level":"debug","ts":"2023-08-03T06:34:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:39","latency":"70.871µs"} -{"level":"debug","ts":"2023-08-03T06:34:43.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:44","latency":"117.18µs"} -{"level":"debug","ts":"2023-08-03T06:34:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:44","latency":"97.851µs"} -{"level":"debug","ts":"2023-08-03T06:34:48.688Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:49","latency":"92.768µs"} -{"level":"debug","ts":"2023-08-03T06:34:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:49","latency":"84.374µs"} -{"level":"debug","ts":"2023-08-03T06:34:53.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:54","latency":"95.447µs"} -{"level":"debug","ts":"2023-08-03T06:34:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:54","latency":"78.183µs"} -{"level":"debug","ts":"2023-08-03T06:34:58.689Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:59","latency":"92.262µs"} -{"level":"debug","ts":"2023-08-03T06:34:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:34:59","latency":"83.491µs"} -{"level":"debug","ts":"2023-08-03T06:35:03.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:04","latency":"88.962µs"} -{"level":"debug","ts":"2023-08-03T06:35:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:04","latency":"93.132µs"} -{"level":"debug","ts":"2023-08-03T06:35:08.690Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:09","latency":"91.955µs"} -{"level":"debug","ts":"2023-08-03T06:35:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:09","latency":"94.951µs"} -{"level":"debug","ts":"2023-08-03T06:35:13.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:14","latency":"91.745µs"} -{"level":"debug","ts":"2023-08-03T06:35:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:14","latency":"91.596µs"} -{"level":"debug","ts":"2023-08-03T06:35:18.691Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:19","latency":"90.213µs"} -{"level":"debug","ts":"2023-08-03T06:35:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:19","latency":"102.619µs"} -{"level":"debug","ts":"2023-08-03T06:35:23.692Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:24","latency":"130.508µs"} -{"level":"debug","ts":"2023-08-03T06:35:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:24","latency":"94.338µs"} -{"level":"debug","ts":"2023-08-03T06:35:28.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:35:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:29","latency":"91.675µs"} -{"level":"debug","ts":"2023-08-03T06:35:29.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:29","latency":"87.183µs"} -{"level":"debug","ts":"2023-08-03T06:35:33.693Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:34","latency":"89.01µs"} -{"level":"debug","ts":"2023-08-03T06:35:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:34","latency":"89.526µs"} -{"level":"debug","ts":"2023-08-03T06:35:38.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:39","latency":"114.314µs"} -{"level":"debug","ts":"2023-08-03T06:35:39.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:39","latency":"113.723µs"} -{"level":"debug","ts":"2023-08-03T06:35:43.694Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:44","latency":"98.184µs"} -{"level":"debug","ts":"2023-08-03T06:35:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:44","latency":"74.393µs"} -{"level":"debug","ts":"2023-08-03T06:35:48.695Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:49","latency":"87.152µs"} -{"level":"debug","ts":"2023-08-03T06:35:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:49","latency":"84.554µs"} -{"level":"debug","ts":"2023-08-03T06:35:53.696Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:35:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:54","latency":"86.95µs"} -{"level":"debug","ts":"2023-08-03T06:35:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:54","latency":"91.449µs"} -{"level":"debug","ts":"2023-08-03T06:35:58.697Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:59","latency":"97.787µs"} -{"level":"debug","ts":"2023-08-03T06:35:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:35:59","latency":"114.353µs"} -{"level":"debug","ts":"2023-08-03T06:36:03.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:04","latency":"101.187µs"} -{"level":"debug","ts":"2023-08-03T06:36:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:04","latency":"102.229µs"} -{"level":"debug","ts":"2023-08-03T06:36:08.698Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:09","latency":"84.467µs"} -{"level":"debug","ts":"2023-08-03T06:36:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:09","latency":"86.94µs"} -{"level":"debug","ts":"2023-08-03T06:36:13.699Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:14","latency":"104.623µs"} -{"level":"debug","ts":"2023-08-03T06:36:14.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:14","latency":"122.597µs"} -{"level":"debug","ts":"2023-08-03T06:36:18.700Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:19","latency":"121.739µs"} -{"level":"debug","ts":"2023-08-03T06:36:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:19","latency":"152.045µs"} -{"level":"debug","ts":"2023-08-03T06:36:23.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:24","latency":"98.607µs"} -{"level":"debug","ts":"2023-08-03T06:36:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:24","latency":"117.871µs"} -{"level":"debug","ts":"2023-08-03T06:36:28.701Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:29","latency":"90.965µs"} -{"level":"debug","ts":"2023-08-03T06:36:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:29","latency":"91.783µs"} -{"level":"debug","ts":"2023-08-03T06:36:33.702Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:34","latency":"94.518µs"} -{"level":"debug","ts":"2023-08-03T06:36:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:34","latency":"104.628µs"} -{"level":"debug","ts":"2023-08-03T06:36:38.703Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:39","latency":"107.553µs"} -{"level":"debug","ts":"2023-08-03T06:36:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:39","latency":"105.842µs"} -{"level":"debug","ts":"2023-08-03T06:36:43.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:44","latency":"88.233µs"} -{"level":"debug","ts":"2023-08-03T06:36:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:44","latency":"106.03µs"} -{"level":"debug","ts":"2023-08-03T06:36:48.704Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:36:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:49","latency":"107.602µs"} -{"level":"debug","ts":"2023-08-03T06:36:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:49","latency":"81.198µs"} -{"level":"debug","ts":"2023-08-03T06:36:53.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:54","latency":"97.84µs"} -{"level":"debug","ts":"2023-08-03T06:36:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:54","latency":"97.489µs"} -{"level":"debug","ts":"2023-08-03T06:36:58.705Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:36:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:59","latency":"96.159µs"} -{"level":"debug","ts":"2023-08-03T06:36:59.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:36:59","latency":"95.045µs"} -{"level":"debug","ts":"2023-08-03T06:37:03.706Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:04","latency":"81.655µs"} -{"level":"debug","ts":"2023-08-03T06:37:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:04","latency":"93.466µs"} -{"level":"debug","ts":"2023-08-03T06:37:08.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:37:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:09","latency":"99.85µs"} -{"level":"debug","ts":"2023-08-03T06:37:09.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:09","latency":"83.299µs"} -{"level":"debug","ts":"2023-08-03T06:37:13.707Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:14","latency":"124.426µs"} -{"level":"debug","ts":"2023-08-03T06:37:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:14","latency":"106.241µs"} -{"level":"debug","ts":"2023-08-03T06:37:18.708Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:19.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:19","latency":"90.329µs"} -{"level":"debug","ts":"2023-08-03T06:37:19.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:19","latency":"104.855µs"} -{"level":"debug","ts":"2023-08-03T06:37:23.709Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:24","latency":"99.274µs"} -{"level":"debug","ts":"2023-08-03T06:37:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:24","latency":"80.59µs"} -{"level":"debug","ts":"2023-08-03T06:37:28.710Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:29","latency":"105.456µs"} -{"level":"debug","ts":"2023-08-03T06:37:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:29","latency":"105.407µs"} -{"level":"debug","ts":"2023-08-03T06:37:33.711Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:34","latency":"104.987µs"} -{"level":"debug","ts":"2023-08-03T06:37:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:34","latency":"102.415µs"} -{"level":"debug","ts":"2023-08-03T06:37:38.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:39","latency":"88.399µs"} -{"level":"debug","ts":"2023-08-03T06:37:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:39","latency":"106.818µs"} -{"level":"debug","ts":"2023-08-03T06:37:43.712Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:44","latency":"91.567µs"} -{"level":"debug","ts":"2023-08-03T06:37:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:44","latency":"100.775µs"} -{"level":"debug","ts":"2023-08-03T06:37:48.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:49","latency":"95.645µs"} -{"level":"debug","ts":"2023-08-03T06:37:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:49","latency":"89.926µs"} -{"level":"debug","ts":"2023-08-03T06:37:53.713Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:54","latency":"93.234µs"} -{"level":"debug","ts":"2023-08-03T06:37:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:54","latency":"98.104µs"} -{"level":"debug","ts":"2023-08-03T06:37:58.714Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:59","latency":"89.78µs"} -{"level":"debug","ts":"2023-08-03T06:37:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:37:59","latency":"89.967µs"} -{"level":"debug","ts":"2023-08-03T06:38:03.715Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:04","latency":"98.292µs"} -{"level":"debug","ts":"2023-08-03T06:38:04.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:04","latency":"98.31µs"} -{"level":"debug","ts":"2023-08-03T06:38:08.716Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:09","latency":"89.591µs"} -{"level":"debug","ts":"2023-08-03T06:38:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:09","latency":"102.978µs"} -{"level":"debug","ts":"2023-08-03T06:38:13.717Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:14","latency":"106.709µs"} -{"level":"debug","ts":"2023-08-03T06:38:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:14","latency":"108.037µs"} -{"level":"debug","ts":"2023-08-03T06:38:18.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:38:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:19","latency":"98.74µs"} -{"level":"debug","ts":"2023-08-03T06:38:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:19","latency":"94.363µs"} -{"level":"debug","ts":"2023-08-03T06:38:23.718Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:38:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:24","latency":"86.315µs"} -{"level":"debug","ts":"2023-08-03T06:38:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:24","latency":"104.683µs"} -{"level":"debug","ts":"2023-08-03T06:38:28.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:29","latency":"104.248µs"} -{"level":"debug","ts":"2023-08-03T06:38:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:29","latency":"114.622µs"} -{"level":"info","ts":"2023-08-03T06:38:33.677Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-03T06:38:33.719Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:34","latency":"90.09µs"} -{"level":"debug","ts":"2023-08-03T06:38:34.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:34","latency":"91.222µs"} -{"level":"debug","ts":"2023-08-03T06:38:38.720Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:39","latency":"91.179µs"} -{"level":"debug","ts":"2023-08-03T06:38:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:39","latency":"95.117µs"} -{"level":"debug","ts":"2023-08-03T06:38:43.720Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:38:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:44","latency":"87.156µs"} -{"level":"debug","ts":"2023-08-03T06:38:44.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:44","latency":"103.574µs"} -{"level":"debug","ts":"2023-08-03T06:38:48.721Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:49","latency":"85.364µs"} -{"level":"debug","ts":"2023-08-03T06:38:49.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:49","latency":"92.96µs"} -{"level":"debug","ts":"2023-08-03T06:38:53.722Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:54","latency":"91.169µs"} -{"level":"debug","ts":"2023-08-03T06:38:54.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:54","latency":"101.34µs"} -{"level":"debug","ts":"2023-08-03T06:38:58.723Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:59","latency":"114.207µs"} -{"level":"debug","ts":"2023-08-03T06:38:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:38:59","latency":"112.524µs"} -{"level":"debug","ts":"2023-08-03T06:39:03.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:04","latency":"87.906µs"} -{"level":"debug","ts":"2023-08-03T06:39:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:04","latency":"106.121µs"} -{"level":"debug","ts":"2023-08-03T06:39:08.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:09","latency":"120.744µs"} -{"level":"debug","ts":"2023-08-03T06:39:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:09","latency":"124.998µs"} -{"level":"debug","ts":"2023-08-03T06:39:13.724Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:14","latency":"113.253µs"} -{"level":"debug","ts":"2023-08-03T06:39:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:14","latency":"115.697µs"} -{"level":"debug","ts":"2023-08-03T06:39:18.725Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:39:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:19","latency":"90.467µs"} -{"level":"debug","ts":"2023-08-03T06:39:19.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:19","latency":"91.825µs"} -{"level":"debug","ts":"2023-08-03T06:39:23.726Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:39:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:24","latency":"122.151µs"} -{"level":"debug","ts":"2023-08-03T06:39:24.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:24","latency":"86.332µs"} -{"level":"debug","ts":"2023-08-03T06:39:28.726Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:29","latency":"88.373µs"} -{"level":"debug","ts":"2023-08-03T06:39:29.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:29","latency":"88.467µs"} -{"level":"debug","ts":"2023-08-03T06:39:33.727Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:34.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:34","latency":"92.8µs"} -{"level":"debug","ts":"2023-08-03T06:39:34.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:34","latency":"102.163µs"} -{"level":"debug","ts":"2023-08-03T06:39:38.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:39","latency":"97.931µs"} -{"level":"debug","ts":"2023-08-03T06:39:39.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:39","latency":"82.995µs"} -{"level":"debug","ts":"2023-08-03T06:39:43.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:44","latency":"99.995µs"} -{"level":"debug","ts":"2023-08-03T06:39:44.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:44","latency":"103.23µs"} -{"level":"debug","ts":"2023-08-03T06:39:48.728Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:39:49.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:49","latency":"86.89µs"} -{"level":"debug","ts":"2023-08-03T06:39:49.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:49","latency":"90.487µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.729Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:54.377Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:54","latency":"65.774µs"} -{"level":"debug","ts":"2023-08-03T06:39:54.584Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:54","latency":"39.22µs"} -{"level":"debug","ts":"2023-08-03T06:39:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:54","latency":"86.004µs"} -{"level":"debug","ts":"2023-08-03T06:39:54.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:54","latency":"75.334µs"} -{"level":"debug","ts":"2023-08-03T06:39:57.992Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"1.925991ms"} -{"level":"debug","ts":"2023-08-03T06:39:58.204Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_b73998f1_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"4.373145ms"} -{"level":"debug","ts":"2023-08-03T06:39:58.418Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_b73998f1_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"3.137734ms"} -{"level":"debug","ts":"2023-08-03T06:39:58.729Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:59","latency":"96.263µs"} -{"level":"debug","ts":"2023-08-03T06:39:59.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:39:59","latency":"94.235µs"} -{"level":"info","ts":"2023-08-03T06:40:00.751Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:40:00.751Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} -{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"info","ts":"2023-08-03T06:40:00.751Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} -{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:40:00.751Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.753Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"info","ts":"2023-08-03T06:40:00.755Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:00.755Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","duration":609} -{"level":"info","ts":"2023-08-03T06:40:00.756Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} -{"level":"info","ts":"2023-08-03T06:40:00.756Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} -{"level":"debug","ts":"2023-08-03T06:40:00.756Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"96bb0098cb58fbb65c121e602b34cabf82e4472fb9217ea3faff08b5619e7c45\\\" \\n\\ntransmitterID = \\\"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_b73998f1_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_b73998f1_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"13.39304ms"} -{"level":"debug","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:00.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755","streamName":"ragedisco/v1","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ragedisco/v1","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1"} -{"level":"info","ts":"2023-08-03T06:40:00.757Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:00.758Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2","streamName":"ragedisco/v1","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:00.758Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","id":"ragep2p","_id":"discoveryProtocol","numQueried":4,"numFound":1,"numLoaded":1,"peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"found":["12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"],"loaded":["12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"]} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"PeerV2","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","oracleID":2,"_id":"OCREndpointV2"} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","oracleID":2,"_id":"OCREndpointV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"info","ts":"2023-08-03T06:40:00.761Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"info","ts":"2023-08-03T06:40:00.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"previousNe":0,"ne":1} -{"level":"info","ts":"2023-08-03T06:40:00.762Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":1,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:01.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.758Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.803Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.804Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.762Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"debug","ts":"2023-08-03T06:40:02.824Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.826Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.843Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.844Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.732Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:40:03.846Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.848Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.862Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"warn","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"warn","ts":"2023-08-03T06:40:04.594Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:04.596Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","remoteAddr":"10.14.91.55:6690","direction":"out","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:04.597Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","streamID":"9eb8f302ecb2b2d323561655f6028ddde90b15d6e311c79b71e6d440a53e7cf2","streamName":"ragedisco/v1","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:40:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:04","latency":"108.856µs"} -{"level":"debug","ts":"2023-08-03T06:40:04.627Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:04","latency":"122.489µs"} -{"level":"debug","ts":"2023-08-03T06:40:04.894Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.895Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.918Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.919Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.901Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.903Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.003Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.005Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.906Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.907Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-03T06:40:07.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.051Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.916Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.917Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.118Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.119Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.733Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:08.994Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.996Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.177Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.178Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:09","latency":"108.489µs"} -{"level":"debug","ts":"2023-08-03T06:40:09.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:09","latency":"85.265µs"} -{"level":"debug","ts":"2023-08-03T06:40:09.819Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:40:09.819Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:40:09.819Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"out","remoteAddr":"10.14.3.137:6690","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"out","remoteAddr":"10.14.113.114:6690","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"out","remoteAddr":"10.14.63.201:6690","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-03T06:40:09.822Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"newEpoch":2,"candidateEpochs":[2,2,2]} -{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"e":1,"l":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":1} -{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:09.824Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"sender":1,"msg":{"Epoch":1,"Round":1,"Query":null}} -{"level":"debug","ts":"2023-08-03T06:40:10.041Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.043Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.270Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.272Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.055Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.057Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.293Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.295Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.824Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.002821249} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.002754503} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.133Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.135Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.388Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.389Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:12.465Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deltaC":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaCTimeout":true,"result":true,"alphaReportInfinite":false,"alphaReportPPB":0,"unfulfilledRequest":true,"initialRound":true,"deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":1,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":1,"sender":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":0,"Round":0}} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":3,"epoch":2,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001174403} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001172789} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.175Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.176Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044811}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.450Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","unfulfilledRequest":false,"result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"deltaC":0,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:11.000Z","deviation":true,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":2,"Round":1},"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1}} -{"level":"info","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:13.468Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:13.468Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.468Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"debug","ts":"2023-08-03T06:40:13.469Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec","signature":"TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy"} -{"level":"debug","ts":"2023-08-03T06:40:13.469Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec"} -{"level":"debug","ts":"2023-08-03T06:40:13.566Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec","signature":"TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy"} -{"level":"debug","ts":"2023-08-03T06:40:13.566Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"9bff6a4d-37f3-4f6e-a7b2-7b72809055ec","signatures":["TPsWZLLLEVf6FBdoqzYq5vcfq1TdQkH2xfataLibBNg6cAVJDEyvEMoiQzGqme8ipaFyCABTZme4c7qi6kCPzYy"]} -{"level":"debug","ts":"2023-08-03T06:40:13.733Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001177344} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.00120012} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"leader":0,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.239Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.240Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:14.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3},"alphaReportInfinite":false,"deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"unfulfilledRequest":false,"result":true,"initialRound":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z"} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"contractEpochRound":{"Epoch":2,"Round":1},"reportEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:14.473Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.475Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:14","latency":"111.859µs"} -{"level":"debug","ts":"2023-08-03T06:40:14.628Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.27.128","errors":"","servedAt":"2023-08-03 06:40:14","latency":"67.565µs"} -{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"leader":0,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"newEpoch":3,"candidateEpochs":[3,3,3]} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":2,"leader":0,"l":0,"e":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001145887} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001148461} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:15.270Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044813}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:15.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","unfulfilledRequest":false,"deltaCTimeout":true,"result":true,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:13.000Z","alphaReportInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":1,"epoch":3,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"round":1,"sender":3,"epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","result":true,"contractEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"round":1,"sender":0,"epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:15.552Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.553Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.757Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29"} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001128963} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001261385} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.371Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.373Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:16.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deltaCTimeout":true,"initialRound":false,"alphaReportInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","unfulfilledRequest":false,"deviation":true,"reportingPlugin":"NumericalMedian","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2},"deltaC":0,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":2,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"round":2,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","sender":1,"oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":2,"sender":0} -{"level":"info","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"debug","ts":"2023-08-03T06:40:16.470Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:16.470Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.471Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"a6607727-e589-4428-8f4b-14fd9c55d516","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"} -{"level":"debug","ts":"2023-08-03T06:40:16.471Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy","id":"a6607727-e589-4428-8f4b-14fd9c55d516"} -{"level":"debug","ts":"2023-08-03T06:40:16.625Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.626Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.736Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001149682} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001173706} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:17.243Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"a6607727-e589-4428-8f4b-14fd9c55d516","signature":"359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"} -{"level":"debug","ts":"2023-08-03T06:40:17.243Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"a6607727-e589-4428-8f4b-14fd9c55d516","signatures":["359VrRysuVTTEivNWLsTDfd3wkKLLwpGEsSSuDxRob7HsK4Qqs5bBWnqB4hpgMv4xBGV8GuCow2kwdJKSnSWEsMy"]} -{"level":"debug","ts":"2023-08-03T06:40:17.388Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.390Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:17.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"deviation":true,"reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z","initialRound":false,"alphaReportPPB":0,"result":true,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":3,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"result":true,"reportEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":3,"leader":1,"messageRound":4,"roundMax":3,"round":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"newEpoch":4,"candidateEpochs":[4,4,4]} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":3,"e":3,"l":1} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"leader":1,"oid":2} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001137838} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001195409} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":4,"leader":1,"oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:18.415Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:18.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","initialRound":false,"alphaReportInfinite":false,"deltaC":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"deviation":true} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"leader":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":4,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"epoch":4,"round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2,"epoch":4,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","epoch":4,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":2} -{"level":"debug","ts":"2023-08-03T06:40:18.734Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:18.767Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.768Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61"} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","specID":1,"runTime":0.001223526} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","jobID":0,"jobName":"","specID":1,"runTime":0.001238393} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-0-821e09ac-d963-42b2-bd60-fc681a484f61","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BKifBuah4zD9zmXau99ZWWNb9vNA7nMS25gCjNmLgZ29","oid":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"leader":1,"round":2,"observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log deleted file mode 100644 index f04afd359..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-03 06:33:06.222 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:06.305 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC -2023-08-03 06:33:06.309 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -2023-08-03 06:33:06.918 UTC [48] LOG: received fast shutdown request -waiting for server to shut down....2023-08-03 06:33:06.919 UTC [48] LOG: aborting any active transactions -2023-08-03 06:33:06.921 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 06:33:06.921 UTC [50] LOG: shutting down -2023-08-03 06:33:07.012 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 06:33:07.027 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 06:33:07.027 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 06:33:07.030 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:07.101 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:07 UTC -2023-08-03 06:33:07.106 UTC [1] LOG: database system is ready to accept connections -2023-08-03 06:33:07.601 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 06:33:08.623 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 06:33:08.623 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 06:33:08.624 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 06:33:08.624 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 06:33:08.624 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 06:33:08.624 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log deleted file mode 100644 index 130157005..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_2/node.log +++ /dev/null @@ -1,881 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:08.610Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} -{"level":"debug","ts":"2023-08-03T06:33:08.616Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.616Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.616Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"642b1494-1016-4f51-b8ba-f6cdb6cdaefa"} -{"level":"debug","ts":"2023-08-03T06:33:08.621Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"642b1494-1016-4f51-b8ba-f6cdb6cdaefa"} -{"level":"debug","ts":"2023-08-03T06:33:08.624Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} -2023/08/03 06:33:09 OK 0001_initial.sql -2023/08/03 06:33:09 OK 0002_gormv2.sql -2023/08/03 06:33:09 OK 0003_eth_logs_table.sql -2023/08/03 06:33:09 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 06:33:09 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 06:33:09 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 06:33:09 OK 0007_reverse_eth_logs_table.sql -2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql -2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 06:33:09 OK 0010_bridge_fk.sql -2023/08/03 06:33:09 OK 0011_latest_round_requested.sql -2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql -2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql -2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql -2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 06:33:09 OK 0018_add_node_version_table.sql -2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 06:33:09 OK 0020_remove_result_task.sql -2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql -2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql -2023/08/03 06:33:09 OK 0025_create_log_config_table.sql -2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql -2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 06:33:09 OK 0028_vrf_v2.sql -2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql -2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql -2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql -2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql -2023/08/03 06:33:09 OK 0036_external_job_id.go -2023/08/03 06:33:09 OK 0037_cascade_deletes.sql -2023/08/03 06:33:09 OK 0038_create_csa_keys.sql -2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql -2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql -2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql -2023/08/03 06:33:09 OK 0042_create_job_proposals.sql -2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go -2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 06:33:09 OK 0056_multichain.go -2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql -2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql -2023/08/03 06:33:09 OK 0061_multichain_relations.sql -2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql -2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql -2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql -2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql -2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql -2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql -2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql -2023/08/03 06:33:09 OK 0075_unique_job_names.sql -2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql -2023/08/03 06:33:09 OK 0078_only_one_version.sql -2023/08/03 06:33:09 OK 0079_vrf_v2_fields.sql -2023/08/03 06:33:09 OK 0080_drop_unused_cols.sql -2023/08/03 06:33:09 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 06:33:09 OK 0082_lease_lock.sql -2023/08/03 06:33:09 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 06:33:09 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 06:33:09 OK 0085_requested_confs_delay.sql -2023/08/03 06:33:09 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 06:33:09 OK 0087_ocr2_tables.sql -2023/08/03 06:33:09 OK 0088_vrfv2_request_timeout.sql -2023/08/03 06:33:09 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 06:33:09 OK 0090_ocr_new_timeouts.sql -2023/08/03 06:33:09 OK 0091_ocr2_relay.sql -2023/08/03 06:33:09 OK 0092_bptxm_tx_checkers.sql -2023/08/03 06:33:09 OK 0093_terra_txm.sql -2023/08/03 06:33:09 OK 0094_blockhash_store_job.sql -2023/08/03 06:33:09 OK 0095_terra_fcd.sql -2023/08/03 06:33:09 OK 0096_create_job_proposal_specs.sql -2023/08/03 06:33:09 OK 0097_bootstrap_spec.sql -2023/08/03 06:33:09 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 06:33:09 OK 0099_terra_msgs_created_at.sql -2023/08/03 06:33:09 OK 0100_bootstrap_config.sql -2023/08/03 06:33:09 OK 0101_generic_ocr2.sql -2023/08/03 06:33:09 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 06:33:09 OK 0103_terra_msgs_type_url.sql -2023/08/03 06:33:09 OK 0104_terra_cascade_delete.sql -2023/08/03 06:33:09 OK 0105_create_forwarder_addresses.sql -2023/08/03 06:33:09 OK 0106_evm_node_uniqueness.sql -2023/08/03 06:33:09 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 06:33:09 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 06:33:09 OK 0109_solana_chains_nodes.sql -2023/08/03 06:33:09 OK 0110_add_vrf_chunk_size.sql -2023/08/03 06:33:09 OK 0111_terra_msgs_state_started.sql -2023/08/03 06:33:09 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 06:33:09 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 06:33:09 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 06:33:09 OK 0115_log_poller.sql -2023/08/03 06:33:10 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 06:33:10 OK 0117_add_log_poller_idx.sql -2023/08/03 06:33:10 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 06:33:10 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 06:33:10 OK 0120_log_poller_data_idx.sql -2023/08/03 06:33:10 OK 0121_remove_log_configs.sql -2023/08/03 06:33:10 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 06:33:10 OK 0123_terra_idx_simplify.sql -2023/08/03 06:33:10 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 06:33:10 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 06:33:10 OK 0126_remove_observation_source.sql -2023/08/03 06:33:10 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 06:33:10 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 06:33:10 OK 0129_add_job_gas_limit.sql -2023/08/03 06:33:10 OK 0130_starknet_chains_nodes.sql -2023/08/03 06:33:10 OK 0131_add_multi_user.sql -2023/08/03 06:33:10 OK 0132_log_index_uniqueness.sql -2023/08/03 06:33:10 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 06:33:10 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 06:33:10 OK 0135_tx_index_not_null.sql -2023/08/03 06:33:10 OK 0136_add_job_allow_forwarding.sql -2023/08/03 06:33:10 OK 0137_remove_tx_index.sql -2023/08/03 06:33:10 OK 0138_rename_allowforwarding_field.sql -2023/08/03 06:33:10 OK 0139_multi_chain_keys.sql -2023/08/03 06:33:10 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 06:33:10 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 06:33:10 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 06:33:10 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 06:33:10 OK 0144_optimize_lp.sql -2023/08/03 06:33:10 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 06:33:10 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 06:33:10 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 06:33:10 OK 0148_dkg_shares.sql -2023/08/03 06:33:10 OK 0149_bridge_last_good_value.sql -2023/08/03 06:33:10 OK 0150_gaslaneprice_vrf.sql -2023/08/03 06:33:10 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 06:33:10 OK 0152_ocr2_multichain.sql -2023/08/03 06:33:10 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 06:33:10 OK 0154_ocr2dr_requests_table.sql -2023/08/03 06:33:10 OK 0155_remove_terra.sql -2023/08/03 06:33:10 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 06:33:10 OK 0157_add_log_poller_filters_table.sql -2023/08/03 06:33:10 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 06:33:10 OK 0159_add_name_to_job_proposals.sql -2023/08/03 06:33:10 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 06:33:10 OK 0161_update_job_proposal_status.sql -2023/08/03 06:33:10 OK 0162_logpoller_block_timestamps.sql -2023/08/03 06:33:10 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 06:33:10 OK 0164_add_cosmos.sql -2023/08/03 06:33:10 OK 0165_update_job_proposal_constraints.sql -2023/08/03 06:33:10 OK 0166_block_header_feeder_job.sql -2023/08/03 06:33:10 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 06:33:10 OK 0168_drop_node_tables.sql -2023/08/03 06:33:10 OK 0169_log_poller_pruning.sql -2023/08/03 06:33:10 OK 0170_gateway_job_spec.sql -2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql -2023/08/03 06:33:10 OK 0174_vrf_owner.sql -2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql -2023/08/03 06:33:10 OK 0176_s4_shared_table.sql -2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql -2023/08/03 06:33:10 OK 0178_drop_access_list.sql -2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql -2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql -2023/08/03 06:33:10 OK 0183_functions_new_fields.sql -2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql -2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 06:33:10 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.419Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:14.726Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID ae463bf5ddefad0c11b91b5224d8d9721934774ff089947d4084e04e65acf65b for chain type solana","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:14.726Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:17.022Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 2UBTqYdbbKE4txn9VYASu9Y3gG1HfhzC4cRfhDFZArUR","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:19.123Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID ebe9aabe8e1c01b46ab10f5b6c0fc16b446f03461762b0857e6b52766d43095e","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.417Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.612Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.612Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T06:33:21.612Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T06:33:21.612Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T06:33:21.612Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T06:33:21.613Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.613Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T06:33:21.613Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.613Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} -{"level":"warn","ts":"2023-08-03T06:33:21.613Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 38577. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":38577} -{"level":"debug","ts":"2023-08-03T06:33:21.613Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":38577,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T06:33:21.614Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1listenPort":38577,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/38577","id":"PeerV1","v1peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}"} -{"level":"info","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","id":"PeerV2","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:33:21.615Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"saveLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:33:21.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:21.617Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T06:33:21.617Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:21.617Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.00s","version":"2.4.0@114e039","appID":"642b1494-1016-4f51-b8ba-f6cdb6cdaefa"} -{"level":"debug","ts":"2023-08-03T06:33:21.618Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.00063332} -{"level":"info","ts":"2023-08-03T06:33:21.625Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T06:33:21.629Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.010980979} -{"level":"debug","ts":"2023-08-03T06:33:21.629Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.702Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.080Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.624966ms"} -{"level":"debug","ts":"2023-08-03T06:33:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:23","latency":"231.715µs"} -{"level":"debug","ts":"2023-08-03T06:33:26.615Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:27.023Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"warn","ts":"2023-08-03T06:33:27.026Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:28","latency":"109.779µs"} -{"level":"debug","ts":"2023-08-03T06:33:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:28","latency":"184.812µs"} -{"level":"debug","ts":"2023-08-03T06:33:31.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-03T06:33:31.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0,"id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:33","latency":"105.127µs"} -{"level":"debug","ts":"2023-08-03T06:33:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:33","latency":"105.465µs"} -{"level":"debug","ts":"2023-08-03T06:33:36.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:38","latency":"102.504µs"} -{"level":"debug","ts":"2023-08-03T06:33:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:38","latency":"105.719µs"} -{"level":"debug","ts":"2023-08-03T06:33:41.617Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:43","latency":"124.604µs"} -{"level":"debug","ts":"2023-08-03T06:33:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:43","latency":"162.039µs"} -{"level":"debug","ts":"2023-08-03T06:33:46.617Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:48","latency":"102.603µs"} -{"level":"debug","ts":"2023-08-03T06:33:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:48","latency":"114.231µs"} -{"level":"debug","ts":"2023-08-03T06:33:51.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:53","latency":"120.547µs"} -{"level":"debug","ts":"2023-08-03T06:33:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:53","latency":"116.042µs"} -{"level":"debug","ts":"2023-08-03T06:33:56.618Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:58","latency":"108.769µs"} -{"level":"debug","ts":"2023-08-03T06:33:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:33:58","latency":"107.247µs"} -{"level":"debug","ts":"2023-08-03T06:34:01.619Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:03","latency":"122.431µs"} -{"level":"debug","ts":"2023-08-03T06:34:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:03","latency":"121.597µs"} -{"level":"debug","ts":"2023-08-03T06:34:05.246Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:34:05.247Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T06:34:05.328Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T06:34:05.329Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:05","latency":"83.413219ms"} -{"level":"debug","ts":"2023-08-03T06:34:06.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:34:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:08","latency":"98.088µs"} -{"level":"debug","ts":"2023-08-03T06:34:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:08","latency":"112.82µs"} -{"level":"debug","ts":"2023-08-03T06:34:11.620Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:13","latency":"85.463µs"} -{"level":"debug","ts":"2023-08-03T06:34:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:13","latency":"85.133µs"} -{"level":"debug","ts":"2023-08-03T06:34:16.621Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:34:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:18","latency":"100.454µs"} -{"level":"debug","ts":"2023-08-03T06:34:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:18","latency":"100.325µs"} -{"level":"debug","ts":"2023-08-03T06:34:18.218Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:18","latency":"7.758169ms"} -{"level":"debug","ts":"2023-08-03T06:34:21.414Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:21","latency":"2.98526687s"} -{"level":"debug","ts":"2023-08-03T06:34:21.622Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:23","latency":"98.231µs"} -{"level":"debug","ts":"2023-08-03T06:34:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:23","latency":"157.302µs"} -{"level":"debug","ts":"2023-08-03T06:34:24.125Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:24","latency":"2.501430453s"} -{"level":"debug","ts":"2023-08-03T06:34:26.623Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:28","latency":"101.078µs"} -{"level":"debug","ts":"2023-08-03T06:34:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:28","latency":"95.321µs"} -{"level":"debug","ts":"2023-08-03T06:34:31.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:34:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:33","latency":"93.58µs"} -{"level":"debug","ts":"2023-08-03T06:34:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:33","latency":"89.294µs"} -{"level":"debug","ts":"2023-08-03T06:34:36.624Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:38","latency":"92.326µs"} -{"level":"debug","ts":"2023-08-03T06:34:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:38","latency":"87.208µs"} -{"level":"debug","ts":"2023-08-03T06:34:41.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:43","latency":"91.689µs"} -{"level":"debug","ts":"2023-08-03T06:34:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:43","latency":"91.836µs"} -{"level":"debug","ts":"2023-08-03T06:34:46.625Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:48","latency":"105.141µs"} -{"level":"debug","ts":"2023-08-03T06:34:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:48","latency":"103.852µs"} -{"level":"debug","ts":"2023-08-03T06:34:51.626Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:53.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:53","latency":"89.694µs"} -{"level":"debug","ts":"2023-08-03T06:34:53.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:53","latency":"87.827µs"} -{"level":"debug","ts":"2023-08-03T06:34:56.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:58","latency":"87.893µs"} -{"level":"debug","ts":"2023-08-03T06:34:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:34:58","latency":"93.079µs"} -{"level":"debug","ts":"2023-08-03T06:35:01.627Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:03.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:03","latency":"97.29µs"} -{"level":"debug","ts":"2023-08-03T06:35:03.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:03","latency":"114.598µs"} -{"level":"debug","ts":"2023-08-03T06:35:06.628Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:35:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:08","latency":"88.538µs"} -{"level":"debug","ts":"2023-08-03T06:35:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:08","latency":"89.715µs"} -{"level":"debug","ts":"2023-08-03T06:35:11.629Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:35:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:13","latency":"94.392µs"} -{"level":"debug","ts":"2023-08-03T06:35:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:13","latency":"100.923µs"} -{"level":"debug","ts":"2023-08-03T06:35:16.630Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:18","latency":"93.517µs"} -{"level":"debug","ts":"2023-08-03T06:35:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:18","latency":"96.403µs"} -{"level":"debug","ts":"2023-08-03T06:35:21.630Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:23","latency":"82.72µs"} -{"level":"debug","ts":"2023-08-03T06:35:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:23","latency":"95.363µs"} -{"level":"debug","ts":"2023-08-03T06:35:26.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:35:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:28","latency":"86.121µs"} -{"level":"debug","ts":"2023-08-03T06:35:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:28","latency":"90.53µs"} -{"level":"debug","ts":"2023-08-03T06:35:31.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:33","latency":"96.886µs"} -{"level":"debug","ts":"2023-08-03T06:35:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:33","latency":"90.291µs"} -{"level":"debug","ts":"2023-08-03T06:35:36.631Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:35:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:38","latency":"102.803µs"} -{"level":"debug","ts":"2023-08-03T06:35:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:38","latency":"149.09µs"} -{"level":"debug","ts":"2023-08-03T06:35:41.632Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:43","latency":"87.098µs"} -{"level":"debug","ts":"2023-08-03T06:35:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:43","latency":"73.255µs"} -{"level":"debug","ts":"2023-08-03T06:35:46.633Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:48","latency":"93.77µs"} -{"level":"debug","ts":"2023-08-03T06:35:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:48","latency":"104.577µs"} -{"level":"debug","ts":"2023-08-03T06:35:51.633Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:53","latency":"92.918µs"} -{"level":"debug","ts":"2023-08-03T06:35:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:53","latency":"70.468µs"} -{"level":"debug","ts":"2023-08-03T06:35:56.634Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:58","latency":"90.098µs"} -{"level":"debug","ts":"2023-08-03T06:35:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:35:58","latency":"92.678µs"} -{"level":"debug","ts":"2023-08-03T06:36:01.635Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:03","latency":"91.672µs"} -{"level":"debug","ts":"2023-08-03T06:36:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:03","latency":"90.013µs"} -{"level":"debug","ts":"2023-08-03T06:36:06.636Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:08","latency":"102.721µs"} -{"level":"debug","ts":"2023-08-03T06:36:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:08","latency":"94.429µs"} -{"level":"debug","ts":"2023-08-03T06:36:11.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:36:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:13","latency":"90.787µs"} -{"level":"debug","ts":"2023-08-03T06:36:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:13","latency":"93.43µs"} -{"level":"debug","ts":"2023-08-03T06:36:16.637Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:36:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:18","latency":"90.13µs"} -{"level":"debug","ts":"2023-08-03T06:36:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:18","latency":"90.814µs"} -{"level":"debug","ts":"2023-08-03T06:36:21.638Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:23","latency":"96.784µs"} -{"level":"debug","ts":"2023-08-03T06:36:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:23","latency":"81.975µs"} -{"level":"debug","ts":"2023-08-03T06:36:26.638Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:28","latency":"98.77µs"} -{"level":"debug","ts":"2023-08-03T06:36:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:28","latency":"99.142µs"} -{"level":"debug","ts":"2023-08-03T06:36:31.639Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:36:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:33","latency":"93.23µs"} -{"level":"debug","ts":"2023-08-03T06:36:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:33","latency":"91.407µs"} -{"level":"debug","ts":"2023-08-03T06:36:36.640Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:38","latency":"92.89µs"} -{"level":"debug","ts":"2023-08-03T06:36:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:38","latency":"90.937µs"} -{"level":"debug","ts":"2023-08-03T06:36:41.641Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:43","latency":"102.456µs"} -{"level":"debug","ts":"2023-08-03T06:36:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:43","latency":"99.105µs"} -{"level":"debug","ts":"2023-08-03T06:36:46.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:48","latency":"101.051µs"} -{"level":"debug","ts":"2023-08-03T06:36:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:48","latency":"98.339µs"} -{"level":"debug","ts":"2023-08-03T06:36:51.642Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:36:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:53","latency":"117.989µs"} -{"level":"debug","ts":"2023-08-03T06:36:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:53","latency":"89.236µs"} -{"level":"debug","ts":"2023-08-03T06:36:56.643Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:58.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:58","latency":"84.949µs"} -{"level":"debug","ts":"2023-08-03T06:36:58.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:36:58","latency":"105.371µs"} -{"level":"debug","ts":"2023-08-03T06:37:01.644Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:03","latency":"97.383µs"} -{"level":"debug","ts":"2023-08-03T06:37:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:03","latency":"95.493µs"} -{"level":"debug","ts":"2023-08-03T06:37:06.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:08","latency":"97.302µs"} -{"level":"debug","ts":"2023-08-03T06:37:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:08","latency":"97.482µs"} -{"level":"debug","ts":"2023-08-03T06:37:11.645Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:13","latency":"98.527µs"} -{"level":"debug","ts":"2023-08-03T06:37:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:13","latency":"102.107µs"} -{"level":"debug","ts":"2023-08-03T06:37:16.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:37:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:18","latency":"85.746µs"} -{"level":"debug","ts":"2023-08-03T06:37:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:18","latency":"122.321µs"} -{"level":"debug","ts":"2023-08-03T06:37:21.646Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:23","latency":"89.863µs"} -{"level":"debug","ts":"2023-08-03T06:37:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:23","latency":"84.849µs"} -{"level":"debug","ts":"2023-08-03T06:37:26.647Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:37:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:28","latency":"99.375µs"} -{"level":"debug","ts":"2023-08-03T06:37:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:28","latency":"99.143µs"} -{"level":"debug","ts":"2023-08-03T06:37:31.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:33","latency":"98.63µs"} -{"level":"debug","ts":"2023-08-03T06:37:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:33","latency":"83.506µs"} -{"level":"debug","ts":"2023-08-03T06:37:36.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:38","latency":"97.659µs"} -{"level":"debug","ts":"2023-08-03T06:37:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:38","latency":"92.741µs"} -{"level":"debug","ts":"2023-08-03T06:37:41.648Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:43","latency":"99.951µs"} -{"level":"debug","ts":"2023-08-03T06:37:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:43","latency":"103.692µs"} -{"level":"debug","ts":"2023-08-03T06:37:46.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:48","latency":"89.684µs"} -{"level":"debug","ts":"2023-08-03T06:37:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:48","latency":"92.561µs"} -{"level":"debug","ts":"2023-08-03T06:37:51.649Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:53","latency":"95.598µs"} -{"level":"debug","ts":"2023-08-03T06:37:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:53","latency":"95.743µs"} -{"level":"debug","ts":"2023-08-03T06:37:56.650Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:58","latency":"92.929µs"} -{"level":"debug","ts":"2023-08-03T06:37:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:37:58","latency":"84.482µs"} -{"level":"debug","ts":"2023-08-03T06:38:01.651Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:03","latency":"94.777µs"} -{"level":"debug","ts":"2023-08-03T06:38:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:03","latency":"98.992µs"} -{"level":"debug","ts":"2023-08-03T06:38:06.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:38:08.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:08","latency":"87.253µs"} -{"level":"debug","ts":"2023-08-03T06:38:08.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:08","latency":"90.42µs"} -{"level":"debug","ts":"2023-08-03T06:38:11.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:38:13.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:13","latency":"97.957µs"} -{"level":"debug","ts":"2023-08-03T06:38:13.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:13","latency":"105.342µs"} -{"level":"debug","ts":"2023-08-03T06:38:16.652Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:18.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:18","latency":"102.471µs"} -{"level":"debug","ts":"2023-08-03T06:38:18.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:18","latency":"116.193µs"} -{"level":"debug","ts":"2023-08-03T06:38:21.653Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:23","latency":"100.203µs"} -{"level":"debug","ts":"2023-08-03T06:38:23.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:23","latency":"191.251µs"} -{"level":"debug","ts":"2023-08-03T06:38:26.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:28","latency":"76.784µs"} -{"level":"debug","ts":"2023-08-03T06:38:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:28","latency":"95.397µs"} -{"level":"info","ts":"2023-08-03T06:38:31.616Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","id":"ragep2p","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-03T06:38:31.654Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:33","latency":"97.343µs"} -{"level":"debug","ts":"2023-08-03T06:38:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:33","latency":"82.621µs"} -{"level":"debug","ts":"2023-08-03T06:38:36.655Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:38.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:38","latency":"91.533µs"} -{"level":"debug","ts":"2023-08-03T06:38:38.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:38","latency":"93.916µs"} -{"level":"debug","ts":"2023-08-03T06:38:41.656Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:43","latency":"92.67µs"} -{"level":"debug","ts":"2023-08-03T06:38:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:43","latency":"93.541µs"} -{"level":"debug","ts":"2023-08-03T06:38:46.656Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:38:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:48","latency":"92.333µs"} -{"level":"debug","ts":"2023-08-03T06:38:48.079Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:48","latency":"100.694µs"} -{"level":"debug","ts":"2023-08-03T06:38:51.657Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:53","latency":"93.604µs"} -{"level":"debug","ts":"2023-08-03T06:38:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:53","latency":"101.067µs"} -{"level":"debug","ts":"2023-08-03T06:38:56.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:58","latency":"82.1µs"} -{"level":"debug","ts":"2023-08-03T06:38:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:38:58","latency":"109.516µs"} -{"level":"debug","ts":"2023-08-03T06:39:01.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:03","latency":"72.618µs"} -{"level":"debug","ts":"2023-08-03T06:39:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:03","latency":"90.617µs"} -{"level":"debug","ts":"2023-08-03T06:39:06.658Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:08","latency":"93.893µs"} -{"level":"debug","ts":"2023-08-03T06:39:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:08","latency":"104.69µs"} -{"level":"debug","ts":"2023-08-03T06:39:11.659Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:39:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:13","latency":"93.478µs"} -{"level":"debug","ts":"2023-08-03T06:39:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:13","latency":"90.872µs"} -{"level":"debug","ts":"2023-08-03T06:39:16.660Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:18","latency":"92.791µs"} -{"level":"debug","ts":"2023-08-03T06:39:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:18","latency":"100.318µs"} -{"level":"debug","ts":"2023-08-03T06:39:21.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:23","latency":"105.362µs"} -{"level":"debug","ts":"2023-08-03T06:39:23.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:23","latency":"109.155µs"} -{"level":"debug","ts":"2023-08-03T06:39:26.661Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:28","latency":"100.737µs"} -{"level":"debug","ts":"2023-08-03T06:39:28.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:28","latency":"79.84µs"} -{"level":"debug","ts":"2023-08-03T06:39:31.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:33","latency":"98.709µs"} -{"level":"debug","ts":"2023-08-03T06:39:33.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:33","latency":"93.537µs"} -{"level":"debug","ts":"2023-08-03T06:39:36.662Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:38","latency":"93.1µs"} -{"level":"debug","ts":"2023-08-03T06:39:38.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:38","latency":"101.635µs"} -{"level":"debug","ts":"2023-08-03T06:39:41.663Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:43","latency":"95.767µs"} -{"level":"debug","ts":"2023-08-03T06:39:43.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:43","latency":"92.003µs"} -{"level":"debug","ts":"2023-08-03T06:39:46.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:48","latency":"95.12µs"} -{"level":"debug","ts":"2023-08-03T06:39:48.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:48","latency":"83.635µs"} -{"level":"debug","ts":"2023-08-03T06:39:51.664Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:53","latency":"100.063µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:53","latency":"94.883µs"} -{"level":"debug","ts":"2023-08-03T06:39:55.216Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:55","latency":"68.478µs"} -{"level":"debug","ts":"2023-08-03T06:39:55.426Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:55","latency":"52.364µs"} -{"level":"debug","ts":"2023-08-03T06:39:56.665Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:58","latency":"81.461µs"} -{"level":"debug","ts":"2023-08-03T06:39:58.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:39:58","latency":"93.596µs"} -{"level":"debug","ts":"2023-08-03T06:39:58.632Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"1.612542ms"} -{"level":"debug","ts":"2023-08-03T06:39:58.846Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_ebe9aabe_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:58","latency":"3.295588ms"} -{"level":"debug","ts":"2023-08-03T06:39:59.058Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_ebe9aabe_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"2.584063ms"} -{"level":"info","ts":"2023-08-03T06:40:00.974Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:40:00.974Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} -{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"info","ts":"2023-08-03T06:40:00.974Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} -{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:40:00.974Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.975Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.976Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.976Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.976Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.977Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:40:00.978Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","duration":637} -{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} -{"level":"info","ts":"2023-08-03T06:40:00.978Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} -{"level":"debug","ts":"2023-08-03T06:40:00.979Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"61cdf10de5debd886da786bca2f2e8fde5f0a1493cf3c2f3b210cf3c05d6b4b3\\\" \\n\\ntransmitterID = \\\"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_ebe9aabe_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_ebe9aabe_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"12.397751ms"} -{"level":"debug","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} -{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.979Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:00.979Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}]} -{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755"} -{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","streamName":"ragedisco/v1","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8"} -{"level":"info","ts":"2023-08-03T06:40:00.980Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","_id":"discoveryProtocol","numQueried":4,"loaded":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"],"numLoaded":1,"queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","found":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"],"numFound":1} -{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","_id":"OCREndpointV2","id":"PeerV2","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":0} -{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6"} -{"level":"info","ts":"2023-08-03T06:40:00.983Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":0,"_id":"OCREndpointV2","id":"PeerV2"} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"previousNe":0,"ne":1} -{"level":"info","ts":"2023-08-03T06:40:00.984Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:01.666Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:01.982Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.983Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.995Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.997Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.985Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:03.021Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.023Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.050Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.051Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:03","latency":"94.022µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:03","latency":"93.351µs"} -{"level":"debug","ts":"2023-08-03T06:40:04.094Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.096Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.140Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.141Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.162Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.164Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.228Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.229Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.212Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.213Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.277Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.278Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"warn","ts":"2023-08-03T06:40:06.620Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:40:06.620Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:40:06.620Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:06.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"out","remoteAddr":"10.14.91.55:6690","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:06.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"c77f636e8bd3e53b96c7bcb4abcf48b59d9d5ec3dddb956c027636751155cca8","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-03T06:40:06.667Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:07.271Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.272Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.347Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.348Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:08","latency":"98.18µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:08","latency":"118.34µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.287Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.289Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.446Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.448Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.352Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.353Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.485Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.486Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"in","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","remoteAddr":"10.14.21.114:55586"} -{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"7139426fb53eb2bb09becb11635e4c2d0271265f0315e8c86c9a3e020bcd2755","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:09.821Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"674b561e9a90f2f8359d2efc640f7b611f96171007e5cf90d6ba1604dc80aba3","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:40:10.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.396Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.511Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.459Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.528Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.530Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:11.956Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:40:11.956Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","direction":"out","remoteAddr":"10.14.113.114:6690","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.63.201:6690","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","direction":"out"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3","streamName":"ragedisco/v1","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"candidateEpochs":[2,2,3],"newEpoch":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":1,"l":1} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"sender":1,"msg":{"Epoch":1,"Round":1,"Query":null}} -{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.002800565} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.00286169} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","msgEpoch":2,"msgRound":1,"round":1,"sender":3,"oid":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","observationCount":1,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgEpoch":2,"msgRound":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":0,"msgEpoch":2,"msgRound":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgEpoch":2,"msgRound":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:11.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"info","ts":"2023-08-03T06:40:12.465Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":true,"initialRound":true,"deviation":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deltaC":0,"alphaReportInfinite":false,"result":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1} -{"level":"debug","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":0,"epoch":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":1,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","contractEpochRound":{"Epoch":0,"Round":0},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"deviates":true,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"round":1,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:12.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:12.468Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:12.468Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:12.468Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"debug","ts":"2023-08-03T06:40:12.469Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c","signature":"3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE"} -{"level":"debug","ts":"2023-08-03T06:40:12.469Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c"} -{"level":"debug","ts":"2023-08-03T06:40:12.552Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.553Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.574Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.575Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.743Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c","signature":"3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE"} -{"level":"debug","ts":"2023-08-03T06:40:12.743Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"eeee1f5d-0cf8-477d-87e5-6d0bccfd410c","signatures":["3ZvqHarux6nk51TYnPcm6CoGojirUQy2vXBfpU9Uh2xknkMc7hvLpkyZEEfwssR4Tv2CP5pSDJ2EXXV11LPg8cvE"]} -{"level":"debug","ts":"2023-08-03T06:40:12.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:12.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001252161} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001320708} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"sender":0,"msgEpoch":2,"msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgEpoch":2,"msgRound":2,"round":2,"oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":3} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","observationCount":2,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2,"sender":2,"msgEpoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2,"observationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":2,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"msgEpoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:13","latency":"83.198µs"} -{"level":"debug","ts":"2023-08-03T06:40:13.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:13","latency":"90.96µs"} -{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":true,"alphaReportInfinite":false,"unfulfilledRequest":true,"result":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z"} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"round":2,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":2,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","contractEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"reportingPlugin":"NumericalMedian","result":true} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"sender":3,"epoch":2,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:13.607Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.609Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.673Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.674Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:13.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001242904} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001569317} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":3,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":3,"sender":2,"msgEpoch":2,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"round":3,"observationCount":1,"requiredObservationCount":3,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3,"sender":0,"msgEpoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","msgRound":3,"oid":0,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"sender":3,"msgEpoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":2,"leader":0,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":1,"msgEpoch":2,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:13.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0} -{"level":"info","ts":"2023-08-03T06:40:14.464Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","reportingPlugin":"NumericalMedian","lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"alphaReportPPB":0,"alphaReportInfinite":false,"result":true,"deltaC":0,"initialRound":false,"deviation":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"round":3,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"contractEpochRound":{"Epoch":2,"Round":2},"reportEpochRound":{"Epoch":2,"Round":3},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"round":3,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":3,"sender":2,"oid":0} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:14.682Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.684Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.759Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.760Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":4,"messageRound":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"newEpoch":3,"candidateEpochs":[3,3,3]} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":2,"leader":0,"e":2,"l":0} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001167527} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001136849} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"info","ts":"2023-08-03T06:40:15.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","result":true,"alphaReportPPB":0,"deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"unfulfilledRequest":false,"deltaC":0} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"leader":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"deviates":true,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":3,"Round":1},"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":2,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":2,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.757Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.759Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.766Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.767Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001272839} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001257654} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:15.981Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy"} -{"level":"info","ts":"2023-08-03T06:40:16.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","reportingPlugin":"NumericalMedian","deltaC":0,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviation":true,"deltaCTimeout":true,"alphaReportPPB":0,"initialRound":false,"unfulfilledRequest":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":3,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":3,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":2,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.668Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:16.829Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.831Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.833Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.834Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.00115568} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001216919} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"info","ts":"2023-08-03T06:40:17.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z","alphaReportInfinite":false,"initialRound":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"deltaC":0,"result":true,"unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":1,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":3,"Round":3},"contractEpochRound":{"Epoch":3,"Round":2},"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"deviates":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"sender":3,"oid":0} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":3,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:17.858Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.860Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.907Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"leader":1,"round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"newEpoch":4,"candidateEpochs":[4,4,4]} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"e":3,"l":1} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001153987} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001302013} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":4,"leader":1,"observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:18","latency":"90.818µs"} -{"level":"debug","ts":"2023-08-03T06:40:18.078Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.12.66","errors":"","servedAt":"2023-08-03 06:40:18","latency":"92.138µs"} -{"level":"info","ts":"2023-08-03T06:40:18.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"alphaReportPPB":0,"deltaC":0,"unfulfilledRequest":false,"initialRound":false,"result":true,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z"} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":4,"round":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":1,"sender":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","result":true,"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:18.919Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.921Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044817}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001234302} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001243104} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:18.992Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.994Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:19.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":2},"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:17.000Z","deviation":true,"result":true,"initialRound":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":4,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":4,"Round":2,"H":[227,57,141,191,243,159,108,42,91,240,130,82,173,222,213,122,27,228,168,157,52,71,161,87,8,106,134,129,242,145,113,65],"AttestedReport":{"Report":"ZMtL0gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"kcGwJXWpR5Mz62YXjS3uTL5R0RpyrG3Kie73vzL0UsAL+RJqAkF2+VVCp+ioeQm0W3klhOq2wy3pIQaMcNSAGwE=","Signer":1},{"Signature":"X83nLJ9mOnIhxpODNMp8SVQt2xuHC6mERVsxuGnraeVtWtlGiUfeqGNYw13NLpKjZIDTlzoobF5iBe0xbjGSVAA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":1,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","alphaAcceptInfinite":false,"result":true,"contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"latestAcceptedEpochRound":{"Epoch":4,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":2,"sender":3} -{"level":"info","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":4,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:19.472Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"round":2,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.472Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"02bf3352-2861-4307-ba72-99c84474f096","signature":"4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu"} -{"level":"debug","ts":"2023-08-03T06:40:19.472Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu","id":"02bf3352-2861-4307-ba72-99c84474f096"} -{"level":"debug","ts":"2023-08-03T06:40:19.658Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"02bf3352-2861-4307-ba72-99c84474f096","signature":"4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu"} -{"level":"debug","ts":"2023-08-03T06:40:19.658Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"02bf3352-2861-4307-ba72-99c84474f096","signatures":["4eFHUZG314TNcaNbowLLS2z1FVy6NVqhAqBUggju7p9ULsLmACQF35mpLGw32CNmDxwZjvk7WCxdzQUQ8PFnBkpu"]} -{"level":"debug","ts":"2023-08-03T06:40:19.943Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.945Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044818}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001175074} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001234897} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"round":3,"observation":"CNOXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:20.002Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.003Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:20.470Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","lastTransmissionTimestamp":"2023-08-03T06:40:18.000Z","result":true,"deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":false,"alphaReportPPB":0,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":3},"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","epoch":4,"round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":4,"Round":3,"H":[181,36,61,27,174,108,246,113,97,41,205,33,84,28,183,101,35,106,8,1,125,130,59,188,121,223,60,71,111,23,153,24],"AttestedReport":{"Report":"ZMtL0wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"oR2KORlVQ0wBVdEB+7t4EOfHRkfHeS4lhKdYobI85TtgFxlp/gseoIp6T5DkymCZc9WfEnZUDNNlkPwN1vNvqwA=","Signer":1},{"Signature":"fyHaVozEk0cFxbTE93pMb6UIaS3U1B2tcJ3eTP14jhw/XEpCHIY33MMgNbad5njRlfvuJ39BiZW2yB+U+nNTuQA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"sender":3,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":2,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"newEpoch":5,"candidateEpochs":[5,5,5],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":4,"leader":1,"e":4,"l":1} -{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.001181267} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001228578} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"epoch":5,"round":1,"observation":"CNSXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:20.986Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.988Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044819}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.020Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.021Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:21.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:19.000Z","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":1},"initialRound":false,"alphaReportPPB":0,"alphaReportInfinite":false,"deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deltaC":0,"unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","round":1,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"event":{"Epoch":5,"Round":1,"H":[243,61,202,42,224,181,183,218,241,208,244,117,159,59,51,174,3,98,247,140,142,168,220,234,218,40,96,148,2,253,44,62],"AttestedReport":{"Report":"ZMtL1AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"30Yu94e8+c++7s+1YsWJScUoofdaBDTVTowQitmiHqtp5MyTgYg6J6TrPiHOgZynpm4d4qfis/oIwz1YmZreCgA=","Signer":1},{"Signature":"YXb+BzoK0JnxcYDU6xA3aK2nPBFDNg6U1GnrRNBiQOZhiOA4vVCvZfcw96LcimOFcOP8MQSpeSPoB6pml7nKQQE=","Signer":3}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0,"result":true,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:21.669Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966"} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","specID":1,"runTime":0.00113684} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":0,"jobName":"","specID":1,"runTime":0.001158969} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2,"observation":"CNWXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:22.014Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.016Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044820}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.111Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","deviation":true,"deltaC":0,"deltaCTimeout":true,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","lastTransmissionTimestamp":"2023-08-03T06:40:20.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":2},"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","oid":0,"round":2,"sender":3,"epoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"event":{"Epoch":5,"Round":2,"H":[9,24,59,213,110,59,8,68,170,72,213,193,39,135,1,138,175,186,31,36,28,209,54,71,6,22,178,46,143,74,83,0],"AttestedReport":{"Report":"ZMtL1QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZsWULiQqkHjwQ3dXgncTf1PEh8Ot54ynIUzLeVM+7d9Kj2/bmoBUrga8cCP43umZzPNkCxmFCTZasTH73ANwNgE=","Signer":1},{"Signature":"3WIB/MoU8M9fTdnAPrs/A9AupqaHeexO7B/T3bweu2oTIzPlQPSSVu6QkLxvdXWjKQOgTUtyNlwgoemez7S9bQA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0,"epoch":5,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","result":true,"contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":5,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"deviates":true,"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-1-425ce4e6-215f-49e8-ac50-af909cfac966","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"6hZhv5vVvbnqfJ4dn6y1cmPCRqiQLsE5yGwYcYZ25pKy","sender":1,"epoch":5,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":0} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log deleted file mode 100644 index 42b47fa0d..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. - pg_ctl -D /var/lib/postgresql/data -l logfile start - -waiting for server to start....2023-08-03 06:33:06.180 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:06.225 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC -2023-08-03 06:33:06.252 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-03 06:33:06.892 UTC [48] LOG: received fast shutdown request -.2023-08-03 06:33:06.898 UTC [48] LOG: aborting any active transactions -2023-08-03 06:33:06.970 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 06:33:06.970 UTC [50] LOG: shutting down -2023-08-03 06:33:06.991 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 06:33:07.071 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 06:33:07.071 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 06:33:07.074 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:07.091 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:06 UTC -2023-08-03 06:33:07.095 UTC [1] LOG: database system is ready to accept connections -2023-08-03 06:33:07.772 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 06:33:08.887 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 06:33:08.887 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 06:33:08.887 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 06:33:08.887 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 06:33:08.888 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 06:33:08.888 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log deleted file mode 100644 index bb5ac3e3b..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_3/node.log +++ /dev/null @@ -1,995 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:08.872Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} -{"level":"debug","ts":"2023-08-03T06:33:08.878Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.878Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.878Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"33735da0-9c0d-469b-b091-89a13b3bb9ec"} -{"level":"debug","ts":"2023-08-03T06:33:08.885Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"33735da0-9c0d-469b-b091-89a13b3bb9ec"} -{"level":"debug","ts":"2023-08-03T06:33:08.887Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} -2023/08/03 06:33:09 OK 0001_initial.sql -2023/08/03 06:33:09 OK 0002_gormv2.sql -2023/08/03 06:33:09 OK 0003_eth_logs_table.sql -2023/08/03 06:33:09 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 06:33:09 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 06:33:09 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 06:33:09 OK 0007_reverse_eth_logs_table.sql -2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql -2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 06:33:09 OK 0010_bridge_fk.sql -2023/08/03 06:33:09 OK 0011_latest_round_requested.sql -2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql -2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql -2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql -2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 06:33:09 OK 0018_add_node_version_table.sql -2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 06:33:09 OK 0020_remove_result_task.sql -2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql -2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql -2023/08/03 06:33:09 OK 0025_create_log_config_table.sql -2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql -2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 06:33:09 OK 0028_vrf_v2.sql -2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql -2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql -2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql -2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql -2023/08/03 06:33:09 OK 0036_external_job_id.go -2023/08/03 06:33:09 OK 0037_cascade_deletes.sql -2023/08/03 06:33:09 OK 0038_create_csa_keys.sql -2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql -2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql -2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql -2023/08/03 06:33:09 OK 0042_create_job_proposals.sql -2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go -2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 06:33:09 OK 0056_multichain.go -2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql -2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql -2023/08/03 06:33:09 OK 0061_multichain_relations.sql -2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql -2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql -2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql -2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql -2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql -2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql -2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql -2023/08/03 06:33:09 OK 0075_unique_job_names.sql -2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql -2023/08/03 06:33:10 OK 0078_only_one_version.sql -2023/08/03 06:33:10 OK 0079_vrf_v2_fields.sql -2023/08/03 06:33:10 OK 0080_drop_unused_cols.sql -2023/08/03 06:33:10 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 06:33:10 OK 0082_lease_lock.sql -2023/08/03 06:33:10 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 06:33:10 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 06:33:10 OK 0085_requested_confs_delay.sql -2023/08/03 06:33:10 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 06:33:10 OK 0087_ocr2_tables.sql -2023/08/03 06:33:10 OK 0088_vrfv2_request_timeout.sql -2023/08/03 06:33:10 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 06:33:10 OK 0090_ocr_new_timeouts.sql -2023/08/03 06:33:10 OK 0091_ocr2_relay.sql -2023/08/03 06:33:10 OK 0092_bptxm_tx_checkers.sql -2023/08/03 06:33:10 OK 0093_terra_txm.sql -2023/08/03 06:33:10 OK 0094_blockhash_store_job.sql -2023/08/03 06:33:10 OK 0095_terra_fcd.sql -2023/08/03 06:33:10 OK 0096_create_job_proposal_specs.sql -2023/08/03 06:33:10 OK 0097_bootstrap_spec.sql -2023/08/03 06:33:10 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 06:33:10 OK 0099_terra_msgs_created_at.sql -2023/08/03 06:33:10 OK 0100_bootstrap_config.sql -2023/08/03 06:33:10 OK 0101_generic_ocr2.sql -2023/08/03 06:33:10 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 06:33:10 OK 0103_terra_msgs_type_url.sql -2023/08/03 06:33:10 OK 0104_terra_cascade_delete.sql -2023/08/03 06:33:10 OK 0105_create_forwarder_addresses.sql -2023/08/03 06:33:10 OK 0106_evm_node_uniqueness.sql -2023/08/03 06:33:10 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 06:33:10 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 06:33:10 OK 0109_solana_chains_nodes.sql -2023/08/03 06:33:10 OK 0110_add_vrf_chunk_size.sql -2023/08/03 06:33:10 OK 0111_terra_msgs_state_started.sql -2023/08/03 06:33:10 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 06:33:10 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 06:33:10 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 06:33:10 OK 0115_log_poller.sql -2023/08/03 06:33:10 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 06:33:10 OK 0117_add_log_poller_idx.sql -2023/08/03 06:33:10 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 06:33:10 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 06:33:10 OK 0120_log_poller_data_idx.sql -2023/08/03 06:33:10 OK 0121_remove_log_configs.sql -2023/08/03 06:33:10 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 06:33:10 OK 0123_terra_idx_simplify.sql -2023/08/03 06:33:10 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 06:33:10 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 06:33:10 OK 0126_remove_observation_source.sql -2023/08/03 06:33:10 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 06:33:10 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 06:33:10 OK 0129_add_job_gas_limit.sql -2023/08/03 06:33:10 OK 0130_starknet_chains_nodes.sql -2023/08/03 06:33:10 OK 0131_add_multi_user.sql -2023/08/03 06:33:10 OK 0132_log_index_uniqueness.sql -2023/08/03 06:33:10 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 06:33:10 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 06:33:10 OK 0135_tx_index_not_null.sql -2023/08/03 06:33:10 OK 0136_add_job_allow_forwarding.sql -2023/08/03 06:33:10 OK 0137_remove_tx_index.sql -2023/08/03 06:33:10 OK 0138_rename_allowforwarding_field.sql -2023/08/03 06:33:10 OK 0139_multi_chain_keys.sql -2023/08/03 06:33:10 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 06:33:10 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 06:33:10 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 06:33:10 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 06:33:10 OK 0144_optimize_lp.sql -2023/08/03 06:33:10 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 06:33:10 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 06:33:10 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 06:33:10 OK 0148_dkg_shares.sql -2023/08/03 06:33:10 OK 0149_bridge_last_good_value.sql -2023/08/03 06:33:10 OK 0150_gaslaneprice_vrf.sql -2023/08/03 06:33:10 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 06:33:10 OK 0152_ocr2_multichain.sql -2023/08/03 06:33:10 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 06:33:10 OK 0154_ocr2dr_requests_table.sql -2023/08/03 06:33:10 OK 0155_remove_terra.sql -2023/08/03 06:33:10 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 06:33:10 OK 0157_add_log_poller_filters_table.sql -2023/08/03 06:33:10 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 06:33:10 OK 0159_add_name_to_job_proposals.sql -2023/08/03 06:33:10 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 06:33:10 OK 0161_update_job_proposal_status.sql -2023/08/03 06:33:10 OK 0162_logpoller_block_timestamps.sql -2023/08/03 06:33:10 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 06:33:10 OK 0164_add_cosmos.sql -2023/08/03 06:33:10 OK 0165_update_job_proposal_constraints.sql -2023/08/03 06:33:10 OK 0166_block_header_feeder_job.sql -2023/08/03 06:33:10 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 06:33:10 OK 0168_drop_node_tables.sql -2023/08/03 06:33:10 OK 0169_log_poller_pruning.sql -2023/08/03 06:33:10 OK 0170_gateway_job_spec.sql -2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql -2023/08/03 06:33:10 OK 0174_vrf_owner.sql -2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql -2023/08/03 06:33:10 OK 0176_s4_shared_table.sql -2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql -2023/08/03 06:33:10 OK 0178_drop_access_list.sql -2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql -2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql -2023/08/03 06:33:10 OK 0183_functions_new_fields.sql -2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql -2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 06:33:10 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.690Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.691Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:15.272Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID 55a65a3fd70ee86efbb3b6bd0a2bb67784fa6382456be5e81c2dd11016f43acb for chain type solana","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:15.272Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:17.503Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID BfmfSegb34nfpuuV4iuXn6P1Sp1qJhroruFZYtHnzDMg","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:19.604Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 94476f7fc17579425d990e1506662df9f5a1ed202cb8ec15f21220cd4c54bf91","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:21.974Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T06:33:22.106Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T06:33:22.106Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.106Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T06:33:22.106Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.107Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:22.170Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} -{"level":"warn","ts":"2023-08-03T06:33:22.170Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 46481. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":46481} -{"level":"debug","ts":"2023-08-03T06:33:22.170Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":46481,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"info","ts":"2023-08-03T06:33:22.171Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1listenPort":46481,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/46481","v1peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"PeerV1"} -{"level":"info","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"PeerV2"} -{"level":"debug","ts":"2023-08-03T06:33:22.172Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","in":"saveLoop","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"recvLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:33:22.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:33:22.174Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T06:33:22.174Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:22.174Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 14.38s","version":"2.4.0@114e039","appID":"33735da0-9c0d-469b-b091-89a13b3bb9ec"} -{"level":"debug","ts":"2023-08-03T06:33:22.175Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000764874} -{"level":"info","ts":"2023-08-03T06:33:22.182Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T06:33:22.186Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.011038902} -{"level":"debug","ts":"2023-08-03T06:33:22.186Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.108Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.924143ms"} -{"level":"debug","ts":"2023-08-03T06:33:23.109Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:23","latency":"231.109µs"} -{"level":"debug","ts":"2023-08-03T06:33:27.172Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:33:27.501Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"warn","ts":"2023-08-03T06:33:27.504Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:28","latency":"97.045µs"} -{"level":"debug","ts":"2023-08-03T06:33:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:28","latency":"156.894µs"} -{"level":"debug","ts":"2023-08-03T06:33:32.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-03T06:33:32.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peersDetected":0,"statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:33","latency":"110.292µs"} -{"level":"debug","ts":"2023-08-03T06:33:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:33","latency":"86.363µs"} -{"level":"debug","ts":"2023-08-03T06:33:37.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:33:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:38","latency":"113.988µs"} -{"level":"debug","ts":"2023-08-03T06:33:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:38","latency":"138.097µs"} -{"level":"debug","ts":"2023-08-03T06:33:42.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:43","latency":"91.905µs"} -{"level":"debug","ts":"2023-08-03T06:33:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:43","latency":"95.138µs"} -{"level":"debug","ts":"2023-08-03T06:33:47.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:48","latency":"101.107µs"} -{"level":"debug","ts":"2023-08-03T06:33:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:48","latency":"115.235µs"} -{"level":"debug","ts":"2023-08-03T06:33:52.174Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:33:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:53","latency":"95.117µs"} -{"level":"debug","ts":"2023-08-03T06:33:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:53","latency":"137.179µs"} -{"level":"debug","ts":"2023-08-03T06:33:57.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:58","latency":"99.31µs"} -{"level":"debug","ts":"2023-08-03T06:33:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:33:58","latency":"96.233µs"} -{"level":"debug","ts":"2023-08-03T06:34:02.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:03","latency":"107.592µs"} -{"level":"debug","ts":"2023-08-03T06:34:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:03","latency":"86.316µs"} -{"level":"debug","ts":"2023-08-03T06:34:05.956Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:34:05.957Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T06:34:06.083Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T06:34:06.085Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:06","latency":"128.831577ms"} -{"level":"debug","ts":"2023-08-03T06:34:07.175Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:08","latency":"118.167µs"} -{"level":"debug","ts":"2023-08-03T06:34:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:08","latency":"114.526µs"} -{"level":"debug","ts":"2023-08-03T06:34:12.176Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:13","latency":"99.392µs"} -{"level":"debug","ts":"2023-08-03T06:34:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:13","latency":"147.755µs"} -{"level":"debug","ts":"2023-08-03T06:34:17.177Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:18","latency":"98.423µs"} -{"level":"debug","ts":"2023-08-03T06:34:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:18","latency":"117.927µs"} -{"level":"debug","ts":"2023-08-03T06:34:22.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:34:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:23","latency":"110.491µs"} -{"level":"debug","ts":"2023-08-03T06:34:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:23","latency":"108.624µs"} -{"level":"debug","ts":"2023-08-03T06:34:24.335Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:24","latency":"2.604522ms"} -{"level":"debug","ts":"2023-08-03T06:34:26.673Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:26","latency":"2.108062388s"} -{"level":"debug","ts":"2023-08-03T06:34:27.178Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:28","latency":"109.687µs"} -{"level":"debug","ts":"2023-08-03T06:34:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:28","latency":"114.265µs"} -{"level":"debug","ts":"2023-08-03T06:34:29.700Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:29","latency":"2.81992418s"} -{"level":"debug","ts":"2023-08-03T06:34:32.179Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:33","latency":"93.721µs"} -{"level":"debug","ts":"2023-08-03T06:34:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:33","latency":"99.647µs"} -{"level":"debug","ts":"2023-08-03T06:34:37.179Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:38","latency":"104.402µs"} -{"level":"debug","ts":"2023-08-03T06:34:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:38","latency":"102.706µs"} -{"level":"debug","ts":"2023-08-03T06:34:42.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:43","latency":"93.649µs"} -{"level":"debug","ts":"2023-08-03T06:34:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:43","latency":"93.368µs"} -{"level":"debug","ts":"2023-08-03T06:34:47.180Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:48","latency":"93.582µs"} -{"level":"debug","ts":"2023-08-03T06:34:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:48","latency":"73.194µs"} -{"level":"debug","ts":"2023-08-03T06:34:52.181Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:34:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:53","latency":"106.37µs"} -{"level":"debug","ts":"2023-08-03T06:34:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:53","latency":"108.935µs"} -{"level":"debug","ts":"2023-08-03T06:34:57.182Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:34:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:58","latency":"105.145µs"} -{"level":"debug","ts":"2023-08-03T06:34:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:34:58","latency":"108.764µs"} -{"level":"debug","ts":"2023-08-03T06:35:02.183Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:03","latency":"96.331µs"} -{"level":"debug","ts":"2023-08-03T06:35:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:03","latency":"106.306µs"} -{"level":"debug","ts":"2023-08-03T06:35:07.184Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:08","latency":"101.143µs"} -{"level":"debug","ts":"2023-08-03T06:35:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:08","latency":"106.295µs"} -{"level":"debug","ts":"2023-08-03T06:35:12.185Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:13","latency":"92.927µs"} -{"level":"debug","ts":"2023-08-03T06:35:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:13","latency":"85.921µs"} -{"level":"debug","ts":"2023-08-03T06:35:17.186Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:18","latency":"96.394µs"} -{"level":"debug","ts":"2023-08-03T06:35:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:18","latency":"94.603µs"} -{"level":"debug","ts":"2023-08-03T06:35:22.187Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:23","latency":"107.957µs"} -{"level":"debug","ts":"2023-08-03T06:35:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:23","latency":"111.731µs"} -{"level":"debug","ts":"2023-08-03T06:35:27.187Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:28","latency":"94.091µs"} -{"level":"debug","ts":"2023-08-03T06:35:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:28","latency":"93.681µs"} -{"level":"debug","ts":"2023-08-03T06:35:32.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:33","latency":"98.87µs"} -{"level":"debug","ts":"2023-08-03T06:35:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:33","latency":"105.458µs"} -{"level":"debug","ts":"2023-08-03T06:35:37.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:38","latency":"97.407µs"} -{"level":"debug","ts":"2023-08-03T06:35:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:38","latency":"100.696µs"} -{"level":"debug","ts":"2023-08-03T06:35:42.188Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:43","latency":"102.629µs"} -{"level":"debug","ts":"2023-08-03T06:35:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:43","latency":"113.867µs"} -{"level":"debug","ts":"2023-08-03T06:35:47.189Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:48","latency":"94.043µs"} -{"level":"debug","ts":"2023-08-03T06:35:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:48","latency":"93.817µs"} -{"level":"debug","ts":"2023-08-03T06:35:52.190Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:53","latency":"102.498µs"} -{"level":"debug","ts":"2023-08-03T06:35:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:53","latency":"102.559µs"} -{"level":"debug","ts":"2023-08-03T06:35:57.191Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:58","latency":"106.932µs"} -{"level":"debug","ts":"2023-08-03T06:35:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:35:58","latency":"106.813µs"} -{"level":"debug","ts":"2023-08-03T06:36:02.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:03","latency":"92.461µs"} -{"level":"debug","ts":"2023-08-03T06:36:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:03","latency":"91.834µs"} -{"level":"debug","ts":"2023-08-03T06:36:07.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:08","latency":"99.639µs"} -{"level":"debug","ts":"2023-08-03T06:36:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:08","latency":"83.685µs"} -{"level":"debug","ts":"2023-08-03T06:36:12.192Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:13","latency":"97.33µs"} -{"level":"debug","ts":"2023-08-03T06:36:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:13","latency":"103.539µs"} -{"level":"debug","ts":"2023-08-03T06:36:17.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:18","latency":"95.459µs"} -{"level":"debug","ts":"2023-08-03T06:36:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:18","latency":"94.267µs"} -{"level":"debug","ts":"2023-08-03T06:36:22.193Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:23","latency":"88.733µs"} -{"level":"debug","ts":"2023-08-03T06:36:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:23","latency":"125.087µs"} -{"level":"debug","ts":"2023-08-03T06:36:27.194Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:28","latency":"97.394µs"} -{"level":"debug","ts":"2023-08-03T06:36:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:28","latency":"159.643µs"} -{"level":"debug","ts":"2023-08-03T06:36:32.195Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:33","latency":"118.201µs"} -{"level":"debug","ts":"2023-08-03T06:36:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:33","latency":"118.182µs"} -{"level":"debug","ts":"2023-08-03T06:36:37.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:38","latency":"126.513µs"} -{"level":"debug","ts":"2023-08-03T06:36:38.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:38","latency":"122.833µs"} -{"level":"debug","ts":"2023-08-03T06:36:42.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:43","latency":"98.9µs"} -{"level":"debug","ts":"2023-08-03T06:36:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:43","latency":"92.118µs"} -{"level":"debug","ts":"2023-08-03T06:36:47.196Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:48","latency":"99.305µs"} -{"level":"debug","ts":"2023-08-03T06:36:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:48","latency":"96.892µs"} -{"level":"debug","ts":"2023-08-03T06:36:52.197Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:53","latency":"95.959µs"} -{"level":"debug","ts":"2023-08-03T06:36:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:53","latency":"102.97µs"} -{"level":"debug","ts":"2023-08-03T06:36:57.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:58","latency":"99.346µs"} -{"level":"debug","ts":"2023-08-03T06:36:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:36:58","latency":"107.33µs"} -{"level":"debug","ts":"2023-08-03T06:37:02.198Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:03","latency":"97.15µs"} -{"level":"debug","ts":"2023-08-03T06:37:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:03","latency":"102.744µs"} -{"level":"debug","ts":"2023-08-03T06:37:07.199Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:08","latency":"121.484µs"} -{"level":"debug","ts":"2023-08-03T06:37:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:08","latency":"123.076µs"} -{"level":"debug","ts":"2023-08-03T06:37:12.200Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:13","latency":"109.759µs"} -{"level":"debug","ts":"2023-08-03T06:37:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:13","latency":"121.638µs"} -{"level":"debug","ts":"2023-08-03T06:37:17.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:18","latency":"104.044µs"} -{"level":"debug","ts":"2023-08-03T06:37:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:18","latency":"108.404µs"} -{"level":"debug","ts":"2023-08-03T06:37:22.202Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:37:23.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:23","latency":"97.722µs"} -{"level":"debug","ts":"2023-08-03T06:37:23.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:23","latency":"101.9µs"} -{"level":"debug","ts":"2023-08-03T06:37:27.203Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:28","latency":"98.787µs"} -{"level":"debug","ts":"2023-08-03T06:37:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:28","latency":"113.1µs"} -{"level":"debug","ts":"2023-08-03T06:37:32.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:33","latency":"95.442µs"} -{"level":"debug","ts":"2023-08-03T06:37:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:33","latency":"99.873µs"} -{"level":"debug","ts":"2023-08-03T06:37:37.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:38","latency":"112.826µs"} -{"level":"debug","ts":"2023-08-03T06:37:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:38","latency":"151.784µs"} -{"level":"debug","ts":"2023-08-03T06:37:42.205Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:37:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:43","latency":"80.242µs"} -{"level":"debug","ts":"2023-08-03T06:37:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:43","latency":"101.619µs"} -{"level":"debug","ts":"2023-08-03T06:37:47.205Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:37:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:48","latency":"114.405µs"} -{"level":"debug","ts":"2023-08-03T06:37:48.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:48","latency":"105.07µs"} -{"level":"debug","ts":"2023-08-03T06:37:52.206Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:53","latency":"93.365µs"} -{"level":"debug","ts":"2023-08-03T06:37:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:53","latency":"93.598µs"} -{"level":"debug","ts":"2023-08-03T06:37:57.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:58","latency":"93.102µs"} -{"level":"debug","ts":"2023-08-03T06:37:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:37:58","latency":"97.979µs"} -{"level":"debug","ts":"2023-08-03T06:38:02.207Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:38:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:03","latency":"99.029µs"} -{"level":"debug","ts":"2023-08-03T06:38:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:03","latency":"106.962µs"} -{"level":"debug","ts":"2023-08-03T06:38:07.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:38:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:08","latency":"88.453µs"} -{"level":"debug","ts":"2023-08-03T06:38:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:08","latency":"94.042µs"} -{"level":"debug","ts":"2023-08-03T06:38:12.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:13","latency":"99.064µs"} -{"level":"debug","ts":"2023-08-03T06:38:13.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:13","latency":"104.128µs"} -{"level":"debug","ts":"2023-08-03T06:38:17.208Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:38:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:18","latency":"101.099µs"} -{"level":"debug","ts":"2023-08-03T06:38:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:18","latency":"86.426µs"} -{"level":"debug","ts":"2023-08-03T06:38:22.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:23","latency":"92.763µs"} -{"level":"debug","ts":"2023-08-03T06:38:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:23","latency":"115.567µs"} -{"level":"debug","ts":"2023-08-03T06:38:27.209Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:28.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:28","latency":"106.013µs"} -{"level":"debug","ts":"2023-08-03T06:38:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:28","latency":"176.997µs"} -{"level":"info","ts":"2023-08-03T06:38:32.173Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peersUndetected":0,"peersDetected":0,"peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","id":"ragep2p","statusByPeer":"map[]","peersToDetect":0} -{"level":"debug","ts":"2023-08-03T06:38:32.210Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:33","latency":"101.766µs"} -{"level":"debug","ts":"2023-08-03T06:38:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:33","latency":"96.93µs"} -{"level":"debug","ts":"2023-08-03T06:38:37.211Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:38","latency":"95.369µs"} -{"level":"debug","ts":"2023-08-03T06:38:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:38","latency":"93.761µs"} -{"level":"debug","ts":"2023-08-03T06:38:42.212Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:43","latency":"96.382µs"} -{"level":"debug","ts":"2023-08-03T06:38:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:43","latency":"89.717µs"} -{"level":"debug","ts":"2023-08-03T06:38:47.212Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:38:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:48","latency":"107.188µs"} -{"level":"debug","ts":"2023-08-03T06:38:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:48","latency":"88.846µs"} -{"level":"debug","ts":"2023-08-03T06:38:52.213Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:53","latency":"104.61µs"} -{"level":"debug","ts":"2023-08-03T06:38:53.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:53","latency":"99.086µs"} -{"level":"debug","ts":"2023-08-03T06:38:57.213Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:58","latency":"101.712µs"} -{"level":"debug","ts":"2023-08-03T06:38:58.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:38:58","latency":"91.426µs"} -{"level":"debug","ts":"2023-08-03T06:39:02.214Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:03","latency":"103.449µs"} -{"level":"debug","ts":"2023-08-03T06:39:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:03","latency":"105.068µs"} -{"level":"debug","ts":"2023-08-03T06:39:07.214Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:08.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:08","latency":"94.598µs"} -{"level":"debug","ts":"2023-08-03T06:39:08.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:08","latency":"94.406µs"} -{"level":"debug","ts":"2023-08-03T06:39:12.215Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:39:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:13","latency":"96.135µs"} -{"level":"debug","ts":"2023-08-03T06:39:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:13","latency":"96.912µs"} -{"level":"debug","ts":"2023-08-03T06:39:17.216Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:18","latency":"96.569µs"} -{"level":"debug","ts":"2023-08-03T06:39:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:18","latency":"98.081µs"} -{"level":"debug","ts":"2023-08-03T06:39:22.217Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:39:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:23","latency":"96.332µs"} -{"level":"debug","ts":"2023-08-03T06:39:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:23","latency":"108.22µs"} -{"level":"debug","ts":"2023-08-03T06:39:27.218Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:28","latency":"93.882µs"} -{"level":"debug","ts":"2023-08-03T06:39:28.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:28","latency":"127.799µs"} -{"level":"debug","ts":"2023-08-03T06:39:32.218Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:33","latency":"97.096µs"} -{"level":"debug","ts":"2023-08-03T06:39:33.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:33","latency":"111.099µs"} -{"level":"debug","ts":"2023-08-03T06:39:37.219Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:38","latency":"90.993µs"} -{"level":"debug","ts":"2023-08-03T06:39:38.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:38","latency":"94.4µs"} -{"level":"debug","ts":"2023-08-03T06:39:42.220Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:43","latency":"93.416µs"} -{"level":"debug","ts":"2023-08-03T06:39:43.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:43","latency":"80.797µs"} -{"level":"debug","ts":"2023-08-03T06:39:47.221Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:39:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:48","latency":"98.234µs"} -{"level":"debug","ts":"2023-08-03T06:39:48.105Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:48","latency":"88.685µs"} -{"level":"debug","ts":"2023-08-03T06:39:52.221Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:53","latency":"96.223µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:53","latency":"76.406µs"} -{"level":"debug","ts":"2023-08-03T06:39:56.047Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:56","latency":"69.674µs"} -{"level":"debug","ts":"2023-08-03T06:39:56.252Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:56","latency":"65.882µs"} -{"level":"debug","ts":"2023-08-03T06:39:57.221Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:58","latency":"134.531µs"} -{"level":"debug","ts":"2023-08-03T06:39:58.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:39:58","latency":"106.601µs"} -{"level":"debug","ts":"2023-08-03T06:39:59.266Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"1.767472ms"} -{"level":"debug","ts":"2023-08-03T06:39:59.476Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_94476f7f_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"4.229229ms"} -{"level":"debug","ts":"2023-08-03T06:39:59.684Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_94476f7f_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"2.942654ms"} -{"level":"info","ts":"2023-08-03T06:40:01.194Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:40:01.194Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:40:01.194Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} -{"level":"debug","ts":"2023-08-03T06:40:01.195Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"info","ts":"2023-08-03T06:40:01.195Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} -{"level":"debug","ts":"2023-08-03T06:40:01.195Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:40:01.195Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.196Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"info","ts":"2023-08-03T06:40:01.198Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:40:01.198Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.199Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:01.199Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","duration":734} -{"level":"info","ts":"2023-08-03T06:40:01.199Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} -{"level":"info","ts":"2023-08-03T06:40:01.199Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} -{"level":"debug","ts":"2023-08-03T06:40:01.200Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"c4d547a7690bf33888c8b7f70f498991f5f6326cfd2f2f411ebe59c7cf118969\\\" \\n\\ntransmitterID = \\\"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_94476f7f_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_94476f7f_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:01","latency":"13.748498ms"} -{"level":"debug","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} -{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:01.200Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:01.200Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"]} -{"level":"info","ts":"2023-08-03T06:40:01.201Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","streamName":"ragedisco/v1","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"numQueried":4,"numFound":1,"numLoaded":1,"id":"ragep2p","found":["12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"],"loaded":["12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"]} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","oracleID":1,"_id":"OCREndpointV2","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}]} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e"} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6"} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","oracleID":1,"_id":"OCREndpointV2","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"PeerV2"} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.204Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"info","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","ne":1,"previousNe":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"info","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":1,"leader":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:01.205Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:01.206Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.002243494} -{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.002260421} -{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":1,"observation":"CMGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":1} -{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":1,"leader":1,"round":1,"sender":1,"msgEpoch":1,"msgRound":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:01.208Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":1,"leader":1,"round":1,"observationCount":1,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:02.222Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:40:02.253Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.296Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:03","latency":"106.949µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:03","latency":"102.518µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.206Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:03.326Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.328Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.381Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.382Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.399Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.400Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.462Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.463Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.467Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.468Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.535Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.537Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.534Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.535Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"warn","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"warn","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"warn","ts":"2023-08-03T06:40:06.558Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj"} -{"level":"info","ts":"2023-08-03T06:40:06.561Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"out","remoteAddr":"10.14.91.55:6690"} -{"level":"info","ts":"2023-08-03T06:40:06.562Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","streamID":"61eca7b6d058a9bc196612061c5d4fd35bacb26e95b411742997217eb8f852a1","streamName":"ragedisco/v1","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG"} -{"level":"debug","ts":"2023-08-03T06:40:06.570Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.572Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"processAnnouncement"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:07.223Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:07.606Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.607Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.648Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.649Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:08","latency":"89.984µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:08","latency":"95.8µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.629Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.631Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.678Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.680Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.689Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.690Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.697Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.698Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"in","remoteAddr":"10.14.21.114:44696","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"527925505c6abe2d1db206af99d55cb17d8e443ae9796e739f831477d9b591f1","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:09.823Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamID":"69976e383a068900b8cf86dca1e4466171d07133630b1929ac149610a3fb6a7e","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:10.771Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.773Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.796Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.798Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.819Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.820Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.849Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.851Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","direction":"in","remoteAddr":"10.14.3.137:37718"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","streamID":"435708c658d7f974527aa310e03515ba5d6004bdd7c6615720e0a199c1bffde6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:11.960Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"9737ee4d80df7ce7ece0ec34e3e1900a2ac28e672c7207c601ce4be467368cf8","streamName":"ragedisco/v1","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","candidateEpochs":[2,2,3],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"newEpoch":2} -{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":1,"e":1,"l":1} -{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:11.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001130393} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001474323} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"leader":0,"round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:12.224Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviation":true,"initialRound":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"deltaCTimeout":true,"unfulfilledRequest":true,"alphaReportPPB":0,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1},"deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":2,"leader":0,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":0,"Round":0},"reportEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1,"sender":2,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:12.821Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.823Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044811}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.860Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.861Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001122816} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001120366} -{"level":"debug","ts":"2023-08-03T06:40:12.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:13","latency":"93.911µs"} -{"level":"debug","ts":"2023-08-03T06:40:13.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:13","latency":"97.913µs"} -{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","reportingPlugin":"NumericalMedian","deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"initialRound":false,"alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:11.000Z","deviation":true,"unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":0,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":2,"Round":2},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"deviates":true,"result":true,"contractEpochRound":{"Epoch":2,"Round":1},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"info","ts":"2023-08-03T06:40:13.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","direction":"in","remoteAddr":"10.14.113.114:57816","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50"} -{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","remotePeerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-03T06:40:13.623Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:13.623Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:13.874Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.876Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.908Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.909Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001034699} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001175208} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":3,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"info","ts":"2023-08-03T06:40:14.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviation":true,"result":true,"alphaReportInfinite":false,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportPPB":0,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3},"deltaC":0,"reportingPlugin":"NumericalMedian","deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":2,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"reportEpochRound":{"Epoch":2,"Round":3}} -{"level":"info","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:14.467Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:14.467Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"debug","ts":"2023-08-03T06:40:14.468Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"36fff508-67aa-4306-ad14-7c0889f28aaa","signature":"32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL"} -{"level":"debug","ts":"2023-08-03T06:40:14.468Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL","id":"36fff508-67aa-4306-ad14-7c0889f28aaa"} -{"level":"debug","ts":"2023-08-03T06:40:14.850Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"36fff508-67aa-4306-ad14-7c0889f28aaa","signature":"32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL"} -{"level":"debug","ts":"2023-08-03T06:40:14.850Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"36fff508-67aa-4306-ad14-7c0889f28aaa","signatures":["32Rie7Gj5iKa2pRX5UTQVvSGgTRXgdCXbrs6gX2th3o4fYYFStAFJQbTmfTf8w6Koo2kmLcNNKGMmU25JKzvwgUL"]} -{"level":"debug","ts":"2023-08-03T06:40:14.929Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.931Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.960Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044813}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2,"leader":0,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"newEpoch":3,"candidateEpochs":[3,3,3]} -{"level":"info","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":0,"e":2,"l":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":2} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.00114852} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001339573} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"sender":1,"msgEpoch":3,"msgRound":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"round":1,"observationCount":1,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"msgRound":1,"round":1,"sender":3,"msgEpoch":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observationCount":2,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","msgEpoch":3,"msgRound":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"msgRound":1,"round":1,"sender":0,"msgEpoch":3} -{"level":"debug","ts":"2023-08-03T06:40:14.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} -{"level":"info","ts":"2023-08-03T06:40:15.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:40:13.000Z","initialRound":false,"deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"alphaReportInfinite":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deviation":true,"result":true,"unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":3,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"currentPhase":"final","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":1,"epoch":3,"round":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","result":true,"contractEpochRound":{"Epoch":2,"Round":3},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"reportEpochRound":{"Epoch":3,"Round":1}} -{"level":"info","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.470Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180","signature":"59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw"} -{"level":"debug","ts":"2023-08-03T06:40:15.470Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180"} -{"level":"debug","ts":"2023-08-03T06:40:15.903Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180","signature":"59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw"} -{"level":"debug","ts":"2023-08-03T06:40:15.903Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"5bc50ae9-8b1f-4e34-a7d1-87b0d517d180","signatures":["59EhiHpf8HTaH6urW3kdtHokNB18dgodxAHZVet1mjvG1T2AeAN5yU2ySF1TDQreshXdCb1qhKwUiLdFogXe2Fw"]} -{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001168708} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001219135} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":2,"sender":1,"msgEpoch":3,"msgRound":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"round":2,"sender":3,"msgEpoch":3,"msgRound":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":2,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":0,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"msgEpoch":3,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observationCount":3,"requiredObservationCount":3,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:15.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:15.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":2,"msgEpoch":3,"msgRound":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:15.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:15.968Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.969Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.000Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.002Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.202Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV"} -{"level":"info","ts":"2023-08-03T06:40:16.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","unfulfilledRequest":false,"alphaReportInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2},"deltaC":0,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1,"round":2,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":2,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","currentPhase":"final","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":3,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":3,"round":2,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:16.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:16.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001259691} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001258023} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","msgEpoch":3,"msgRound":3,"round":3,"sender":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3,"observationCount":1} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":3,"sender":3,"msgEpoch":3,"msgRound":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"requiredObservationCount":3,"round":3,"observationCount":2,"leader":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:16.965Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1,"msgEpoch":3,"msgRound":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observationCount":3,"requiredObservationCount":3,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"epoch":3,"leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":3,"sender":2,"msgEpoch":3,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:40:16.966Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:17.022Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.024Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.060Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.061Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.224Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:17.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaC":0,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"unfulfilledRequest":false,"initialRound":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z"} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"currentPhase":"final","leader":1} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":3,"leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"result":true,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":3,"Round":2},"reportEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":0,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":3,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":1,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","newEpoch":4,"candidateEpochs":[4,4,4]} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":3,"l":1,"epoch":3} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001086269} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001141548} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1,"observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":1,"sender":1,"msgEpoch":4,"msgRound":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","requiredObservationCount":3,"round":1,"observationCount":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":3,"msgEpoch":4,"msgRound":1,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":1,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"msgRound":1,"round":1,"sender":2,"msgEpoch":4,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:17.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":1,"sender":0,"msgEpoch":4,"msgRound":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:18.072Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.074Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:18","latency":"92.699µs"} -{"level":"debug","ts":"2023-08-03T06:40:18.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:18","latency":"91.697µs"} -{"level":"debug","ts":"2023-08-03T06:40:18.108Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.109Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:18.468Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","reportingPlugin":"NumericalMedian","deltaC":0,"alphaReportInfinite":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"deviation":true,"unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z","initialRound":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"currentPhase":"final","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","currentPhase":"final","round":1,"oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":4,"Round":1},"alphaAcceptPPB":0,"deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":3},"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false} -{"level":"info","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":1,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:18.472Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"27043891-af33-44d4-8f49-4955180c8d20","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"} -{"level":"debug","ts":"2023-08-03T06:40:18.472Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ","id":"27043891-af33-44d4-8f49-4955180c8d20"} -{"level":"debug","ts":"2023-08-03T06:40:18.515Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001247925} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001284058} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"msgEpoch":4,"msgRound":2,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"observationCount":1,"requiredObservationCount":3,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":2,"sender":3,"msgEpoch":4,"msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":2,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"msgEpoch":4,"oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","msgRound":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","observationCount":3,"requiredObservationCount":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2,"sender":2,"msgEpoch":4,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:40:18.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:19.048Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"27043891-af33-44d4-8f49-4955180c8d20","signature":"4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"} -{"level":"debug","ts":"2023-08-03T06:40:19.048Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"27043891-af33-44d4-8f49-4955180c8d20","signatures":["4W2wJKoD3UPJ7QCYkXrCGVfVriHVbbZANxSw67QQY4Qrh8hT7geHPLE8dWEMQ2bTHMUcWmfF2hWN6jnpEc3nwZyJ"]} -{"level":"debug","ts":"2023-08-03T06:40:19.135Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.136Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.154Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.156Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044817}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:19.468Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaReportPPB":0,"result":true,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:40:17.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":2},"unfulfilledRequest":false,"initialRound":false,"deviation":true,"deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":2,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"currentPhase":"final","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":2,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":4,"Round":2,"H":[227,57,141,191,243,159,108,42,91,240,130,82,173,222,213,122,27,228,168,157,52,71,161,87,8,106,134,129,242,145,113,65],"AttestedReport":{"Report":"ZMtL0gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"kcGwJXWpR5Mz62YXjS3uTL5R0RpyrG3Kie73vzL0UsAL+RJqAkF2+VVCp+ioeQm0W3klhOq2wy3pIQaMcNSAGwE=","Signer":1},{"Signature":"X83nLJ9mOnIhxpODNMp8SVQt2xuHC6mERVsxuGnraeVtWtlGiUfeqGNYw13NLpKjZIDTlzoobF5iBe0xbjGSVAA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":4,"Round":1},"latestAcceptedEpochRound":{"Epoch":4,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","deviates":true,"result":true,"reportEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":2,"epoch":4,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001124865} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.00117483} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3,"observation":"CNOXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"msgEpoch":4,"msgRound":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observationCount":1,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"sender":3,"msgEpoch":4,"msgRound":3} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":0,"msgEpoch":4,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"round":3,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":2,"msgEpoch":4,"msgRound":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:19.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:20.173Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.174Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044818}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:20.470Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","lastTransmissionTimestamp":"2023-08-03T06:40:18.000Z","alphaReportInfinite":false,"deltaCTimeout":true,"unfulfilledRequest":false,"deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":3},"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","initialRound":false,"alphaReportPPB":0,"deviation":true} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":3,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","currentPhase":"final","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"event":{"Epoch":4,"Round":3,"H":[181,36,61,27,174,108,246,113,97,41,205,33,84,28,183,101,35,106,8,1,125,130,59,188,121,223,60,71,111,23,153,24],"AttestedReport":{"Report":"ZMtL0wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"oR2KORlVQ0wBVdEB+7t4EOfHRkfHeS4lhKdYobI85TtgFxlp/gseoIp6T5DkymCZc9WfEnZUDNNlkPwN1vNvqwA=","Signer":1},{"Signature":"fyHaVozEk0cFxbTE93pMb6UIaS3U1B2tcJ3eTP14jhw/XEpCHIY33MMgNbad5njRlfvuJ39BiZW2yB+U+nNTuQA=","Signer":3}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaAcceptInfinite":false,"deviates":true,"result":true,"alphaAcceptPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":4,"Round":2},"reportEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} -{"level":"info","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":4,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.473Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"} -{"level":"debug","ts":"2023-08-03T06:40:20.473Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9"} -{"level":"debug","ts":"2023-08-03T06:40:20.632Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"} -{"level":"debug","ts":"2023-08-03T06:40:20.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":4,"leader":1,"round":4} -{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","candidateEpochs":[5,5,5],"newEpoch":5} -{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":4,"l":1} -{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.000965456} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001085333} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"round":1,"observation":"CNSXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:21.181Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9","signature":"3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"} -{"level":"debug","ts":"2023-08-03T06:40:21.181Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"d0aa20a5-e10d-4cfd-b328-e587ed2ac7b9","signatures":["3DmueoMjy44S2fnQhB5jSdzzaYLbHHvZuPyaXXXBN6qGfdTFN9WLXdhcNWYC3gRD13NMVUtq5nmoTKZaYJvsMM1V"]} -{"level":"debug","ts":"2023-08-03T06:40:21.219Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.221Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044819}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.246Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.247Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:21.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviation":true,"deltaC":0,"unfulfilledRequest":false,"alphaReportInfinite":false,"reportingPlugin":"NumericalMedian","result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":1},"initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:19.000Z","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"round":1,"sender":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":5,"Round":1,"H":[243,61,202,42,224,181,183,218,241,208,244,117,159,59,51,174,3,98,247,140,142,168,220,234,218,40,96,148,2,253,44,62],"AttestedReport":{"Report":"ZMtL1AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"30Yu94e8+c++7s+1YsWJScUoofdaBDTVTowQitmiHqtp5MyTgYg6J6TrPiHOgZynpm4d4qfis/oIwz1YmZreCgA=","Signer":1},{"Signature":"YXb+BzoK0JnxcYDU6xA3aK2nPBFDNg6U1GnrRNBiQOZhiOA4vVCvZfcw96LcimOFcOP8MQSpeSPoB6pml7nKQQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":4,"Round":3},"result":true,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":4,"Round":3},"reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":0,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001056571} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001141311} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"round":2,"observation":"CNWXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:22.225Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:22.284Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.286Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044820}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.329Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.330Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.468Z","logger":"OCR2","caller":"median/median.go:665","msg":"ShouldTransmitAcceptedReport() = false, report is stale","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","contractEpochRound":{"Epoch":5,"Round":1},"reportEpochRound":{"Epoch":2,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian"} -{"level":"info","ts":"2023-08-03T06:40:22.468Z","logger":"OCR2","caller":"protocol/transmission.go:270","msg":"eventTTransmitTimeout: ReportingPlugin.ShouldTransmitAcceptedReport returned false","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"info","ts":"2023-08-03T06:40:22.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaReportInfinite":false,"deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":2},"lastTransmissionTimestamp":"2023-08-03T06:40:20.000Z","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"alphaReportPPB":0,"unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","initialRound":false,"deviation":true,"deltaC":0} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","event":{"Epoch":5,"Round":2,"H":[9,24,59,213,110,59,8,68,170,72,213,193,39,135,1,138,175,186,31,36,28,209,54,71,6,22,178,46,143,74,83,0],"AttestedReport":{"Report":"ZMtL1QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZsWULiQqkHjwQ3dXgncTf1PEh8Ot54ynIUzLeVM+7d9Kj2/bmoBUrga8cCP43umZzPNkCxmFCTZasTH73ANwNgE=","Signer":1},{"Signature":"3WIB/MoU8M9fTdnAPrs/A9AupqaHeexO7B/T3bweu2oTIzPlQPSSVu6QkLxvdXWjKQOgTUtyNlwgoemez7S9bQA=","Signer":3}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":5,"round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deviates":true,"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"reportEpochRound":{"Epoch":5,"Round":2},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"contractEpochRound":{"Epoch":5,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001123426} -{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001104946} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":3,"observation":"CNaXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":3} -{"level":"debug","ts":"2023-08-03T06:40:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:23","latency":"101.558µs"} -{"level":"debug","ts":"2023-08-03T06:40:23.106Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.48.162","errors":"","servedAt":"2023-08-03 06:40:23","latency":"89.059µs"} -{"level":"debug","ts":"2023-08-03T06:40:23.303Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:23.305Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044821}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:23.394Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:23.395Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:23.474Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaC":0,"alphaReportInfinite":false,"deltaCTimeout":true,"deviation":true,"reportingPlugin":"NumericalMedian","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":3},"lastTransmissionTimestamp":"2023-08-03T06:40:21.000Z","unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":5,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":5,"Round":3,"H":[206,10,102,211,94,46,53,54,160,208,1,190,82,9,82,0,67,232,24,141,115,142,233,76,161,174,149,241,139,68,91,22],"AttestedReport":{"Report":"ZMtL1gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"wCwtYwuDAQL1SuYSl5Gx/6NIBoMoicnfTXUn0Jc1cXtc5zmEa/AGJt+PgSibS1uV//fZx5SxGxhFviKOiV5qggE=","Signer":1},{"Signature":"QjmlxdpCkNOgnF2Ho2LRsrplpzHGN8G1cuOpRrccg7ZEYfqk6Npid3xt8OaT71xsjIuczdBBogwTfyucV6PO2AA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","contractEpochRound":{"Epoch":5,"Round":2},"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":5,"Round":3},"latestAcceptedEpochRound":{"Epoch":5,"Round":2},"alphaAcceptPPB":0,"deviates":true,"result":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":3,"epoch":5,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"sender":0,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:23.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":4,"messageRound":4,"roundMax":3,"oid":1} -{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","newEpoch":6,"candidateEpochs":[6,6,6],"oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":5,"leader":3,"e":5,"l":3} -{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.000982493} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001035079} -{"level":"debug","ts":"2023-08-03T06:40:23.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":1,"observation":"CNeXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:24.400Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:24.402Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044822}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:24.471Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:24.472Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:24.475Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","alphaReportPPB":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","initialRound":false,"deltaC":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":1},"alphaReportInfinite":false,"deviation":true,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","unfulfilledRequest":false} -{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","epoch":6,"leader":0,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1} -{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":6,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":6,"Round":1,"H":[244,15,111,137,250,135,131,135,57,90,142,230,115,72,200,82,209,144,198,249,55,197,244,193,147,100,71,25,50,26,111,154],"AttestedReport":{"Report":"ZMtL1wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"knjjpTh9l8tAEyTuDt+dkqgTNuqEKHogYxpdJlXDn4Fhs7AL+CU2wAvtRCpiFp38YoiIrahj+WRQRrHt7FiDzgE=","Signer":0},{"Signature":"KWlkh7TOU0KwcC9sSc6opF+P0H6IIbVGvO2L4lgI2LFmTydggb7Crmx23p7dQ03T3TCZIDx5kOyiRe8tC55jSwE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","contractEpochRound":{"Epoch":5,"Round":3},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":5,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":6,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd"} -{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","specID":1,"runTime":0.001040028} -{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":0,"jobName":"","specID":1,"runTime":0.001089664} -{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","oid":1,"epoch":6,"leader":0,"round":2,"observation":"CNiXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:25.474Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","alphaReportPPB":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"unfulfilledRequest":false,"deviation":true,"initialRound":false,"deltaC":0,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"event":{"Epoch":6,"Round":2,"H":[38,148,213,49,227,64,117,63,131,130,132,239,183,36,175,40,250,10,156,19,9,56,1,120,11,158,42,227,38,215,82,129],"AttestedReport":{"Report":"ZMtL2AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"S8ReeuNDPqeylRH8qo7M+W/JowNfCQiXNQpfNDCQUJBjX3XnBj0hfXrvaPru4uV0+YbBJbQ/jlbZWW0lv6lD7gE=","Signer":0},{"Signature":"K+YE4vsQyAFd3jxGBb8NnPNCVDqEGqa7u5ThUpnWRpdrQoU3ETZPTNQ8rlyOIYbLsV5A2hYIyZAc2Uq9JTgC8wE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","result":true,"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportingPlugin":"NumericalMedian","contractEpochRound":{"Epoch":5,"Round":3},"reportEpochRound":{"Epoch":6,"Round":2},"latestAcceptedEpochRound":{"Epoch":6,"Round":1},"alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-2-8f0c75ae-0eff-4e9a-aa1d-ff77af6f21cd","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"BgtPMLjCaxH8hyDaqykQosyF8fXs3JKigMSDwwpqSZoV","round":2,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:40:25.487Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.489Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044823}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.496Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.497Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log deleted file mode 100644 index 52a880553..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db.log +++ /dev/null @@ -1,62 +0,0 @@ -The files belonging to this database system will be owned by user "postgres". -This user must also own the server process. - -The database cluster will be initialized with locale "en_US.utf8". -The default database encoding has accordingly been set to "UTF8". -The default text search configuration will be set to "english". - -Data page checksums are disabled. - -fixing permissions on existing directory /var/lib/postgresql/data ... ok -creating subdirectories ... ok -selecting default max_connections ... 100 -selecting default shared_buffers ... 128MB -selecting default timezone ... Etc/UTC -selecting dynamic shared memory implementation ... posix -creating configuration files ... ok -running bootstrap script ... ok -performing post-bootstrap initialization ... ok -syncing data to disk ... ok - -Success. You can now start the database server using: - - pg_ctl -D /var/lib/postgresql/data -l logfile start - - -WARNING: enabling "trust" authentication for local connections -You can change this by editing pg_hba.conf or using the option -A, or ---auth-local and --auth-host, the next time you run initdb. -waiting for server to start....2023-08-03 06:33:05.770 UTC [48] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:05.856 UTC [49] LOG: database system was shut down at 2023-08-03 06:33:05 UTC -2023-08-03 06:33:05.860 UTC [48] LOG: database system is ready to accept connections - done -server started -CREATE DATABASE - - -/usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql -CREATE EXTENSION - - -waiting for server to shut down...2023-08-03 06:33:06.464 UTC [48] LOG: received fast shutdown request -.2023-08-03 06:33:06.466 UTC [48] LOG: aborting any active transactions -2023-08-03 06:33:06.468 UTC [48] LOG: background worker "logical replication launcher" (PID 55) exited with exit code 1 -2023-08-03 06:33:06.468 UTC [50] LOG: shutting down -2023-08-03 06:33:06.558 UTC [48] LOG: database system is shut down - done -server stopped - -PostgreSQL init process complete; ready for start up. - -2023-08-03 06:33:06.575 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432 -2023-08-03 06:33:06.575 UTC [1] LOG: listening on IPv6 address "::", port 5432 -2023-08-03 06:33:06.577 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" -2023-08-03 06:33:06.651 UTC [85] LOG: database system was shut down at 2023-08-03 06:33:06 UTC -2023-08-03 06:33:06.655 UTC [1] LOG: database system is ready to accept connections -2023-08-03 06:33:07.447 UTC [92] FATAL: role "chainlink" does not exist -2023-08-03 06:33:08.547 UTC [94] ERROR: relation "node_versions" does not exist at character 21 -2023-08-03 06:33:08.547 UTC [94] STATEMENT: SELECT version FROM node_versions ORDER BY created_at DESC LIMIT 1 FOR UPDATE -2023-08-03 06:33:08.547 UTC [94] ERROR: relation "migrations" does not exist at character 16 -2023-08-03 06:33:08.547 UTC [94] STATEMENT: SELECT id FROM migrations -2023-08-03 06:33:08.547 UTC [94] ERROR: relation "goose_migrations" does not exist at character 36 -2023-08-03 06:33:08.547 UTC [94] STATEMENT: SELECT version_id, is_applied from goose_migrations ORDER BY id DESC diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql deleted file mode 100644 index 218cc5277..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/chainlink-db_dump.sql +++ /dev/null @@ -1,22 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 11.15 (Debian 11.15-1.pgdg90+1) --- Dumped by pg_dump version 11.15 (Debian 11.15-1.pgdg90+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- PostgreSQL database dump complete --- - diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log deleted file mode 100644 index 7dbc46ef3..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/chainlink-0_4/node.log +++ /dev/null @@ -1,1021 +0,0 @@ -0.0.0.0:5432 - accepting connections -{"level":"debug","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"chainlink/config_general.go:258","msg":"# Secrets:\n[Database]\nURL = 'xxxxx'\nAllowSimplePasswords = false\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"chainlink/config_general.go:259","msg":"# Input Configuration:\nRootDir = './clroot'\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\n\n[WebServer]\nAllowOrigins = '*'\nSecureCookies = false\nSessionTimeout = '999h0m0s'\n\n[WebServer.TLS]\nHTTPSPort = 0\n\n[OCR2]\nEnabled = true\n\n[P2P]\n[P2P.V2]\nEnabled = true\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"chainlink/config_general.go:260","msg":"# Effective Configuration, with defaults applied:\nExplorerURL = ''\nInsecureFastScrypt = false\nRootDir = './clroot'\nShutdownGracePeriod = '5s'\n\n[Feature]\nFeedsManager = true\nLogPoller = false\nUICSAKeys = false\n\n[Database]\nDefaultIdleInTxSessionTimeout = '1h0m0s'\nDefaultLockTimeout = '15s'\nDefaultQueryTimeout = '10s'\nLogQueries = false\nMaxIdleConns = 10\nMaxOpenConns = 20\nMigrateOnStartup = true\n\n[Database.Backup]\nDir = ''\nFrequency = '1h0m0s'\nMode = 'none'\nOnVersionUpgrade = true\n\n[Database.Listener]\nMaxReconnectDuration = '10m0s'\nMinReconnectInterval = '1m0s'\nFallbackPollInterval = '30s'\n\n[Database.Lock]\nEnabled = true\nLeaseDuration = '10s'\nLeaseRefreshInterval = '1s'\n\n[TelemetryIngress]\nUniConn = true\nLogging = false\nServerPubKey = ''\nURL = ''\nBufferSize = 100\nMaxBatchSize = 50\nSendInterval = '500ms'\nSendTimeout = '10s'\nUseBatchSend = true\n\n[AuditLogger]\nEnabled = false\nForwardToUrl = ''\nJsonWrapperKey = ''\nHeaders = []\n\n[Log]\nLevel = 'debug'\nJSONConsole = true\nUnixTS = false\n\n[Log.File]\nDir = ''\nMaxSize = '5.12gb'\nMaxAgeDays = 0\nMaxBackups = 1\n\n[WebServer]\nAllowOrigins = '*'\nBridgeResponseURL = ''\nBridgeCacheTTL = '0s'\nHTTPWriteTimeout = '10s'\nHTTPPort = 6688\nSecureCookies = false\nSessionTimeout = '999h0m0s'\nSessionReaperExpiration = '240h0m0s'\nHTTPMaxSize = '32.77kb'\nStartTimeout = '15s'\nListenIP = '0.0.0.0'\n\n[WebServer.MFA]\nRPID = ''\nRPOrigin = ''\n\n[WebServer.RateLimit]\nAuthenticated = 1000\nAuthenticatedPeriod = '1m0s'\nUnauthenticated = 5\nUnauthenticatedPeriod = '20s'\n\n[WebServer.TLS]\nCertPath = ''\nForceRedirect = false\nHost = ''\nHTTPSPort = 0\nKeyPath = ''\nListenIP = '0.0.0.0'\n\n[JobPipeline]\nExternalInitiatorsEnabled = false\nMaxRunDuration = '10m0s'\nMaxSuccessfulRuns = 10000\nReaperInterval = '1h0m0s'\nReaperThreshold = '24h0m0s'\nResultWriteQueueDepth = 100\n\n[JobPipeline.HTTPRequest]\nDefaultTimeout = '15s'\nMaxSize = '32.77kb'\n\n[FluxMonitor]\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\n\n[OCR2]\nEnabled = true\nContractConfirmations = 3\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nContractTransmitterTransmitTimeout = '10s'\nDatabaseTimeout = '10s'\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nCaptureEATelemetry = false\nCaptureAutomationCustomTelemetry = false\nDefaultTransactionQueueDepth = 1\nSimulateTransactions = false\nTraceLogging = false\n\n[OCR]\nEnabled = false\nObservationTimeout = '5s'\nBlockchainTimeout = '20s'\nContractPollInterval = '1m0s'\nContractSubscribeInterval = '2m0s'\nDefaultTransactionQueueDepth = 1\nKeyBundleID = '0000000000000000000000000000000000000000000000000000000000000000'\nSimulateTransactions = false\nTransmitterAddress = ''\nCaptureEATelemetry = false\nTraceLogging = false\n\n[P2P]\nIncomingMessageBufferSize = 10\nOutgoingMessageBufferSize = 10\nPeerID = ''\nTraceLogging = false\n\n[P2P.V1]\nEnabled = true\nAnnounceIP = ''\nAnnouncePort = 0\nBootstrapCheckInterval = '20s'\nDefaultBootstrapPeers = []\nDHTAnnouncementCounterUserPrefix = 0\nDHTLookupInterval = 10\nListenIP = '0.0.0.0'\nListenPort = 0\nNewStreamTimeout = '10s'\nPeerstoreWriteInterval = '5m0s'\n\n[P2P.V2]\nEnabled = true\nAnnounceAddresses = []\nDefaultBootstrappers = []\nDeltaDial = '5s'\nDeltaReconcile = '5s'\nListenAddresses = ['0.0.0.0:6690']\n\n[Keeper]\nDefaultTransactionQueueDepth = 1\nGasPriceBufferPercent = 20\nGasTipCapBufferPercent = 20\nBaseFeeBufferPercent = 20\nMaxGracePeriod = 100\nTurnLookBack = 1000\n\n[Keeper.Registry]\nCheckGasOverhead = 200000\nPerformGasOverhead = 300000\nMaxPerformDataSize = 5000\nSyncInterval = '30m0s'\nSyncUpkeepQueueSize = 10\n\n[AutoPprof]\nEnabled = false\nProfileRoot = ''\nPollInterval = '10s'\nGatherDuration = '10s'\nGatherTraceDuration = '5s'\nMaxProfileSize = '100.00mb'\nCPUProfileRate = 1\nMemProfileRate = 1\nBlockProfileRate = 1\nMutexProfileFraction = 1\nMemThreshold = '4.00gb'\nGoroutineThreshold = 5000\n\n[Pyroscope]\nServerAddress = ''\nEnvironment = 'mainnet'\n\n[Sentry]\nDebug = false\nDSN = ''\nEnvironment = ''\nRelease = ''\n\n[Insecure]\nDevWebServer = false\nOCRDevelopmentMode = false\nInfiniteDepthQueries = false\nDisableRateLimiting = false\n\n[[Solana]]\nChainID = 'localnet'\nEnabled = true\nBalancePollPeriod = '5s'\nConfirmPollPeriod = '500ms'\nOCR2CachePollPeriod = '1s'\nOCR2CacheTTL = '1m0s'\nTxTimeout = '1m0s'\nTxRetryTimeout = '10s'\nTxConfirmTimeout = '30s'\nSkipPreflight = true\nCommitment = 'confirmed'\nMaxRetries = 0\nFeeEstimatorMode = 'fixed'\nComputeUnitPriceMax = 1000\nComputeUnitPriceMin = 0\nComputeUnitPriceDefault = 0\nFeeBumpPeriod = '3s'\n\n[[Solana.Nodes]]\nName = 'primary'\nURL = 'http://sol:8899'\n\n","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:08.451Z","logger":"RunNode","caller":"cmd/shell_local.go:300","msg":"Starting Chainlink Node 2.4.0 at commit 114e0394bfffe62c27c09d5ee2de1af5e022e98f","version":"2.4.0@114e039","Version":"2.4.0","SHA":"114e0394bfffe62c27c09d5ee2de1af5e022e98f"} -{"level":"debug","ts":"2023-08-03T06:33:08.461Z","logger":"RunNode.LockedDB.StatsReporter","caller":"pg/stats.go:97","msg":"Starting DB stat reporter","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.461Z","logger":"RunNode.LockedDB","caller":"pg/locked_db.go:89","msg":"Using database locking mode: lease","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:08.461Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:88","msg":"Taking initial lease...","version":"2.4.0@114e039","appID":"32522ade-007b-4e60-b6af-0d36d4090d60"} -{"level":"debug","ts":"2023-08-03T06:33:08.466Z","logger":"RunNode.LockedDB.LeaseLock","caller":"pg/lease_lock.go:138","msg":"Got exclusive lease on database","version":"2.4.0@114e039","appID":"32522ade-007b-4e60-b6af-0d36d4090d60"} -{"level":"debug","ts":"2023-08-03T06:33:08.547Z","logger":"Version","caller":"versioning/orm.go:84","msg":"Previous version not set; node_versions table does not exist","version":"2.4.0@114e039","appVersion":"2.4.0"} -2023/08/03 06:33:08 OK 0001_initial.sql -2023/08/03 06:33:08 OK 0002_gormv2.sql -2023/08/03 06:33:08 OK 0003_eth_logs_table.sql -2023/08/03 06:33:08 OK 0004_cleanup_tx_attempt_state.sql -2023/08/03 06:33:08 OK 0005_tx_attempts_insufficient_eth_index.sql -2023/08/03 06:33:08 OK 0006_unique_task_specs_per_pipeline_run.sql -2023/08/03 06:33:08 OK 0007_reverse_eth_logs_table.sql -2023/08/03 06:33:09 OK 0008_reapply_eth_logs_table.sql -2023/08/03 06:33:09 OK 0009_add_min_payment_to_flux_monitor_spec.sql -2023/08/03 06:33:09 OK 0010_bridge_fk.sql -2023/08/03 06:33:09 OK 0011_latest_round_requested.sql -2023/08/03 06:33:09 OK 0012_change_jobs_to_numeric.sql -2023/08/03 06:33:09 OK 0013_create_flux_monitor_round_stats_v2.sql -2023/08/03 06:33:09 OK 0014_add_keeper_tables.sql -2023/08/03 06:33:09 OK 0015_simplify_log_broadcaster.sql -2023/08/03 06:33:09 OK 0016_pipeline_task_run_dot_id.sql -2023/08/03 06:33:09 OK 0017_bptxm_chain_nonce_fastforward.sql -2023/08/03 06:33:09 OK 0018_add_node_version_table.sql -2023/08/03 06:33:09 OK 0019_last_run_height_column_to_keeper_table.sql -2023/08/03 06:33:09 OK 0020_remove_result_task.sql -2023/08/03 06:33:09 OK 0021_add_job_id_topic_filter.sql -2023/08/03 06:33:09 OK 0022_unfinished_pipeline_task_run_idx.sql -2023/08/03 06:33:09 OK 0023_add_confirmations_to_direct_request.sql -2023/08/03 06:33:09 OK 0024_add_cron_spec_tables.sql -2023/08/03 06:33:09 OK 0025_create_log_config_table.sql -2023/08/03 06:33:09 OK 0026_eth_tx_meta.sql -2023/08/03 06:33:09 OK 0027_cascade_ocr_latest_round_request.sql -2023/08/03 06:33:09 OK 0028_vrf_v2.sql -2023/08/03 06:33:09 OK 0029_add_webhook_spec_tables.sql -2023/08/03 06:33:09 OK 0030_drop_keys_last_used.sql -2023/08/03 06:33:09 OK 0031_eth_tx_trigger_with_key_address.sql -2023/08/03 06:33:09 OK 0032_rename_direct_request_specs_num_confirmations.sql -2023/08/03 06:33:09 OK 0033_flux_monitor_round_stats_fk_index.sql -2023/08/03 06:33:09 OK 0034_webhook_external_initiator.sql -2023/08/03 06:33:09 OK 0035_create_feeds_managers.sql -2023/08/03 06:33:09 OK 0036_external_job_id.go -2023/08/03 06:33:09 OK 0037_cascade_deletes.sql -2023/08/03 06:33:09 OK 0038_create_csa_keys.sql -2023/08/03 06:33:09 OK 0039_remove_fmv2_precision.sql -2023/08/03 06:33:09 OK 0040_heads_l1_block_number.sql -2023/08/03 06:33:09 OK 0041_eth_tx_strategies.sql -2023/08/03 06:33:09 OK 0042_create_job_proposals.sql -2023/08/03 06:33:09 OK 0043_gas_limit_on_eth_tx_attempts.sql -2023/08/03 06:33:09 OK 0044_create_table_ocr_discoverer_database.sql -2023/08/03 06:33:09 OK 0045_add_uuid_to_pipeline_task_runs.sql -2023/08/03 06:33:09 OK 0046_add_fmv2_drumbeat_ticker.sql -2023/08/03 06:33:09 OK 0047_add_uuid_to_job_proposals.sql -2023/08/03 06:33:09 OK 0048_add_ocr_bootstrap_node_to_feeds_manager.sql -2023/08/03 06:33:09 OK 0049_rename_job_id_to_external_job_id_in_job_proposals.sql -2023/08/03 06:33:09 OK 0050_add_ocr_bootstrap_fields_to_feeds_managers.sql -2023/08/03 06:33:09 OK 0051_webhook_specs_external_initiators_join.sql -2023/08/03 06:33:09 OK 0052_not_null_job_pipeline_spec_id.sql -2023/08/03 06:33:09 OK 0053_add_fmv2_drumbeat_random_delay.sql -2023/08/03 06:33:09 OK 0054_remove_legacy_pipeline.go -2023/08/03 06:33:09 OK 0055_add_multiaddrs_to_job_proposal.sql -2023/08/03 06:33:09 OK 0056_multichain.go -2023/08/03 06:33:09 OK 0057_add_pipeline_task_runs_id_to_eth_txs.sql -2023/08/03 06:33:09 OK 0058_direct_request_whitelist.sql -2023/08/03 06:33:09 OK 0059_direct_request_whitelist_min_contract_payment.sql -2023/08/03 06:33:09 OK 0060_combine_keys_tables.sql -2023/08/03 06:33:09 OK 0061_multichain_relations.sql -2023/08/03 06:33:09 OK 0062_upgrade_keepers.sql -2023/08/03 06:33:09 OK 0063_add_job_proposal_timestamp.sql -2023/08/03 06:33:09 OK 0064_cascade_delete_chain_nodes.sql -2023/08/03 06:33:09 OK 0065_ensure_chain_specific_gas_limit.sql -2023/08/03 06:33:09 OK 0066_update_job_proposal_status.sql -2023/08/03 06:33:09 OK 0067_update_check_job_proposals_status_fsm.sql -2023/08/03 06:33:09 OK 0068_eth_tx_from_address_idx.sql -2023/08/03 06:33:09 OK 0069_remove_unused_columns.sql -2023/08/03 06:33:09 OK 0070_dynamic_fee_txes.sql -2023/08/03 06:33:09 OK 0071_allow_null_json_serializable.sql -2023/08/03 06:33:09 OK 0072_drop_unused_tables.sql -2023/08/03 06:33:09 OK 0073_ocr_duplicate_contract_addresses_allowed_across_chains.sql -2023/08/03 06:33:09 OK 0074_simulation_eth_tx.sql -2023/08/03 06:33:09 OK 0075_unique_job_names.sql -2023/08/03 06:33:09 OK 0076_add_non_fatal_errors_to_runs.sql -2023/08/03 06:33:09 OK 0077_add_webauthn_table.sql -2023/08/03 06:33:09 OK 0078_only_one_version.sql -2023/08/03 06:33:09 OK 0079_vrf_v2_fields.sql -2023/08/03 06:33:09 OK 0080_drop_unused_cols.sql -2023/08/03 06:33:09 OK 0081_unconsumed_log_broadcasts.sql -2023/08/03 06:33:09 OK 0082_lease_lock.sql -2023/08/03 06:33:09 OK 0083_add_keeper_confirmations_to_spec.sql -2023/08/03 06:33:09 OK 0084_rename_vrf_min_incoming_confirmations.sql -2023/08/03 06:33:09 OK 0085_requested_confs_delay.sql -2023/08/03 06:33:09 OK 0086_upgrade_keepers_observation_source.sql -2023/08/03 06:33:09 OK 0087_ocr2_tables.sql -2023/08/03 06:33:09 OK 0088_vrfv2_request_timeout.sql -2023/08/03 06:33:09 OK 0089_ocr_spec_drop_p2p_peer_id.sql -2023/08/03 06:33:09 OK 0090_ocr_new_timeouts.sql -2023/08/03 06:33:09 OK 0091_ocr2_relay.sql -2023/08/03 06:33:09 OK 0092_bptxm_tx_checkers.sql -2023/08/03 06:33:09 OK 0093_terra_txm.sql -2023/08/03 06:33:09 OK 0094_blockhash_store_job.sql -2023/08/03 06:33:09 OK 0095_terra_fcd.sql -2023/08/03 06:33:09 OK 0096_create_job_proposal_specs.sql -2023/08/03 06:33:09 OK 0097_bootstrap_spec.sql -2023/08/03 06:33:09 OK 0098_fm_clear_job_types_from_bootstrap_nodes.sql -2023/08/03 06:33:09 OK 0099_terra_msgs_created_at.sql -2023/08/03 06:33:09 OK 0100_bootstrap_config.sql -2023/08/03 06:33:09 OK 0101_generic_ocr2.sql -2023/08/03 06:33:09 OK 0102_add_log_broadcasts_block_num_chain_idx.sql -2023/08/03 06:33:09 OK 0103_terra_msgs_type_url.sql -2023/08/03 06:33:09 OK 0104_terra_cascade_delete.sql -2023/08/03 06:33:09 OK 0105_create_forwarder_addresses.sql -2023/08/03 06:33:09 OK 0106_evm_node_uniqueness.sql -2023/08/03 06:33:09 OK 0107_vrf_multiple_from_addresses.sql -2023/08/03 06:33:09 OK 0108_upgrade_keepers_tx_meta.sql -2023/08/03 06:33:09 OK 0109_solana_chains_nodes.sql -2023/08/03 06:33:09 OK 0110_add_vrf_chunk_size.sql -2023/08/03 06:33:09 OK 0111_terra_msgs_state_started.sql -2023/08/03 06:33:09 OK 0112_vrf_batch_coordinator_address.sql -2023/08/03 06:33:09 OK 0113_vrf_v2_backoff_columns.sql -2023/08/03 06:33:09 OK 0114_add_last_keeper_id_to_upkeep_table.sql -2023/08/03 06:33:09 OK 0115_log_poller.sql -2023/08/03 06:33:09 OK 0116_migrate_upkeep_id_to_big_int.sql -2023/08/03 06:33:09 OK 0117_add_log_poller_idx.sql -2023/08/03 06:33:09 OK 0118_create_feeds_manager_chain_config.sql -2023/08/03 06:33:09 OK 0119_initial_rebroadcast_columns.sql -2023/08/03 06:33:09 OK 0120_log_poller_data_idx.sql -2023/08/03 06:33:09 OK 0121_remove_log_configs.sql -2023/08/03 06:33:09 OK 0122_upgrade_keepers_observation_source.sql -2023/08/03 06:33:09 OK 0123_terra_idx_simplify.sql -2023/08/03 06:33:09 OK 0124_rename_p2pBootstrapPeers_to_p2pv2Bootstrappers.sql -2023/08/03 06:33:09 OK 0125_keeper_flatten_schema_version.sql -2023/08/03 06:33:09 OK 0126_remove_observation_source.sql -2023/08/03 06:33:09 OK 0127_add_ocr1_p2pv2Bootstrappers.sql -2023/08/03 06:33:09 OK 0128_maxgaspricegwei_vrf.sql -2023/08/03 06:33:09 OK 0129_add_job_gas_limit.sql -2023/08/03 06:33:09 OK 0130_starknet_chains_nodes.sql -2023/08/03 06:33:09 OK 0131_add_multi_user.sql -2023/08/03 06:33:09 OK 0132_log_index_uniqueness.sql -2023/08/03 06:33:09 OK 0133_fix_pipeline_runs_constraint.sql -2023/08/03 06:33:09 OK 0134_starknet_nodes_chain_id.sql -2023/08/03 06:33:09 OK 0135_tx_index_not_null.sql -2023/08/03 06:33:09 OK 0136_add_job_allow_forwarding.sql -2023/08/03 06:33:09 OK 0137_remove_tx_index.sql -2023/08/03 06:33:09 OK 0138_rename_allowforwarding_field.sql -2023/08/03 06:33:09 OK 0139_multi_chain_keys.sql -2023/08/03 06:33:09 OK 0140_pipeline_runs_brin_to_btree.sql -2023/08/03 06:33:09 OK 0141_allow_broadcast_at_on_fatally_errored_tx.sql -2023/08/03 06:33:09 OK 0142_delete_eth_key_state_cascades.sql -2023/08/03 06:33:09 OK 0143_set_forwarding_allowed_not_null.sql -2023/08/03 06:33:09 OK 0144_optimize_lp.sql -2023/08/03 06:33:09 OK 0145_cascade_delete_of_evm_key_states.sql -2023/08/03 06:33:09 OK 0146_unique_contract_address_per_chain.sql -2023/08/03 06:33:09 OK 0147_remove_maxgaspricegwei_vrf.sql -2023/08/03 06:33:09 OK 0148_dkg_shares.sql -2023/08/03 06:33:09 OK 0149_bridge_last_good_value.sql -2023/08/03 06:33:09 OK 0150_gaslaneprice_vrf.sql -2023/08/03 06:33:09 OK 0151_bridge_last_good_value_use_tz.sql -2023/08/03 06:33:09 OK 0152_ocr2_multichain.sql -2023/08/03 06:33:09 OK 0153_ocr2_restore_global_constraint.sql -2023/08/03 06:33:09 OK 0154_ocr2dr_requests_table.sql -2023/08/03 06:33:09 OK 0155_remove_terra.sql -2023/08/03 06:33:09 OK 0156_add_evm_prefix_to_log_poller.sql -2023/08/03 06:33:09 OK 0157_add_log_poller_filters_table.sql -2023/08/03 06:33:09 OK 0158_deferrable_job_spec_errors_v2_fkey.sql -2023/08/03 06:33:09 OK 0159_add_name_to_job_proposals.sql -2023/08/03 06:33:09 OK 0160_bhs_multiple_from_addresses.sql -2023/08/03 06:33:09 OK 0161_update_job_proposal_status.sql -2023/08/03 06:33:09 OK 0162_logpoller_block_timestamps.sql -2023/08/03 06:33:09 OK 0163_mercury_jobs_multiple_per_contract.sql -2023/08/03 06:33:09 OK 0164_add_cosmos.sql -2023/08/03 06:33:09 OK 0165_update_job_proposal_constraints.sql -2023/08/03 06:33:09 OK 0166_block_header_feeder_job.sql -2023/08/03 06:33:09 OK 0167_update_job_proposal_specs_status.sql -2023/08/03 06:33:09 OK 0168_drop_node_tables.sql -2023/08/03 06:33:09 OK 0169_log_poller_pruning.sql -2023/08/03 06:33:09 OK 0170_gateway_job_spec.sql -2023/08/03 06:33:10 OK 0171_create_legacy_gas_station_resources.sql -2023/08/03 06:33:10 OK 0172_add_tx_hash_legacy_gasless_tx.sql -2023/08/03 06:33:10 OK 0173_add_s4_functions_table.sql -2023/08/03 06:33:10 OK 0174_vrf_owner.sql -2023/08/03 06:33:10 OK 0175_logpoller_querying_improvements.sql -2023/08/03 06:33:10 OK 0176_s4_shared_table.sql -2023/08/03 06:33:10 OK 0177_add_ocr_protocol_state.sql -2023/08/03 06:33:10 OK 0178_drop_access_list.sql -2023/08/03 06:33:10 OK 0179_notify_channel_on_log_inserts.sql -2023/08/03 06:33:10 OK 0180_ocr2_multiple_configs_per_spec.sql -2023/08/03 06:33:10 OK 0181_bhs_vrfv2plus.sql -2023/08/03 06:33:10 OK 0182_nullable_feed_id.sql -2023/08/03 06:33:10 OK 0183_functions_new_fields.sql -2023/08/03 06:33:10 OK 0184_chains_tables_removal.sql -2023/08/03 06:33:10 OK 0185_create_mercury_transmit_requests.sql -2023/08/03 06:33:10 goose: no migrations to run. current version: 185 -{"level":"debug","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:233","msg":"Pyroscope (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:246","msg":"Nurse service (automatic pprof profiling) is disabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:291","msg":"DatabaseBackup: periodic database backups are disabled. To enable automatic backups, set Database.Backup.Mode=lite or Database.Backup.Mode=full","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:402","msg":"Off-chain reporting disabled","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:10.095Z","caller":"chainlink/application.go:405","msg":"Off-chain reporting v2 enabled","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:14.160Z","logger":"KeyStore","caller":"keystore/ocr2.go:156","msg":"Created OCR2 key with ID dc7636abb7b594052074fe8fbf0b08318a676d19ec27de249392664741edff4c for chain type solana","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:14.160Z","logger":"KeyStore","caller":"keystore/p2p.go:150","msg":"Created P2P key with ID 12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:16.354Z","logger":"KeyStore","caller":"keystore/solana.go:158","msg":"Created Solana key with ID 2hpcb49J2iPLRtKVqcvminykaG9tHUaDeKv4H2LgP9gW","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:18.359Z","logger":"KeyStore","caller":"keystore/csa.go:156","msg":"Created CSA key with ID 2ffebf08c1b66ff37279ca008d90f23f6b33434852fdbb8ad2c286bf0707eb6b","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.648Z","logger":"RunNode","caller":"cmd/shell.go:1030","msg":"Initializing API credentials","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:20.777Z","logger":"RunNode","caller":"cmd/shell_local.go:476","msg":"API exposed for user notreal@fakeemail.ch","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:20.777Z","logger":"Feeds","caller":"feeds/service.go:949","msg":"no feeds managers registered","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopExplorerClient"} -{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressClient"} -{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"NoopTelemetryIngressBatchClient"} -{"level":"debug","ts":"2023-08-03T06:33:20.777Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EventBroadcaster"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"MailboxMonitor"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"EVM.ChainSet"} -{"level":"warn","ts":"2023-08-03T06:33:20.778Z","logger":"EVM.ChainSet","caller":"evm/chain_set.go:67","msg":"EVM is disabled, no EVM-based chains will be started","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"Solana-Solana.ChainSet"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:125","msg":"Starting","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.Chain","caller":"solana/chain.go:283","msg":"Starting","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.Chain","caller":"solana/chain.go:284","msg":"Starting txm","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.Chain","caller":"solana/chain.go:285","msg":"Starting balance monitor","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"info","ts":"2023-08-03T06:33:20.778Z","logger":"Solana.ChainSet","caller":"chains/chain_set.go:133","msg":"Started 1 chains","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PromReporter"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineORM"} -{"level":"info","ts":"2023-08-03T06:33:20.778Z","logger":"PipelineORM","caller":"pipeline/orm.go:133","msg":"Pipeline runs will be pruned above per-job limit of MaxSuccessfulRuns=10000","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"SingletonPeerWrapper"} -{"level":"warn","ts":"2023-08-03T06:33:20.778Z","logger":"KeyStore","caller":"keystore/p2p.go:183","msg":"No P2P.PeerID set, defaulting to first key in database","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:20.778Z","logger":"PromReporter","caller":"promreporter/prom_reporter.go:141","msg":"Starting event loop","version":"2.4.0@114e039"} -{"level":"warn","ts":"2023-08-03T06:33:20.779Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:169","msg":"P2PListenPort was not set, listening on random port 35421. A new random port will be generated on every boot, for stability it is recommended to set P2PListenPort to a fixed value in your environment","version":"2.4.0@114e039","p2pPort":35421} -{"level":"debug","ts":"2023-08-03T06:33:20.779Z","logger":"SingletonPeerWrapper","caller":"ocrcommon/peer_wrapper.go:112","msg":"Creating OCR/OCR2 Peer","version":"2.4.0@114e039","config":{"NetworkingStack":"V1V2","PrivKey":{},"Logger":{},"V1ListenIP":"0.0.0.0","V1ListenPort":35421,"V1AnnounceIP":"","V1AnnouncePort":0,"V1Peerstore":{"Metrics":{}},"V1DHTAnnouncementCounterUserPrefix":0,"V2ListenAddresses":["0.0.0.0:6690"],"V2AnnounceAddresses":null,"V2DeltaReconcile":5000000000,"V2DeltaDial":5000000000,"V2DiscovererDatabase":{},"V1EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10,"NewStreamTimeout":10000000000,"DHTLookupInterval":10,"BootstrapCheckInterval":20000000000},"V2EndpointConfig":{"IncomingMessageBufferSize":10,"OutgoingMessageBufferSize":10}}} -{"level":"debug","ts":"2023-08-03T06:33:20.780Z","logger":"EventBroadcaster","caller":"pg/event_broadcaster.go:94","msg":"Postgres event broadcaster: connected","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:20.780Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v1.go:124","msg":"PeerV1: libp2p host booted","version":"2.4.0@114e039","v1peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","v1listenPort":35421,"v1listenIP":"0.0.0.0","v1listenAddr":"/ip4/0.0.0.0/tcp/35421","id":"PeerV1"} -{"level":"info","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:627","msg":"DiscoveryProtocol: Replacing our own announcement","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"lockedBumpOwnAnnouncement","announcement":"{PeerID:12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL Counter:0 Addrs:[10.14.113.114:6690 127.0.0.1:6690] Sig:Mah0HC0uB1v4X6Bym6KanPBTDO35vzVRV3JmGIm4RMojXA+1r1d6cbfTi6vtfK1lIrKgviHPoXGtd1NFvkM2AQ==}"} -{"level":"info","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"networking/peer_v2.go:68","msg":"PeerV2: ragep2p host booted","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"PeerV2"} -{"level":"debug","ts":"2023-08-03T06:33:20.781Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"JobSpawner"} -{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:564","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:356","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"saveLoop"} -{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:20.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:450","msg":"Entering","version":"2.4.0@114e039","id":"ragep2p","in":"recvLoop","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:33:20.847Z","caller":"chainlink/application.go:577","msg":"Starting service...","version":"2.4.0@114e039","name":"PipelineRunner"} -{"level":"debug","ts":"2023-08-03T06:33:20.847Z","logger":"PipelineRunner","caller":"pipeline/runner.go:631","msg":"Pipeline run reaper starting","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:33:20.847Z","logger":"RunNode","caller":"cmd/shell_local.go:495","msg":"Chainlink booted in 13.38s","version":"2.4.0@114e039","appID":"32522ade-007b-4e60-b6af-0d36d4090d60"} -{"level":"debug","ts":"2023-08-03T06:33:20.847Z","logger":"PipelineORM","caller":"pipeline/orm.go:499","msg":"pipeline_runs reaper DELETE query completed","version":"2.4.0@114e039","rowsDeleted":0,"duration":0.000707379} -{"level":"info","ts":"2023-08-03T06:33:20.855Z","caller":"cmd/shell.go:545","msg":"Listening and serving HTTP on 0.0.0.0:6688","version":"2.4.0@114e039","ip":"0.0.0.0","port":6688} -{"level":"debug","ts":"2023-08-03T06:33:20.858Z","logger":"PipelineORM","caller":"pipeline/orm.go:501","msg":"pipeline_runs reaper VACUUM ANALYZE query completed","version":"2.4.0@114e039","duration":0.010932181} -{"level":"debug","ts":"2023-08-03T06:33:20.858Z","logger":"PipelineRunner","caller":"pipeline/runner.go:640","msg":"Pipeline run reaper completed successfully","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:33:23.084Z","caller":"web/router.go:536","msg":"GET /","version":"2.4.0@114e039","method":"GET","status":200,"path":"/","ginPath":"","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:23","latency":"1.641642ms"} -{"level":"debug","ts":"2023-08-03T06:33:23.085Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:23","latency":"210.211µs"} -{"level":"debug","ts":"2023-08-03T06:33:25.781Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:33:26.054Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"warn","ts":"2023-08-03T06:33:26.056Z","logger":"Solana.Chain.Client-primary","caller":"client/client.go:136","msg":"unknown genesis hash - assuming solana chain is 'localnet'","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana"} -{"level":"debug","ts":"2023-08-03T06:33:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:28","latency":"88.743µs"} -{"level":"debug","ts":"2023-08-03T06:33:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:28","latency":"143.756µs"} -{"level":"debug","ts":"2023-08-03T06:33:30.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"info","ts":"2023-08-03T06:33:30.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","peersUndetected":0,"peersDetected":0,"id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0} -{"level":"debug","ts":"2023-08-03T06:33:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:33","latency":"111.341µs"} -{"level":"debug","ts":"2023-08-03T06:33:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:33","latency":"71.874µs"} -{"level":"debug","ts":"2023-08-03T06:33:35.782Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:33:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:38","latency":"102.522µs"} -{"level":"debug","ts":"2023-08-03T06:33:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:38","latency":"80.039µs"} -{"level":"debug","ts":"2023-08-03T06:33:40.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:43","latency":"106.636µs"} -{"level":"debug","ts":"2023-08-03T06:33:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:43","latency":"157.243µs"} -{"level":"debug","ts":"2023-08-03T06:33:45.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:48.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:48","latency":"155.409µs"} -{"level":"debug","ts":"2023-08-03T06:33:48.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:48","latency":"119.483µs"} -{"level":"debug","ts":"2023-08-03T06:33:50.784Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:33:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:53","latency":"87.78µs"} -{"level":"debug","ts":"2023-08-03T06:33:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:53","latency":"87.539µs"} -{"level":"debug","ts":"2023-08-03T06:33:55.785Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:33:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:58","latency":"87.96µs"} -{"level":"debug","ts":"2023-08-03T06:33:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:33:58","latency":"91.064µs"} -{"level":"debug","ts":"2023-08-03T06:34:00.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:03","latency":"85.717µs"} -{"level":"debug","ts":"2023-08-03T06:34:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:03","latency":"88.341µs"} -{"level":"debug","ts":"2023-08-03T06:34:05.786Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:06.711Z","caller":"web/sessions_controller.go:32","msg":"TRACE: Starting Session Creation","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:34:06.712Z","logger":"SessionsORM","caller":"sessions/orm.go:173","msg":"Found user","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"info","ts":"2023-08-03T06:34:06.771Z","logger":"SessionsORM","caller":"sessions/orm.go:197","msg":"No MFA for user. Creating Session","version":"2.4.0@114e039","user":"notreal@fakeemail.ch"} -{"level":"debug","ts":"2023-08-03T06:34:06.794Z","caller":"web/router.go:536","msg":"POST /sessions","version":"2.4.0@114e039","method":"POST","status":200,"path":"/sessions","ginPath":"/sessions","query":"","body":"{\"email\":\"notreal@fakeemail.ch\",\"password\":\"*REDACTED*\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:06","latency":"83.484794ms"} -{"level":"debug","ts":"2023-08-03T06:34:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:08","latency":"87.44µs"} -{"level":"debug","ts":"2023-08-03T06:34:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:08","latency":"90.103µs"} -{"level":"debug","ts":"2023-08-03T06:34:10.787Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:13","latency":"95.92µs"} -{"level":"debug","ts":"2023-08-03T06:34:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:13","latency":"96.067µs"} -{"level":"debug","ts":"2023-08-03T06:34:15.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:18","latency":"90.18µs"} -{"level":"debug","ts":"2023-08-03T06:34:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:18","latency":"77.491µs"} -{"level":"debug","ts":"2023-08-03T06:34:20.788Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:23","latency":"114.936µs"} -{"level":"debug","ts":"2023-08-03T06:34:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:23","latency":"80.238µs"} -{"level":"debug","ts":"2023-08-03T06:34:25.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:28","latency":"96.248µs"} -{"level":"debug","ts":"2023-08-03T06:34:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:28","latency":"98.48µs"} -{"level":"debug","ts":"2023-08-03T06:34:29.910Z","caller":"web/router.go:536","msg":"GET /v2/keys/p2p","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/p2p","ginPath":"/v2/keys/p2p","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:29","latency":"2.264549ms"} -{"level":"debug","ts":"2023-08-03T06:34:30.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:32.070Z","caller":"web/router.go:536","msg":"POST /v2/keys/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/solana","ginPath":"/v2/keys/solana","query":"evmChainID=localnet","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:32","latency":"1.951880424s"} -{"level":"debug","ts":"2023-08-03T06:34:33.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:33","latency":"96.16µs"} -{"level":"debug","ts":"2023-08-03T06:34:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:33","latency":"243.154µs"} -{"level":"debug","ts":"2023-08-03T06:34:34.952Z","caller":"web/router.go:536","msg":"POST /v2/keys/ocr2/solana","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/keys/ocr2/solana","ginPath":"/v2/keys/ocr2/:chainType","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:34:34","latency":"2.673742591s"} -{"level":"debug","ts":"2023-08-03T06:34:35.789Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:38","latency":"95.351µs"} -{"level":"debug","ts":"2023-08-03T06:34:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:38","latency":"102.073µs"} -{"level":"debug","ts":"2023-08-03T06:34:40.790Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:34:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:43","latency":"82.763µs"} -{"level":"debug","ts":"2023-08-03T06:34:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:43","latency":"88.279µs"} -{"level":"debug","ts":"2023-08-03T06:34:45.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:34:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:48","latency":"90.813µs"} -{"level":"debug","ts":"2023-08-03T06:34:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:48","latency":"101.539µs"} -{"level":"debug","ts":"2023-08-03T06:34:50.791Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:34:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:53","latency":"87.654µs"} -{"level":"debug","ts":"2023-08-03T06:34:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:53","latency":"90.241µs"} -{"level":"debug","ts":"2023-08-03T06:34:55.792Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:34:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:58","latency":"93.391µs"} -{"level":"debug","ts":"2023-08-03T06:34:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:34:58","latency":"91.276µs"} -{"level":"debug","ts":"2023-08-03T06:35:00.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:03","latency":"87.66µs"} -{"level":"debug","ts":"2023-08-03T06:35:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:03","latency":"92.59µs"} -{"level":"debug","ts":"2023-08-03T06:35:05.793Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:08","latency":"91.383µs"} -{"level":"debug","ts":"2023-08-03T06:35:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:08","latency":"66.374µs"} -{"level":"debug","ts":"2023-08-03T06:35:10.794Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:13","latency":"90.32µs"} -{"level":"debug","ts":"2023-08-03T06:35:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:13","latency":"96.658µs"} -{"level":"debug","ts":"2023-08-03T06:35:15.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:35:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:18","latency":"95.647µs"} -{"level":"debug","ts":"2023-08-03T06:35:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:18","latency":"74.248µs"} -{"level":"debug","ts":"2023-08-03T06:35:20.795Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:23","latency":"87.474µs"} -{"level":"debug","ts":"2023-08-03T06:35:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:23","latency":"77.868µs"} -{"level":"debug","ts":"2023-08-03T06:35:25.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:35:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:28","latency":"120.151µs"} -{"level":"debug","ts":"2023-08-03T06:35:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:28","latency":"92.867µs"} -{"level":"debug","ts":"2023-08-03T06:35:30.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:35:33.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:33","latency":"103.502µs"} -{"level":"debug","ts":"2023-08-03T06:35:33.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:33","latency":"205.537µs"} -{"level":"debug","ts":"2023-08-03T06:35:35.796Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:38","latency":"86.088µs"} -{"level":"debug","ts":"2023-08-03T06:35:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:38","latency":"86.038µs"} -{"level":"debug","ts":"2023-08-03T06:35:40.797Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:43","latency":"89.389µs"} -{"level":"debug","ts":"2023-08-03T06:35:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:43","latency":"68.911µs"} -{"level":"debug","ts":"2023-08-03T06:35:45.798Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:35:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:48","latency":"82.951µs"} -{"level":"debug","ts":"2023-08-03T06:35:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:48","latency":"88.188µs"} -{"level":"debug","ts":"2023-08-03T06:35:50.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:35:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:53","latency":"91.868µs"} -{"level":"debug","ts":"2023-08-03T06:35:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:53","latency":"76.25µs"} -{"level":"debug","ts":"2023-08-03T06:35:55.799Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:35:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:58","latency":"113.07µs"} -{"level":"debug","ts":"2023-08-03T06:35:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:35:58","latency":"107.988µs"} -{"level":"debug","ts":"2023-08-03T06:36:00.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:03","latency":"89.693µs"} -{"level":"debug","ts":"2023-08-03T06:36:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:03","latency":"113.141µs"} -{"level":"debug","ts":"2023-08-03T06:36:05.800Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:08","latency":"85.637µs"} -{"level":"debug","ts":"2023-08-03T06:36:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:08","latency":"81.429µs"} -{"level":"debug","ts":"2023-08-03T06:36:10.801Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:36:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:13","latency":"85.933µs"} -{"level":"debug","ts":"2023-08-03T06:36:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:13","latency":"84.457µs"} -{"level":"debug","ts":"2023-08-03T06:36:15.802Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:36:18.083Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:18","latency":"122.889µs"} -{"level":"debug","ts":"2023-08-03T06:36:18.083Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:18","latency":"103.128µs"} -{"level":"debug","ts":"2023-08-03T06:36:20.803Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:23","latency":"90.02µs"} -{"level":"debug","ts":"2023-08-03T06:36:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:23","latency":"102.966µs"} -{"level":"debug","ts":"2023-08-03T06:36:25.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:28","latency":"86.009µs"} -{"level":"debug","ts":"2023-08-03T06:36:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:28","latency":"86.056µs"} -{"level":"debug","ts":"2023-08-03T06:36:30.804Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:36:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:33","latency":"103.699µs"} -{"level":"debug","ts":"2023-08-03T06:36:33.083Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:33","latency":"254.716µs"} -{"level":"debug","ts":"2023-08-03T06:36:35.805Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:38","latency":"99.738µs"} -{"level":"debug","ts":"2023-08-03T06:36:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:38","latency":"99.638µs"} -{"level":"debug","ts":"2023-08-03T06:36:40.806Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:43","latency":"90.334µs"} -{"level":"debug","ts":"2023-08-03T06:36:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:43","latency":"87.375µs"} -{"level":"debug","ts":"2023-08-03T06:36:45.807Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:36:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:48","latency":"86.926µs"} -{"level":"debug","ts":"2023-08-03T06:36:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:48","latency":"74.115µs"} -{"level":"debug","ts":"2023-08-03T06:36:50.807Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:53","latency":"68.996µs"} -{"level":"debug","ts":"2023-08-03T06:36:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:53","latency":"100.147µs"} -{"level":"debug","ts":"2023-08-03T06:36:55.808Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:36:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:58","latency":"93.397µs"} -{"level":"debug","ts":"2023-08-03T06:36:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:36:58","latency":"86.975µs"} -{"level":"debug","ts":"2023-08-03T06:37:00.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:37:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:03","latency":"88.961µs"} -{"level":"debug","ts":"2023-08-03T06:37:03.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:03","latency":"85.622µs"} -{"level":"debug","ts":"2023-08-03T06:37:05.809Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:08","latency":"77.336µs"} -{"level":"debug","ts":"2023-08-03T06:37:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:08","latency":"95.876µs"} -{"level":"debug","ts":"2023-08-03T06:37:10.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:13","latency":"81.196µs"} -{"level":"debug","ts":"2023-08-03T06:37:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:13","latency":"86.231µs"} -{"level":"debug","ts":"2023-08-03T06:37:15.810Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:18","latency":"89.522µs"} -{"level":"debug","ts":"2023-08-03T06:37:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:18","latency":"81.431µs"} -{"level":"debug","ts":"2023-08-03T06:37:20.811Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:37:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:23","latency":"93.363µs"} -{"level":"debug","ts":"2023-08-03T06:37:23.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:23","latency":"120.29µs"} -{"level":"debug","ts":"2023-08-03T06:37:25.812Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:37:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:28","latency":"70.441µs"} -{"level":"debug","ts":"2023-08-03T06:37:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:28","latency":"93.161µs"} -{"level":"debug","ts":"2023-08-03T06:37:30.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:33","latency":"93.163µs"} -{"level":"debug","ts":"2023-08-03T06:37:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:33","latency":"91.259µs"} -{"level":"debug","ts":"2023-08-03T06:37:35.813Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:38","latency":"74.744µs"} -{"level":"debug","ts":"2023-08-03T06:37:38.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:38","latency":"87.874µs"} -{"level":"debug","ts":"2023-08-03T06:37:40.814Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:43","latency":"99.551µs"} -{"level":"debug","ts":"2023-08-03T06:37:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:43","latency":"89.998µs"} -{"level":"debug","ts":"2023-08-03T06:37:45.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:48","latency":"84.672µs"} -{"level":"debug","ts":"2023-08-03T06:37:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:48","latency":"78.467µs"} -{"level":"debug","ts":"2023-08-03T06:37:50.815Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:53","latency":"104.408µs"} -{"level":"debug","ts":"2023-08-03T06:37:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:53","latency":"84.19µs"} -{"level":"debug","ts":"2023-08-03T06:37:55.816Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:37:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:58","latency":"109.674µs"} -{"level":"debug","ts":"2023-08-03T06:37:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:37:58","latency":"110.599µs"} -{"level":"debug","ts":"2023-08-03T06:38:00.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:03","latency":"91.035µs"} -{"level":"debug","ts":"2023-08-03T06:38:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:03","latency":"111.194µs"} -{"level":"debug","ts":"2023-08-03T06:38:05.817Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:08","latency":"107.618µs"} -{"level":"debug","ts":"2023-08-03T06:38:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:08","latency":"115.171µs"} -{"level":"debug","ts":"2023-08-03T06:38:10.818Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:38:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:13","latency":"91.212µs"} -{"level":"debug","ts":"2023-08-03T06:38:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:13","latency":"154.491µs"} -{"level":"debug","ts":"2023-08-03T06:38:15.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:18","latency":"91.097µs"} -{"level":"debug","ts":"2023-08-03T06:38:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:18","latency":"97.157µs"} -{"level":"debug","ts":"2023-08-03T06:38:20.819Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:23","latency":"91.365µs"} -{"level":"debug","ts":"2023-08-03T06:38:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:23","latency":"87.972µs"} -{"level":"debug","ts":"2023-08-03T06:38:25.820Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:28","latency":"92.858µs"} -{"level":"debug","ts":"2023-08-03T06:38:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:28","latency":"92.477µs"} -{"level":"info","ts":"2023-08-03T06:38:30.783Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:194","msg":"DiscoveryProtocol: Status report","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","statusByPeer":"map[]","peersToDetect":0,"peersUndetected":0,"peersDetected":0} -{"level":"debug","ts":"2023-08-03T06:38:30.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:33","latency":"83.719µs"} -{"level":"debug","ts":"2023-08-03T06:38:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:33","latency":"98.476µs"} -{"level":"debug","ts":"2023-08-03T06:38:35.821Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:38","latency":"83.924µs"} -{"level":"debug","ts":"2023-08-03T06:38:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:38","latency":"115.55µs"} -{"level":"debug","ts":"2023-08-03T06:38:40.822Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:38:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:43","latency":"91.69µs"} -{"level":"debug","ts":"2023-08-03T06:38:43.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:43","latency":"75.899µs"} -{"level":"debug","ts":"2023-08-03T06:38:45.823Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:38:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:48","latency":"83.488µs"} -{"level":"debug","ts":"2023-08-03T06:38:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:48","latency":"72.409µs"} -{"level":"debug","ts":"2023-08-03T06:38:50.823Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:38:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:53","latency":"89.699µs"} -{"level":"debug","ts":"2023-08-03T06:38:53.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:53","latency":"89.627µs"} -{"level":"debug","ts":"2023-08-03T06:38:55.824Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:38:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:58","latency":"94.218µs"} -{"level":"debug","ts":"2023-08-03T06:38:58.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:38:58","latency":"121.207µs"} -{"level":"debug","ts":"2023-08-03T06:39:00.824Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:39:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:03","latency":"84.029µs"} -{"level":"debug","ts":"2023-08-03T06:39:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:03","latency":"86.91µs"} -{"level":"debug","ts":"2023-08-03T06:39:05.825Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:08","latency":"93.094µs"} -{"level":"debug","ts":"2023-08-03T06:39:08.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:08","latency":"108.274µs"} -{"level":"debug","ts":"2023-08-03T06:39:10.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:13","latency":"90.944µs"} -{"level":"debug","ts":"2023-08-03T06:39:13.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:13","latency":"71.738µs"} -{"level":"debug","ts":"2023-08-03T06:39:15.826Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:39:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:18","latency":"76.912µs"} -{"level":"debug","ts":"2023-08-03T06:39:18.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:18","latency":"82.164µs"} -{"level":"debug","ts":"2023-08-03T06:39:20.827Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:23","latency":"84.885µs"} -{"level":"debug","ts":"2023-08-03T06:39:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:23","latency":"84.751µs"} -{"level":"debug","ts":"2023-08-03T06:39:25.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:28","latency":"93.475µs"} -{"level":"debug","ts":"2023-08-03T06:39:28.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:28","latency":"81.13µs"} -{"level":"debug","ts":"2023-08-03T06:39:30.828Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:33","latency":"68.379µs"} -{"level":"debug","ts":"2023-08-03T06:39:33.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:33","latency":"88.764µs"} -{"level":"debug","ts":"2023-08-03T06:39:35.829Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:38","latency":"86.823µs"} -{"level":"debug","ts":"2023-08-03T06:39:38.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:38","latency":"91.887µs"} -{"level":"debug","ts":"2023-08-03T06:39:40.829Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:39:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:43","latency":"82.281µs"} -{"level":"debug","ts":"2023-08-03T06:39:43.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:43","latency":"87.739µs"} -{"level":"debug","ts":"2023-08-03T06:39:45.830Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","_id":"discoveryProtocol","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:39:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:48","latency":"79.583µs"} -{"level":"debug","ts":"2023-08-03T06:39:48.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:48","latency":"122.889µs"} -{"level":"debug","ts":"2023-08-03T06:39:50.831Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:53","latency":"84.724µs"} -{"level":"debug","ts":"2023-08-03T06:39:53.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:53","latency":"82.892µs"} -{"level":"debug","ts":"2023-08-03T06:39:55.831Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:39:56.935Z","caller":"web/router.go:536","msg":"POST /v2/chains/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/chains/solana","ginPath":"","query":"","body":"{\"chainID\":\"localnet\",\"config\":{\"BlockRate\":null,\"Commitment\":null,\"ConfirmPollPeriod\":null,\"OCR2CachePollPeriod\":null,\"OCR2CacheTTL\":null,\"SkipPreflight\":null,\"TxTimeout\":null}}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:56","latency":"60.928µs"} -{"level":"debug","ts":"2023-08-03T06:39:57.141Z","caller":"web/router.go:536","msg":"POST /v2/nodes/solana","version":"2.4.0@114e039","method":"POST","status":404,"path":"/v2/nodes/solana","ginPath":"","query":"","body":"{\"name\":\"solana\",\"solanaChainId\":\"localnet\",\"solanaURL\":\"http://localhost:61214\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:57","latency":"54.988µs"} -{"level":"debug","ts":"2023-08-03T06:39:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:58","latency":"81.559µs"} -{"level":"debug","ts":"2023-08-03T06:39:58.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:39:58","latency":"89.53µs"} -{"level":"debug","ts":"2023-08-03T06:39:59.891Z","caller":"web/router.go:536","msg":"GET /v2/keys/csa","version":"2.4.0@114e039","method":"GET","status":200,"path":"/v2/keys/csa","ginPath":"/v2/keys/csa","query":"","body":"","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:39:59","latency":"1.646434ms"} -{"level":"debug","ts":"2023-08-03T06:40:00.101Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_2ffebf08_contract_ftpfevdfsv\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"3.288382ms"} -{"level":"debug","ts":"2023-08-03T06:40:00.312Z","caller":"web/router.go:536","msg":"POST /v2/bridge_types","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/bridge_types","ginPath":"/v2/bridge_types","query":"","body":"{\"name\":\"node_a_2ffebf08_contract_ftpfevdfsvjuels\",\"requestData\":\"{}\",\"url\":\"http://qa-mock-adapter:6060/five\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:00","latency":"2.888829ms"} -{"level":"debug","ts":"2023-08-03T06:40:00.832Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:40:01.415Z","logger":"JobSpawner","caller":"job/spawner.go:250","msg":"Created job","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"info","ts":"2023-08-03T06:40:01.415Z","logger":"OCR2","caller":"ocr2/delegate.go:351","msg":"OCR2 job using local config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","BlockchainTimeout":20,"ContractConfigConfirmations":1,"ContractConfigTrackerPollInterval":15,"ContractTransmitterTransmitTimeout":10,"DatabaseTimeout":10} -{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"OCR2","caller":"ocr2/delegate.go:363","msg":"Using bootstrap peers","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","peers":["12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690"]} -{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"info","ts":"2023-08-03T06:40:01.415Z","logger":"OCR2","caller":"median/services.go:143","msg":"Enhanced EA telemetry is disabled for job sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} -{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"JobSpawner","caller":"job/spawner.go:212","msg":"JobSpawner: Starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"debug","ts":"2023-08-03T06:40:01.415Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.416Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:77","msg":"Starting state polling for state: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"JobSpawner","caller":"job/spawner.go:223","msg":"JobSpawner: Finished starting services for job","version":"2.4.0@114e039","jobID":1,"count":3} -{"level":"info","ts":"2023-08-03T06:40:01.417Z","logger":"JobSpawner","caller":"job/spawner.go:257","msg":"Started job services","version":"2.4.0@114e039","type":"offchainreporting2","jobID":1} -{"level":"debug","ts":"2023-08-03T06:40:01.417Z","logger":"Solana","caller":"solana/transmissions_cache.go:81","msg":"Starting state polling transmissions: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/collect_garbage.go:25","msg":"collectGarbage: going to sleep","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","duration":890} -{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/load_from_database.go:21","msg":"loadConfigFromDatabase: Database.ReadConfig returned nil, no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} -{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:105","msg":"runWithContractConfig: found no configuration to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} -{"level":"debug","ts":"2023-08-03T06:40:01.418Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} -{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/track_config.go:64","msg":"TrackConfig: returning config","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:73","msg":"runWithContractConfig: switching between configs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.418Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:114","msg":"runWithContractConfig: winding down old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"OCR2","caller":"managed/run_with_contract_config.go:120","msg":"runWithContractConfig: closed old configuration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","newConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oldConfigDigest":"0000000000000000000000000000000000000000000000000000000000000000"} -{"level":"debug","ts":"2023-08-03T06:40:01.419Z","caller":"web/router.go:536","msg":"POST /v2/jobs","version":"2.4.0@114e039","method":"POST","status":200,"path":"/v2/jobs","ginPath":"/v2/jobs","query":"","body":"{\"toml\":\"\\ntype = \\\"offchainreporting2\\\"\\nname = \\\"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800\\\"\\nforwardingAllowed = false\\n\\n\\npluginType = \\\"median\\\" \\nrelay = \\\"solana\\\"\\nschemaVersion = 1\\ncontractID = \\\"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg\\\"\\n\\n\\nocrKeyBundleID = \\\"bd5acd154fcf09404be928eb881948bf9a3be4bc967e7e2a2e7827f4719910da\\\" \\n\\ntransmitterID = \\\"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF\\\" \\n\\n\\ncontractConfigConfirmations = 1 \\n\\n\\ncontractConfigTrackerPollInterval = \\\"15s\\\"\\n\\n\\n\\np2pv2Bootstrappers = [\\\"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG@10.14.91.55:6690\\\",]\\n\\n\\nobservationSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_2ffebf08_contract_ftpfevdfsv\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[pluginConfig]\\njuelsPerFeeCoinSource = \\\"\\\"\\\"\\n\\n\\t\\tfetch [type=bridge name=\\\"node_a_2ffebf08_contract_ftpfevdfsvjuels\\\" requestData=\\\"{}\\\"];\\n\\t\\tparse [type=jsonparse path=\\\"data,result\\\"];\\n\\t\\tfetch -\\u003e parse;\\n\\\"\\\"\\\"\\n\\n[relayConfig]\\nchainID = \\\"localnet\\\"\\nnodeEndpointHTTP = \\\"http://sol:8899\\\"\\nocr2ProgramID = \\\"E3j24rx12SyVsG6quKuZPbQqZPkhAUCh8Uek4XrKYD2x\\\"\\nstoreProgramID = \\\"9kRNTZmoZSiTBuXC62dzK9E7gC7huYgcmRRhYv3i4osC\\\"\\ntransmissionsID = \\\"3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm\\\"\\n\"}","clientIP":"127.0.0.1","errors":"","servedAt":"2023-08-03 06:40:01","latency":"11.189088ms"} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"ragedisco/ragep2p_discoverer.go:256","msg":"Ragep2pDiscoverer: Adding group","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"bootstraps":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}]} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamName":"ragedisco/v1","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3"} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0","streamName":"ragedisco/v1"} -{"level":"info","ts":"2023-08-03T06:40:01.419Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:281","msg":"Loading announcements from db","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","peerIDs":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:01.422Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:311","msg":"Loaded announcements from db","version":"2.4.0@114e039","loaded":["12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"numLoaded":1,"queried":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"found":["12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"],"id":"ragep2p","_id":"discoveryProtocol","numFound":1,"peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","numQueried":4} -{"level":"info","ts":"2023-08-03T06:40:01.422Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:107","msg":"OCREndpointV2: Initialized","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":3,"_id":"OCREndpointV2","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"PeerV2","bootstrappers":[{"ID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","Addrs":["10.14.91.55:6690"]}],"oracles":["12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"]} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"NewStream succeeded","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"SingletonPeerWrapper","caller":"networking/ocr_endpoint_v2.go:193","msg":"OCREndpointV2: Started listening","version":"2.4.0@114e039","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oracleID":3,"_id":"OCREndpointV2","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","id":"PeerV2"} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/oracle.go:121","msg":"Running","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/pacemaker.go:156","msg":"Running Pacemaker","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/pacemaker.go:264","msg":"Pacemaker: Database contains no state to restore","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/pacemaker.go:330","msg":"Pacemaker: Restored ne from contract","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"previousNe":0,"ne":1} -{"level":"info","ts":"2023-08-03T06:40:01.423Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":1,"leader":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:02.466Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.467Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.488Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:02.489Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:03","latency":"87.544µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:03","latency":"97.64µs"} -{"level":"debug","ts":"2023-08-03T06:40:03.424Z","logger":"OCR2","caller":"protocol/pacemaker.go:389","msg":"Pacemaker: TProgress expired","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:03.484Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.485Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.572Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:03.573Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.509Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.510Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:04.612Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.565Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.566Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.675Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.676Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:05.833Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} -{"level":"debug","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"warn","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","id":"ragep2p"} -{"level":"warn","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6"} -{"level":"warn","ts":"2023-08-03T06:40:05.885Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:594","msg":"Discoverer found no addresses","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J"} -{"level":"info","ts":"2023-08-03T06:40:05.887Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","direction":"out","remoteAddr":"10.14.91.55:6690","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:05.888Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWRScsdPBN4XNp4AgHuScuw3mtbyDphzUz2vNWrgC1w5tG","streamName":"ragedisco/v1","streamID":"9da8beceb005d2e436170e42a66e10133cae03d924feb4f71ca199585095a4a0"} -{"level":"debug","ts":"2023-08-03T06:40:06.619Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.620Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:06.775Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","in":"processAnnouncement","announcement":"{PeerID:12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj Counter:0 Addrs:[10.14.21.114:6690 127.0.0.1:6690] Sig:0Mk0IyG3B8Y4XIC1sDCYnuh0WHUNVGI/ZFLmKxCSAfhw8cXn3EG2Fet9bxDrm8l6PXeiI1u7MGJENbPdQXKLDw==}","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"processAnnouncement","announcement":"{PeerID:12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J Counter:0 Addrs:[10.14.63.201:6690 127.0.0.1:6690] Sig:YYWpShcAgK4Q8/9MWeHrqzBhI6tWVOnWYsb23VgF/BaG1s5q6bCPwGIBI5+iPwxSJbNFwBK/wgy32Om3vpEPAg==}"} -{"level":"info","ts":"2023-08-03T06:40:07.038Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:537","msg":"Received better announcement for peer","version":"2.4.0@114e039","_id":"discoveryProtocol","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","announcement":"{PeerID:12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6 Counter:0 Addrs:[10.14.3.137:6690 127.0.0.1:6690] Sig:xPPucIhqlFsnlOjR4L7BqI6vcLH012Osm1CFb3SESVaQy2DKj1bH9ydSicOH3/4ws4enDd7KO3YSIimsoFX2Bg==}","in":"processAnnouncement"} -{"level":"debug","ts":"2023-08-03T06:40:07.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.692Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.799Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:07.799Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:08","latency":"101.263µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:08","latency":"76.539µs"} -{"level":"debug","ts":"2023-08-03T06:40:08.755Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.756Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.858Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:08.859Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.783Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.784Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.21.114:56696","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","direction":"in"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"2efe24459b8931b82278fe1580ee4fcd7e01a3d93376e955c901546b51fdc1ce"} -{"level":"info","ts":"2023-08-03T06:40:09.822Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","remotePeerID":"12D3KooWDqgYCqQfSc4w145TMGDLK6LKBmsatmqXKCFFKRtDVcFj","streamID":"0ee44021050cd20367bde1b88dcaa2bbbd52ce0f71c7106afc1504bbbb319f2f","streamName":"ragedisco/v1","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"debug","ts":"2023-08-03T06:40:09.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:09.915Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.833Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:10.841Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.842Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.954Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:10.955Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.913Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.914Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {0 0}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","direction":"in","remoteAddr":"10.14.3.137:54654"} -{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"04cfc51aa08fbde42b17fbd8c7f049a36566b8bd3ed6c81d40a75603616280c6","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","id":"ragep2p"} -{"level":"info","ts":"2023-08-03T06:40:11.959Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWLMRCTLoF1Bwb18TDKBvnKKby7gt2trHsy6Z9dZ2SYvN6","streamID":"6f15b05bd5bfca82552becda9bfeab1cb74eb80032b4bd38f5675b6a1b5e06a3","streamName":"ragedisco/v1"} -{"level":"debug","ts":"2023-08-03T06:40:11.960Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"newEpoch":2,"candidateEpochs":[2,2,3]} -{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":1,"leader":1,"e":1,"l":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":2,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:11.961Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:11.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.001441334} -{"level":"debug","ts":"2023-08-03T06:40:11.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.0015665} -{"level":"debug","ts":"2023-08-03T06:40:11.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":2,"leader":0,"round":1,"observation":"CMuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:11.980Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:11.981Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:12.466Z","logger":"OCR2","caller":"median/median.go:548","msg":"shouldReport: yes, because it's the first round of the first epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","initialRound":true,"result":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"1970-01-01T00:00:00.000Z","deviation":true,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":1},"unfulfilledRequest":true,"alphaReportInfinite":false,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":2,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"sender":2,"epoch":2,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":2,"Round":1,"H":[172,157,161,62,243,250,27,206,155,65,193,67,225,227,70,195,6,253,142,226,143,147,130,218,16,104,57,147,107,2,253,19],"AttestedReport":{"Report":"ZMtLywQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"E1keMBLFtRb6w9meYLC9ESFBec3WVNU0FJj52LhJvBoezaat++WWsPLmPCaOezPNdIMgbFTP2kx6aIQih+O3AgE=","Signer":0},{"Signature":"vvIQHBk1SZDSV/zUEORt+fogmNg5C/rs75i/6GhRkOdCHfKRhgJQpsbFAbE+fbuNmUkWwt8rrkfMbGRH//mqrwA=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:12.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaAcceptPPB":0,"latestAcceptedEpochRound":{"Epoch":0,"Round":0},"alphaAcceptInfinite":false,"reportEpochRound":{"Epoch":2,"Round":1},"deviates":true,"result":true,"contractEpochRound":{"Epoch":0,"Round":0},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:12.951Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.951Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044811}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000662151} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.00067737} -{"level":"debug","ts":"2023-08-03T06:40:12.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0,"round":2,"observation":"CMyXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:13.065Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.066Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:13","latency":"80.505µs"} -{"level":"debug","ts":"2023-08-03T06:40:13.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:13","latency":"72.907µs"} -{"level":"info","ts":"2023-08-03T06:40:13.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":2},"initialRound":false,"reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaC":0,"lastTransmissionTimestamp":"2023-08-03T06:40:11.000Z","alphaReportInfinite":false,"alphaReportPPB":0,"deviation":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:13.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"sender":0,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"sender":3,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":2,"Round":2,"H":[197,222,250,223,11,151,247,104,28,248,233,211,59,140,115,50,222,5,185,75,207,70,33,193,21,57,191,36,250,253,129,38],"AttestedReport":{"Report":"ZMtLzAQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ue1UK+MYTNVskMoW5Wis7PMYy+VzpmvoiL6RTmrMPHMFG4jW9km1gZ/8SUZLMnGlK5HtMya+ozkrKbyjLaYJtQA=","Signer":0},{"Signature":"zKyPnIOGAGzNs+/0FVcFcgLyp5Y4pw5wKFvVIpp2MvRtQE5EISpmyTscsmu0abV0dCVGHglOo/v/onOZvwtmvQE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0,"deviates":true,"contractEpochRound":{"Epoch":2,"Round":1},"reportEpochRound":{"Epoch":2,"Round":2},"latestAcceptedEpochRound":{"Epoch":2,"Round":1},"alphaAcceptInfinite":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:13.467Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:13.619Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:582","msg":"Dialing","version":"2.4.0@114e039","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL"} -{"level":"info","ts":"2023-08-03T06:40:13.621Z","logger":"SingletonPeerWrapper","caller":"ragep2p/ragep2p.go:806","msg":"Connection established","version":"2.4.0@114e039","remoteAddr":"10.14.63.201:6690","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","direction":"out"} -{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","id":"ragep2p","streamName":"ragedisco/v1","streamID":"06673be2fa6ab95982fbd34baacc5fc4c90f8667421cda4024c8bc4e38ff80b3"} -{"level":"info","ts":"2023-08-03T06:40:13.622Z","logger":"SingletonPeerWrapper","caller":"loghelper/logger_with_context.go:37","msg":"Turned on stream","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","remotePeerID":"12D3KooWSAezSoNQT6SdQF5dtiXjvdEUb3ucrs6c7VxujoNeUQ8J","streamName":"ocr/0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","streamID":"6a3c5f810179181239027894721e072e129ec18b29c40dc1623b25b8509e4b50"} -{"level":"debug","ts":"2023-08-03T06:40:13.622Z","logger":"OCR2","caller":"protocol/oracle.go:283","msg":"oracle: dropping message for past epoch","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":2,"sender":1,"msg":{"Epoch":1,"Round":1,"Query":null},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:13.622Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:13.622Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000707713} -{"level":"debug","ts":"2023-08-03T06:40:13.962Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000756408} -{"level":"debug","ts":"2023-08-03T06:40:13.963Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"observation":"CM2XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":3,"leader":0} -{"level":"debug","ts":"2023-08-03T06:40:14.007Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.008Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044812}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.156Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:14.157Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:14.465Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","unfulfilledRequest":false,"alphaReportPPB":0,"deltaC":0,"reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":2,"Round":3},"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:12.000Z","result":true} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":2,"round":3,"sender":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":2,"Round":3,"H":[101,237,103,25,41,89,181,165,89,175,5,31,92,71,183,128,108,144,16,94,189,186,57,99,80,29,245,25,128,168,171,167],"AttestedReport":{"Report":"ZMtLzQQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"qa2BJJ/hShL+v3MY+UTSRVl8QGchWcoW2KW9xjyKE+NYWv7VXjGK5btTi4HBHQXtcAfrjUg3kYPZNxImld5aTwA=","Signer":0},{"Signature":"5/kRKLiFshckFUrEpT20kC7K4h+b7zQwaTWTW5JYSrgnC/AWMtgssu/3aRXbEOMr2ZK775OVgyinnF/VmBqA5QE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"epoch":2,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:14.466Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","contractEpochRound":{"Epoch":2,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","reportEpochRound":{"Epoch":2,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"reportingPlugin":"NumericalMedian","latestAcceptedEpochRound":{"Epoch":2,"Round":2},"deviates":true} -{"level":"debug","ts":"2023-08-03T06:40:14.962Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":2,"leader":0,"round":4} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"newEpoch":3,"candidateEpochs":[3,3,3],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"e":2,"l":0,"epoch":2,"leader":0} -{"level":"info","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"oid":3} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:14.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000734057} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000767308} -{"level":"debug","ts":"2023-08-03T06:40:14.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":1,"observation":"CM6XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:15.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.039Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044813}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:15.167Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:15.466Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:13.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"alphaReportPPB":0,"deltaCTimeout":true,"deviation":true,"deltaC":0,"unfulfilledRequest":false,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":3,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":3,"round":1,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":3,"Round":1,"H":[143,240,75,224,161,105,29,138,14,0,7,90,106,183,254,60,47,174,34,127,51,125,226,200,200,92,115,61,53,136,106,109],"AttestedReport":{"Report":"ZMtLzgQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"H9ARg9zm6+A46F2S8opafB+pQpSIuhK/ZOE4YsCTtk0AEDSwi++ifacHkbHZVY7IjGHrrfT+VW1koMCA+isFkQE=","Signer":1},{"Signature":"4UweaqsOBruRlDWRhMH+s92RibD+ZiXJXL9r8j75O0NJZFwp7xufCrYjd6HN+tTYxuKNvDeqNJAW4G5WmLh8JgA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:15.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deviates":true,"result":true,"latestAcceptedEpochRound":{"Epoch":2,"Round":3},"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":2,"Round":3},"reportEpochRound":{"Epoch":3,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:15.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":0,"epoch":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:15.834Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol","in":"sendLoop"} -{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:15.963Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000730333} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000777891} -{"level":"debug","ts":"2023-08-03T06:40:15.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2,"observation":"CM+XraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:16.111Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.112Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044814}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.237Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.238Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:16.419Z","logger":"OCR2","caller":"managed/track_config.go:46","msg":"TrackConfig: checking latestConfigDetails","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF"} -{"level":"info","ts":"2023-08-03T06:40:16.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","result":true,"alphaReportInfinite":false,"alphaReportPPB":0,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:14.000Z","unfulfilledRequest":false,"reportingPlugin":"NumericalMedian","deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":2},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"deviation":true} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":3,"epoch":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":3,"Round":2,"H":[147,156,75,222,16,105,63,27,241,59,137,114,243,236,11,39,7,214,74,48,102,25,248,85,88,84,89,185,125,64,210,95],"AttestedReport":{"Report":"ZMtLzwQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"UPT43FVwDj9UMj6O9l+zoAgjCGwkHzPqzLGVGSPqDPUWOVOkAzpZP7ddpYUn/g2Y8SP1oi7fK/ei1/A8C8DF0gA=","Signer":0},{"Signature":"BxCvKAmgvTSTIkC2MJRzg774TCy/1dmReMAWkAR3C9NAQ4rWnz6Smyg8Wm563E7QXO2PxWg/FYGpZ9/13CFL9AE=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deviates":true,"result":true,"contractEpochRound":{"Epoch":3,"Round":1},"reportEpochRound":{"Epoch":3,"Round":2},"latestAcceptedEpochRound":{"Epoch":3,"Round":1},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:16.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:16.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":2,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.00067501} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.0006993} -{"level":"debug","ts":"2023-08-03T06:40:16.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"round":3,"observation":"CNCXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:17.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.168Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044815}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.255Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.256Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:17.467Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportInfinite":false,"lastTransmissionTimestamp":"2023-08-03T06:40:15.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":3,"Round":3},"deviation":true,"result":true,"unfulfilledRequest":false,"deltaC":0,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":3,"leader":1,"round":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":3,"Round":3,"H":[64,45,102,106,247,113,193,108,238,96,66,2,165,95,119,165,81,216,81,229,113,192,213,56,137,218,0,184,119,237,192,77],"AttestedReport":{"Report":"ZMtL0AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"LsG9z4lbAEzW2PfRd/CXPOdxK17/6ms/ipZ8iDw5Lxh4iPtGv2o86BVWjyD9qlWwxeFRdmwy7kX7wxRzjKB7bAA=","Signer":0},{"Signature":"ZQofpzhcel+PHnw7uniLc8NmEPyBIew8MpmRs4/481Amda73IWeUnlaZlHzRkeEAy7JVPXdJ4KBTCX+/MJc4HgA=","Signer":1}]}}} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"sender":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","latestAcceptedEpochRound":{"Epoch":3,"Round":2},"deviates":true,"reportEpochRound":{"Epoch":3,"Round":3},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":3,"Round":2}} -{"level":"info","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:17.468Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":3,"round":3} -{"level":"info","ts":"2023-08-03T06:40:17.469Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":3,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana.Chain","caller":"solana/chain.go:241","msg":"Created client","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","name":"primary","solana-url":"http://sol:8899"} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"f413dd1c-0383-45db-a73c-80327ed1d76f","signature":"a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy"} -{"level":"debug","ts":"2023-08-03T06:40:17.469Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy","id":"f413dd1c-0383-45db-a73c-80327ed1d76f"} -{"level":"debug","ts":"2023-08-03T06:40:17.818Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"f413dd1c-0383-45db-a73c-80327ed1d76f","signature":"a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy"} -{"level":"debug","ts":"2023-08-03T06:40:17.818Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"f413dd1c-0383-45db-a73c-80327ed1d76f","signatures":["a2uCjA4oVrapUHJYw6SHZrMGSbG46SXdn7A91yTYvx53E9YRjSGBUBS94zWBQGAmpwd8v36s5K62CikbZ2DHMUy"]} -{"level":"debug","ts":"2023-08-03T06:40:17.964Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"round":4,"messageRound":4,"roundMax":3} -{"level":"debug","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"newEpoch":4,"candidateEpochs":[4,4,4],"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":3,"leader":1,"e":3,"l":1,"oid":3} -{"level":"info","ts":"2023-08-03T06:40:17.965Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000639941} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000680808} -{"level":"debug","ts":"2023-08-03T06:40:17.966Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observation":"CNGXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3,"epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:18","latency":"73.983µs"} -{"level":"debug","ts":"2023-08-03T06:40:18.081Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:18","latency":"103.239µs"} -{"level":"debug","ts":"2023-08-03T06:40:18.205Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.206Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044816}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.311Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:18.312Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:18.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaReportPPB":0,"alphaReportInfinite":false,"unfulfilledRequest":false,"result":true,"deltaC":0,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":1},"reportingPlugin":"NumericalMedian","deviation":true,"deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:16.000Z"} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"epoch":4,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":4,"Round":1,"H":[127,175,187,50,84,44,10,172,72,198,245,77,115,15,220,149,83,245,35,154,139,27,226,65,72,149,82,2,181,0,41,199],"AttestedReport":{"Report":"ZMtL0QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"gRAwCsxRasRvfYKoKE7U674+OtHikQ9B8p3afSidNaQxtzJu8KXCO3nh3AEf3iH4Ot/0vNdXJyz3AcWZfIv8XQE=","Signer":1},{"Signature":"pB13wa5AoZ0EoEIN0GR7skToDXGJ0fD/9y+wYMcION1abAL6HB1EoRXm+ZD6mkRTfuCcSe99PmTnfoIpemEshgE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":3,"Round":3},"reportEpochRound":{"Epoch":4,"Round":1},"deviates":true,"result":true,"latestAcceptedEpochRound":{"Epoch":3,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:18.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"epoch":4,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:18.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"sender":0,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000741505} -{"level":"debug","ts":"2023-08-03T06:40:18.966Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000736078} -{"level":"debug","ts":"2023-08-03T06:40:18.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observation":"CNKXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:19.292Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.293Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044817}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.334Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:19.335Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:19.469Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"result":true,"initialRound":false,"alphaReportInfinite":false,"deviation":true,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaC":0,"unfulfilledRequest":false,"lastTransmissionTimestamp":"2023-08-03T06:40:17.000Z","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":2},"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":4,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":3,"epoch":4,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":4,"Round":2,"H":[227,57,141,191,243,159,108,42,91,240,130,82,173,222,213,122,27,228,168,157,52,71,161,87,8,106,134,129,242,145,113,65],"AttestedReport":{"Report":"ZMtL0gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"kcGwJXWpR5Mz62YXjS3uTL5R0RpyrG3Kie73vzL0UsAL+RJqAkF2+VVCp+ioeQm0W3klhOq2wy3pIQaMcNSAGwE=","Signer":1},{"Signature":"X83nLJ9mOnIhxpODNMp8SVQt2xuHC6mERVsxuGnraeVtWtlGiUfeqGNYw13NLpKjZIDTlzoobF5iBe0xbjGSVAA=","Signer":3}]}},"oid":3} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptInfinite":false,"deviates":true,"result":true,"alphaAcceptPPB":0,"contractEpochRound":{"Epoch":4,"Round":1},"reportEpochRound":{"Epoch":4,"Round":2},"latestAcceptedEpochRound":{"Epoch":4,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:40:19.470Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":4,"round":2,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"sender":2,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:19.967Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000660776} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000703755} -{"level":"debug","ts":"2023-08-03T06:40:19.968Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observation":"CNOXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.297Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.298Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044818}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.350Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:20.351Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:20.470Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"lastTransmissionTimestamp":"2023-08-03T06:40:18.000Z","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"deltaC":0,"reportingPlugin":"NumericalMedian","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":4,"Round":3},"unfulfilledRequest":false,"alphaReportPPB":0,"deviation":true,"alphaReportInfinite":false,"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":4,"round":3,"sender":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:20.471Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":4,"Round":3,"H":[181,36,61,27,174,108,246,113,97,41,205,33,84,28,183,101,35,106,8,1,125,130,59,188,121,223,60,71,111,23,153,24],"AttestedReport":{"Report":"ZMtL0wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"oR2KORlVQ0wBVdEB+7t4EOfHRkfHeS4lhKdYobI85TtgFxlp/gseoIp6T5DkymCZc9WfEnZUDNNlkPwN1vNvqwA=","Signer":1},{"Signature":"fyHaVozEk0cFxbTE93pMb6UIaS3U1B2tcJ3eTP14jhw/XEpCHIY33MMgNbad5njRlfvuJ39BiZW2yB+U+nNTuQA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"result":true,"contractEpochRound":{"Epoch":4,"Round":2},"alphaAcceptInfinite":false,"reportingPlugin":"NumericalMedian","alphaAcceptPPB":0,"reportEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":2}} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":4,"round":3,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:20.472Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":4,"round":3,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:20.835Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:40:20.967Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":4,"messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":4,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","candidateEpochs":[5,5,5],"newEpoch":5,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":4,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"e":4,"l":1} -{"level":"info","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:20.968Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000636792} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000690017} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CNSXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"msgRound":1,"round":1,"sender":3,"msgEpoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:20.969Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","requiredObservationCount":3,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"observationCount":1} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":1,"msgEpoch":5,"msgRound":1} -{"level":"debug","ts":"2023-08-03T06:40:20.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"observationCount":2,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","msgRound":1,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"sender":2,"msgEpoch":5} -{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"observationCount":3,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"oid":3} -{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"msgRound":1,"round":1,"sender":0,"msgEpoch":5} -{"level":"debug","ts":"2023-08-03T06:40:20.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:21.358Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.358Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044819}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:21.429Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:21.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaC":0,"alphaReportInfinite":false,"result":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":1},"lastTransmissionTimestamp":"2023-08-03T06:40:19.000Z","reportingPlugin":"NumericalMedian","unfulfilledRequest":false,"deviation":true,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deltaCTimeout":true,"initialRound":false} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":3,"epoch":5,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","event":{"Epoch":5,"Round":1,"H":[243,61,202,42,224,181,183,218,241,208,244,117,159,59,51,174,3,98,247,140,142,168,220,234,218,40,96,148,2,253,44,62],"AttestedReport":{"Report":"ZMtL1AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"30Yu94e8+c++7s+1YsWJScUoofdaBDTVTowQitmiHqtp5MyTgYg6J6TrPiHOgZynpm4d4qfis/oIwz1YmZreCgA=","Signer":1},{"Signature":"YXb+BzoK0JnxcYDU6xA3aK2nPBFDNg6U1GnrRNBiQOZhiOA4vVCvZfcw96LcimOFcOP8MQSpeSPoB6pml7nKQQE=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportEpochRound":{"Epoch":5,"Round":1},"alphaAcceptInfinite":false,"deviates":true,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","result":true,"contractEpochRound":{"Epoch":4,"Round":3},"latestAcceptedEpochRound":{"Epoch":4,"Round":3},"alphaAcceptPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:21.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:21.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":1,"sender":0} -{"level":"debug","ts":"2023-08-03T06:40:21.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:21.969Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000704509} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000712494} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"observation":"CNWXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","round":2} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","msgEpoch":5,"msgRound":2,"round":2,"sender":3,"oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:21.970Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","observationCount":1,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"requiredObservationCount":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","msgEpoch":5,"msgRound":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"requiredObservationCount":3,"round":2,"observationCount":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"msgRound":2,"round":2,"sender":2,"msgEpoch":5} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"observationCount":3,"requiredObservationCount":3,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:21.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} -{"level":"debug","ts":"2023-08-03T06:40:21.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","sender":0,"msgEpoch":5,"msgRound":2} -{"level":"debug","ts":"2023-08-03T06:40:21.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:22.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044820}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.438Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:22.439Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:22.472Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaC":0,"deltaCTimeout":true,"reportingPlugin":"NumericalMedian","result":true,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:20.000Z","unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":2},"initialRound":false,"alphaReportInfinite":false,"alphaReportPPB":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"currentPhase":"final","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":5,"Round":2,"H":[9,24,59,213,110,59,8,68,170,72,213,193,39,135,1,138,175,186,31,36,28,209,54,71,6,22,178,46,143,74,83,0],"AttestedReport":{"Report":"ZMtL1QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZsWULiQqkHjwQ3dXgncTf1PEh8Ot54ynIUzLeVM+7d9Kj2/bmoBUrga8cCP43umZzPNkCxmFCTZasTH73ANwNgE=","Signer":1},{"Signature":"3WIB/MoU8M9fTdnAPrs/A9AupqaHeexO7B/T3bweu2oTIzPlQPSSVu6QkLxvdXWjKQOgTUtyNlwgoemez7S9bQA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:22.473Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","currentPhase":"final","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaAcceptPPB":0,"contractEpochRound":{"Epoch":5,"Round":1},"latestAcceptedEpochRound":{"Epoch":5,"Round":1},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true,"result":true,"reportEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false} -{"level":"info","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"epoch":5,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":1,"epoch":5,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":2,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"round":2,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.474Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"} -{"level":"debug","ts":"2023-08-03T06:40:22.475Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e"} -{"level":"debug","ts":"2023-08-03T06:40:22.566Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"} -{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000664868} -{"level":"debug","ts":"2023-08-03T06:40:22.970Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.00071252} -{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"observation":"CNaXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"sender":3,"msgEpoch":5,"msgRound":3,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:22.971Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"requiredObservationCount":3,"round":3,"observationCount":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","msgRound":3,"round":3,"sender":1,"msgEpoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"round":3,"observationCount":2,"requiredObservationCount":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":3,"sender":0,"msgEpoch":5,"msgRound":3,"oid":3,"epoch":5} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:197","msg":"One more observation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":3,"observationCount":3,"requiredObservationCount":3} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:204","msg":"starting observation grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:179","msg":"MessageObserve has valid SignedObservation","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"msgEpoch":5,"msgRound":3,"round":3,"sender":2,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:22.972Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:211","msg":"accepted extra observation during grace period","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:23","latency":"82.271µs"} -{"level":"debug","ts":"2023-08-03T06:40:23.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:23","latency":"82.143µs"} -{"level":"debug","ts":"2023-08-03T06:40:23.094Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e","signature":"4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"} -{"level":"debug","ts":"2023-08-03T06:40:23.094Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"343bca48-fc9e-4379-9ad0-b0a96c320c9e","signatures":["4Jc99K4iSX675UTY5QqdhRHEtnsdzMkcFMRGfy58u8d6rKBtpS6TArVYc2gVbGZMvGg8ZAurVdWLMd8DjwAp487Z"]} -{"level":"debug","ts":"2023-08-03T06:40:23.393Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:23.394Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044821}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:23.451Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:23.452Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:23.473Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:40:21.000Z","alphaReportInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":5,"Round":3},"unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deviation":true,"deltaC":0,"deltaCTimeout":true,"result":true} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"round":3,"currentPhase":"final"} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_generation_leader.go:275","msg":"messageReport: dropping MessageReport due to not being in report phase","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":3,"currentPhase":"final","epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":5,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":5,"Round":3,"H":[206,10,102,211,94,46,53,54,160,208,1,190,82,9,82,0,67,232,24,141,115,142,233,76,161,174,149,241,139,68,91,22],"AttestedReport":{"Report":"ZMtL1gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"wCwtYwuDAQL1SuYSl5Gx/6NIBoMoicnfTXUn0Jc1cXtc5zmEa/AGJt+PgSibS1uV//fZx5SxGxhFviKOiV5qggE=","Signer":1},{"Signature":"QjmlxdpCkNOgnF2Ho2LRsrplpzHGN8G1cuOpRrccg7ZEYfqk6Npid3xt8OaT71xsjIuczdBBogwTfyucV6PO2AA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":3,"epoch":5,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","latestAcceptedEpochRound":{"Epoch":5,"Round":2},"reportingPlugin":"NumericalMedian","result":true,"reportEpochRound":{"Epoch":5,"Round":3},"contractEpochRound":{"Epoch":5,"Round":2},"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0,"deviates":true} -{"level":"debug","ts":"2023-08-03T06:40:23.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":3,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"round":3,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:23.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":5,"round":3,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:23.970Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","roundMax":3,"oid":3,"epoch":5,"leader":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":4,"messageRound":4} -{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"newEpoch":6,"candidateEpochs":[6,6,6]} -{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":5,"leader":3,"e":5,"l":3} -{"level":"info","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:23.971Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000628849} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000749066} -{"level":"debug","ts":"2023-08-03T06:40:23.972Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":6,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":1,"observation":"CNeXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ=="} -{"level":"debug","ts":"2023-08-03T06:40:24.460Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:24.461Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044822}","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:24.475Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":1},"deltaCTimeout":true,"deviation":true,"alphaReportInfinite":false,"deltaC":0,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":false,"initialRound":false,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","result":true,"alphaReportPPB":0} -{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"leader":0,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"round":1,"epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:24.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":6,"Round":1,"H":[244,15,111,137,250,135,131,135,57,90,142,230,115,72,200,82,209,144,198,249,55,197,244,193,147,100,71,25,50,26,111,154],"AttestedReport":{"Report":"ZMtL1wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"knjjpTh9l8tAEyTuDt+dkqgTNuqEKHogYxpdJlXDn4Fhs7AL+CU2wAvtRCpiFp38YoiIrahj+WRQRrHt7FiDzgE=","Signer":0},{"Signature":"KWlkh7TOU0KwcC9sSc6opF+P0H6IIbVGvO2L4lgI2LFmTydggb7Crmx23p7dQ03T3TCZIDx5kOyiRe8tC55jSwE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","latestAcceptedEpochRound":{"Epoch":5,"Round":3},"alphaAcceptInfinite":false,"alphaAcceptPPB":0,"deviates":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","contractEpochRound":{"Epoch":5,"Round":2},"result":true,"reportingPlugin":"NumericalMedian","reportEpochRound":{"Epoch":6,"Round":1}} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"sender":2} -{"level":"debug","ts":"2023-08-03T06:40:24.477Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":1,"sender":1,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:40:24.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:24.510Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:24.972Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000748644} -{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.001050142} -{"level":"debug","ts":"2023-08-03T06:40:24.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"leader":0,"round":2,"observation":"CNiXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"info","ts":"2023-08-03T06:40:25.474Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":2},"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:22.000Z","reportingPlugin":"NumericalMedian","alphaReportInfinite":false,"deltaC":0,"initialRound":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","unfulfilledRequest":false,"result":true,"alphaReportPPB":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"leader":0,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2,"epoch":6} -{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:25.475Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":6,"Round":2,"H":[38,148,213,49,227,64,117,63,131,130,132,239,183,36,175,40,250,10,156,19,9,56,1,120,11,158,42,227,38,215,82,129],"AttestedReport":{"Report":"ZMtL2AQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"S8ReeuNDPqeylRH8qo7M+W/JowNfCQiXNQpfNDCQUJBjX3XnBj0hfXrvaPru4uV0+YbBJbQ/jlbZWW0lv6lD7gE=","Signer":0},{"Signature":"K+YE4vsQyAFd3jxGBb8NnPNCVDqEGqa7u5ThUpnWRpdrQoU3ETZPTNQ8rlyOIYbLsV5A2hYIyZAc2Uq9JTgC8wE=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"round":2,"sender":0,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"reportEpochRound":{"Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","latestAcceptedEpochRound":{"Epoch":6,"Round":1},"deviates":true,"contractEpochRound":{"Epoch":5,"Round":3}} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":6,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:25.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:25.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.504Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044823}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.512Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.513Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:25.835Z","logger":"SingletonPeerWrapper","caller":"ragedisco/discovery_protocol.go:575","msg":"Starting reconciliation","version":"2.4.0@114e039","in":"sendLoop","id":"ragep2p","peerID":"12D3KooWNbrKeAdWHhpsLD3bMQqUtmoPDfkEas6oDCgV2X5fYXiL","_id":"discoveryProtocol"} -{"level":"debug","ts":"2023-08-03T06:40:25.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:25.972Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:25.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000792154} -{"level":"debug","ts":"2023-08-03T06:40:25.973Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000791896} -{"level":"debug","ts":"2023-08-03T06:40:25.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":6,"leader":0,"round":3,"observation":"CNmXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"info","ts":"2023-08-03T06:40:26.475Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","alphaReportInfinite":false,"deviation":true,"lastTransmissionTimestamp":"2023-08-03T06:40:23.000Z","result":true,"unfulfilledRequest":false,"initialRound":false,"reportingPlugin":"NumericalMedian","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":6,"Round":3},"alphaReportPPB":0,"deltaC":0,"deltaCTimeout":true} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":6,"leader":0,"round":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":6,"Round":3,"H":[82,253,131,20,85,148,188,36,241,216,247,49,2,170,75,136,61,243,104,162,34,98,30,200,213,98,88,150,160,203,161,84],"AttestedReport":{"Report":"ZMtL2QQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"NAicaAGSR8AHFiF99I/6FgEdTGzdiSGs7jheyWW+PPwmKSKIeXH21A6EpmzNB7u+ODiPzR2wC0GbRcyXjc0kOQE=","Signer":0},{"Signature":"UuWxT4lpeWVm+IczNcOr9fnPgboKuaqzploLQAbkUBRj+w5Z6OHJYaJf5bEwzL4KMcenYh2jbDlL8jSrUL7BRQA=","Signer":2}]}}} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":0,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","result":true,"reportEpochRound":{"Epoch":6,"Round":3},"latestAcceptedEpochRound":{"Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","deviates":true,"contractEpochRound":{"Epoch":6,"Round":1},"alphaAcceptInfinite":false,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":1,"epoch":6,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:26.476Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:26.477Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:26.477Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"round":3} -{"level":"debug","ts":"2023-08-03T06:40:26.477Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"6451db72-3a72-46fa-8442-0c9591da4369","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"} -{"level":"debug","ts":"2023-08-03T06:40:26.477Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc","id":"6451db72-3a72-46fa-8442-0c9591da4369"} -{"level":"debug","ts":"2023-08-03T06:40:26.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:26.521Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044824}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:26.535Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:26.536Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:26.695Z","logger":"Solana","caller":"txm/txm.go:370","msg":"tx state: not found","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"} -{"level":"debug","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:92","msg":"messageReportReq: leader sent MessageObserveReq past its expiration round. Time to change leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","messageRound":4,"roundMax":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":6,"leader":0,"round":4} -{"level":"debug","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/pacemaker.go:437","msg":"Moving to epoch, based on candidateEpochs","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","newEpoch":7,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"candidateEpochs":[7,7,7]} -{"level":"info","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/report_generation.go:163","msg":"ReportGeneration: exiting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","l":0,"oid":3,"epoch":6,"leader":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","e":6} -{"level":"info","ts":"2023-08-03T06:40:26.973Z","logger":"OCR2","caller":"protocol/report_generation.go:132","msg":"Running ReportGeneration","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"leader":1} -{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000694689} -{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.000731119} -{"level":"debug","ts":"2023-08-03T06:40:26.974Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","leader":1,"round":1,"observation":"CNqXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:40:27.240Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"6451db72-3a72-46fa-8442-0c9591da4369","signature":"5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"} -{"level":"debug","ts":"2023-08-03T06:40:27.241Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"6451db72-3a72-46fa-8442-0c9591da4369","signatures":["5spXdMzBHUBUkytXBrhN4SJvb26K68WVa1E3SBcYAmjXdhDq86UvmDsG5Lno6Qm5QL1nyjEvQeLn7rpZ1TBULQwc"]} -{"level":"info","ts":"2023-08-03T06:40:27.477Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":7,"Round":1},"alphaReportInfinite":false,"result":true,"lastTransmissionTimestamp":"2023-08-03T06:40:24.000Z","unfulfilledRequest":false,"alphaReportPPB":0,"reportingPlugin":"NumericalMedian","deviation":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","initialRound":false,"deltaC":0} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"leader":1,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":7,"round":1,"sender":3} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"sender":1,"epoch":7,"round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","event":{"Epoch":7,"Round":1,"H":[56,221,132,73,59,212,227,223,30,232,58,85,172,13,45,89,199,184,106,108,236,70,8,83,11,66,50,246,135,183,12,178],"AttestedReport":{"Report":"ZMtL2gQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"K8Jg616KS6+Xo5r+CT37ZVoTtoPCvZng1JzxzUwxMWtlrjpK1dxsDdSl8kkjisUXlXi/yADgyCXkuTBns4NfAAE=","Signer":0},{"Signature":"Vb9MF2XyZuEciZ6DBpROrVPr8iZS9T2aUmLe1BvtvKds95vF3+3EBiH+ZbLADrfJm/7oYrnuNXLa///3OBMHOwA=","Signer":1}]}},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportEpochRound":{"Epoch":7,"Round":1},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","latestAcceptedEpochRound":{"Epoch":6,"Round":3},"result":true,"deviates":true,"contractEpochRound":{"Epoch":6,"Round":2},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0} -{"level":"info","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":1,"sender":0,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"round":1,"sender":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:27.482Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"info","ts":"2023-08-03T06:40:27.482Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"round":1} -{"level":"debug","ts":"2023-08-03T06:40:27.483Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"fd689a59-930d-4274-b009-80f72d3b1fe1","signature":"JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf"} -{"level":"debug","ts":"2023-08-03T06:40:27.483Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf","id":"fd689a59-930d-4274-b009-80f72d3b1fe1"} -{"level":"debug","ts":"2023-08-03T06:40:27.613Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:27.614Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044825}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:27.620Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:27.621Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:27.778Z","logger":"Solana","caller":"txm/txm.go:411","msg":"tx state: confirmed","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"fd689a59-930d-4274-b009-80f72d3b1fe1","signature":"JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf"} -{"level":"debug","ts":"2023-08-03T06:40:27.778Z","logger":"Solana","caller":"txm/txm.go:238","msg":"stopped tx retry","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"fd689a59-930d-4274-b009-80f72d3b1fe1","signatures":["JARxAJTJXK1AFrHvxoURLtVCwwDsFvGckiya8RLgHBKRMazBreXHSyh1toCJiPrXVoEyxn7ef3uBq7DxiqwEhKf"]} -{"level":"debug","ts":"2023-08-03T06:40:27.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":""} -{"level":"debug","ts":"2023-08-03T06:40:27.974Z","logger":"OCR2","caller":"pipeline/runner.go:302","msg":"Initiating tasks for pipeline run of spec","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800"} -{"level":"debug","ts":"2023-08-03T06:40:27.975Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","specID":1,"runTime":0.000643248} -{"level":"debug","ts":"2023-08-03T06:40:27.975Z","logger":"OCR2","caller":"pipeline/runner.go:349","msg":"Finished all tasks for pipeline run","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":0,"jobName":"","specID":1,"runTime":0.00064988} -{"level":"debug","ts":"2023-08-03T06:40:27.975Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:172","msg":"sent observation to leader","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"leader":1,"round":2,"observation":"CNuXraYGEhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUaGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ==","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:28","latency":"83.16µs"} -{"level":"debug","ts":"2023-08-03T06:40:28.082Z","caller":"web/router.go:536","msg":"GET /health","version":"2.4.0@114e039","method":"GET","status":200,"path":"/health","ginPath":"/health","query":"","body":"","clientIP":"10.14.108.21","errors":"","servedAt":"2023-08-03 06:40:28","latency":"66.081µs"} -{"level":"info","ts":"2023-08-03T06:40:28.477Z","logger":"OCR2","caller":"median/median.go:554","msg":"shouldReport: yes, because new median deviates sufficiently from current onchain value","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","deltaCTimeout":true,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","lastTransmissionTimestamp":"2023-08-03T06:40:25.000Z","alphaReportInfinite":false,"unfulfilledRequest":false,"timestamp":{"ConfigDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","Epoch":7,"Round":2},"initialRound":false,"alphaReportPPB":0,"deviation":true,"result":true,"deltaC":0,"reportingPlugin":"NumericalMedian"} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_generation_follower.go:381","msg":"ReportGeneration: completed round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"leader":1,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","round":2} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:134","msg":"finalizing report","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","epoch":7,"round":2,"sender":3,"oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","epoch":7,"round":2,"sender":1} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/transmission.go:142","msg":"Received transmit event","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"event":{"Epoch":7,"Round":2,"H":[245,210,210,199,175,77,41,38,11,121,154,193,87,99,89,121,75,27,78,160,252,166,181,69,243,100,80,131,61,100,147,54],"AttestedReport":{"Report":"ZMtL2wQAAQIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAABQ==","AttributedSignatures":[{"Signature":"ZYXEUZXqvDSnRrxY0R6XApyzqlOyvyU6b/Y+G57hT041UccLvTptPKDJFSrfscnpDHtXTvRWRnM+VGdgbDtb8gE=","Signer":1},{"Signature":"Brn4kfRxPWdKI3wt7dJQyPthSgmESCfY2+6MP2oEgDJyxdFAzohEF2+qs18opYyI88MKEXHvRwffG4AnSJZh8gA=","Signer":3}]}}} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"median/median.go:627","msg":"ShouldAcceptFinalizedReport() = result","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","reportEpochRound":{"Epoch":7,"Round":2},"latestAcceptedEpochRound":{"Epoch":7,"Round":1},"reportingPlugin":"NumericalMedian","alphaAcceptInfinite":false,"alphaAcceptPPB":0,"result":true,"contractEpochRound":{"Epoch":6,"Round":3},"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","deviates":true} -{"level":"info","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/transmission.go:275","msg":"eventTTransmitTimeout: Transmitting","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"round":2} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"Solana","caller":"solana/transmitter.go:84","msg":"Queuing transmit tx: state (HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg) + transmissions (3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm)","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"epoch":7,"round":2,"sender":0} -{"level":"info","ts":"2023-08-03T06:40:28.479Z","logger":"OCR2","caller":"protocol/transmission.go:315","msg":"eventTTransmitTimeout:❗️successfully transmitted report on-chain","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","oid":3,"epoch":7,"round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990"} -{"level":"debug","ts":"2023-08-03T06:40:28.480Z","logger":"OCR2","caller":"protocol/report_finalization.go:91","msg":"ignoring MessageFinalEcho for already finalized epoch and round","version":"2.4.0@114e039","jobID":1,"jobName":"sol-OCRv2-3-b8a9ea90-933c-4d03-80ae-688795ca5800","contractID":"HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","transmitterID":"3hxF7HzeTmo3SsvssopNoVmtMabAxFiWrEddJdC33XXF","round":2,"configDigest":"0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","oid":3,"sender":2,"epoch":7} -{"level":"debug","ts":"2023-08-03T06:40:28.480Z","logger":"Solana","caller":"txm/txm.go:221","msg":"tx initial broadcast","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","id":"e93f1362-cb60-4ee7-bd0b-693149f7a1df","signature":"bDGT85rVPXj3dBYdZ3xYAKGCb62heN8CBGZhKHEtSAheM3hyNRsJESvPcipxgSQgt85nKActBjUXdg9C9AqyGTn"} -{"level":"debug","ts":"2023-08-03T06:40:28.480Z","logger":"Solana","caller":"txm/txm.go:137","msg":"transaction sent","version":"2.4.0@114e039","chainID":"localnet","chainSet":"solana","signature":"bDGT85rVPXj3dBYdZ3xYAKGCb62heN8CBGZhKHEtSAheM3hyNRsJESvPcipxgSQgt85nKActBjUXdg9C9AqyGTn","id":"e93f1362-cb60-4ee7-bd0b-693149f7a1df"} -{"level":"debug","ts":"2023-08-03T06:40:28.632Z","logger":"Solana","caller":"solana/transmissions_cache.go:115","msg":"fetch latest transmission for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:28.633Z","logger":"Solana","caller":"solana/transmissions_cache.go:120","msg":"latest transmission fetched for account: 3eryEB9FQ7GEKxjETXyssByDRapFTMvyX98oauji9WVm, result: {5 1691044826}","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:28.639Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:120","msg":"fetch state for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg","version":"2.4.0@114e039"} -{"level":"debug","ts":"2023-08-03T06:40:28.640Z","logger":"Solana.MedianProvider.ConfigProvider","caller":"solana/state_cache.go:126","msg":"state fetched for account: HSfTPfEVDfSvi14NgZWP4iCay84wAUF77rpUJodnxzGg, result (config digest): 0003a6b3abfffc744ffa4288379f870e922214ea7a65c3462de5a65930d28990","version":"2.4.0@114e039"} diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log deleted file mode 100644 index 6d042a066..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/qa-mock-adapter_0/qa-mock-adapter.log +++ /dev/null @@ -1,244 +0,0 @@ -6:33AM INF Starting external adapter Port=:6060 -6:33AM INF Index Endpoint=/ -6:33AM INF Index Endpoint=/ -6:33AM INF Index Endpoint=/ -6:33AM INF Index Endpoint=/ -6:33AM INF Index Endpoint=/ -6:33AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:34AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:35AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:36AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:37AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:38AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:39AM INF Index Endpoint=/ -6:40AM INF Index Endpoint=/ -6:40AM INF Index Endpoint=/ -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Index Endpoint=/ -6:40AM INF Index Endpoint=/ -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Index Endpoint=/ -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Index Endpoint=/ -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Index Endpoint=/ -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 -6:40AM INF Five Endpoint=/five Result=5 diff --git a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log b/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log deleted file mode 100644 index 40b6aaf93..000000000 --- a/integration-tests/smoke/logs/TestSolanaOCRV2Smoke-solana-smoke-957b2-1691044813/sol_0/sol-val.log +++ /dev/null @@ -1,1801 +0,0 @@ -Ledger location: test-ledger -Log: test-ledger/validator.log -Initializing... -Waiting for fees to stabilize 1... -Waiting for fees to stabilize 2... -Connecting... -Identity: 6dJ2tBjAW2CVGrJMa4H3MNTLftm3dLDuPSPet9mbF6Zj -Genesis Hash: 59rFUDYE1gzyEbtdraEWpMSqEiVmpUQZpbnSMWYi2h4s -Version: 1.13.3 -Shred Version: 30490 -Gossip Address: 127.0.0.1:1024 -TPU Address: 127.0.0.1:1027 -JSON RPC URL: http://127.0.0.1:8899 -00:00:02 | Processed Slot: 1 | Confirmed Slot: 1 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 0 | ◎500.000000000 -00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 -00:00:02 | Processed Slot: 2 | Confirmed Slot: 2 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 1 | ◎499.999995000 -00:00:02 | Processed Slot: 3 | Confirmed Slot: 3 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 2 | ◎499.999990000 -00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 -00:00:03 | Processed Slot: 4 | Confirmed Slot: 4 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 3 | ◎499.999985000 -00:00:03 | Processed Slot: 5 | Confirmed Slot: 5 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 4 | ◎499.999980000 -00:00:03 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 -00:00:04 | Processed Slot: 6 | Confirmed Slot: 6 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 5 | ◎499.999975000 -00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 -00:00:04 | Processed Slot: 7 | Confirmed Slot: 7 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 6 | ◎499.999970000 -00:00:04 | Processed Slot: 8 | Confirmed Slot: 8 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 7 | ◎499.999965000 -00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 -00:00:05 | Processed Slot: 9 | Confirmed Slot: 9 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 8 | ◎499.999960000 -00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 -00:00:05 | Processed Slot: 10 | Confirmed Slot: 10 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 9 | ◎499.999955000 -00:00:06 | Processed Slot: 11 | Confirmed Slot: 11 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 10 | ◎499.999950000 -00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 -00:00:06 | Processed Slot: 12 | Confirmed Slot: 12 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 11 | ◎499.999945000 -00:00:06 | Processed Slot: 13 | Confirmed Slot: 13 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 12 | ◎499.999940000 -00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 -00:00:07 | Processed Slot: 14 | Confirmed Slot: 14 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 13 | ◎499.999935000 -00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 -00:00:07 | Processed Slot: 15 | Confirmed Slot: 15 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 14 | ◎499.999930000 -00:00:08 | Processed Slot: 16 | Confirmed Slot: 16 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 15 | ◎499.999925000 -00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 -00:00:08 | Processed Slot: 17 | Confirmed Slot: 17 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 16 | ◎499.999920000 -00:00:08 | Processed Slot: 18 | Confirmed Slot: 18 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 17 | ◎499.999915000 -00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 -00:00:09 | Processed Slot: 19 | Confirmed Slot: 19 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 18 | ◎499.999910000 -00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 -00:00:09 | Processed Slot: 20 | Confirmed Slot: 20 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 19 | ◎499.999905000 -00:00:10 | Processed Slot: 21 | Confirmed Slot: 21 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 20 | ◎499.999900000 -00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 -00:00:10 | Processed Slot: 22 | Confirmed Slot: 22 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 21 | ◎499.999895000 -00:00:10 | Processed Slot: 23 | Confirmed Slot: 23 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 22 | ◎499.999890000 -00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 -00:00:11 | Processed Slot: 24 | Confirmed Slot: 24 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 23 | ◎499.999885000 -00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 -00:00:11 | Processed Slot: 25 | Confirmed Slot: 25 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 24 | ◎499.999880000 -00:00:12 | Processed Slot: 26 | Confirmed Slot: 26 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 25 | ◎499.999875000 -00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 -00:00:12 | Processed Slot: 27 | Confirmed Slot: 27 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 26 | ◎499.999870000 -00:00:12 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 -00:00:13 | Processed Slot: 28 | Confirmed Slot: 28 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 27 | ◎499.999865000 -00:00:13 | Processed Slot: 29 | Confirmed Slot: 29 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 28 | ◎499.999860000 -00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 -00:00:13 | Processed Slot: 30 | Confirmed Slot: 30 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 29 | ◎499.999855000 -00:00:14 | Processed Slot: 31 | Confirmed Slot: 31 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 30 | ◎499.999850000 -00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 -00:00:14 | Processed Slot: 32 | Confirmed Slot: 32 | Finalized Slot: 0 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 31 | ◎499.999845000 -00:00:14 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 -00:00:15 | Processed Slot: 33 | Confirmed Slot: 33 | Finalized Slot: 1 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 32 | ◎499.999840000 -00:00:15 | Processed Slot: 34 | Confirmed Slot: 34 | Finalized Slot: 2 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 33 | ◎499.999835000 -00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 -00:00:15 | Processed Slot: 35 | Confirmed Slot: 35 | Finalized Slot: 3 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 34 | ◎499.999830000 -00:00:16 | Processed Slot: 36 | Confirmed Slot: 36 | Finalized Slot: 4 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 35 | ◎499.999825000 -00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 -00:00:16 | Processed Slot: 37 | Confirmed Slot: 37 | Finalized Slot: 5 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 36 | ◎499.999820000 -00:00:16 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 -00:00:17 | Processed Slot: 38 | Confirmed Slot: 38 | Finalized Slot: 6 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 37 | ◎499.999815000 -00:00:17 | Processed Slot: 39 | Confirmed Slot: 39 | Finalized Slot: 7 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 38 | ◎499.999810000 -00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 -00:00:17 | Processed Slot: 40 | Confirmed Slot: 40 | Finalized Slot: 8 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 39 | ◎499.999805000 -00:00:18 | Processed Slot: 41 | Confirmed Slot: 41 | Finalized Slot: 9 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 40 | ◎499.999800000 -00:00:18 | Processed Slot: 42 | Confirmed Slot: 41 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999800000 -00:00:18 | Processed Slot: 42 | Confirmed Slot: 42 | Finalized Slot: 10 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 41 | ◎499.999795000 -00:00:18 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 -00:00:19 | Processed Slot: 43 | Confirmed Slot: 43 | Finalized Slot: 11 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 42 | ◎499.999790000 -00:00:19 | Processed Slot: 44 | Confirmed Slot: 44 | Finalized Slot: 12 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 43 | ◎499.999785000 -00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 -00:00:19 | Processed Slot: 45 | Confirmed Slot: 45 | Finalized Slot: 13 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 44 | ◎499.999780000 -00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 -00:00:20 | Processed Slot: 46 | Confirmed Slot: 46 | Finalized Slot: 14 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 45 | ◎499.999775000 -00:00:20 | Processed Slot: 47 | Confirmed Slot: 47 | Finalized Slot: 15 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 46 | ◎499.999770000 -00:00:20 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 -00:00:21 | Processed Slot: 48 | Confirmed Slot: 48 | Finalized Slot: 16 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 47 | ◎499.999765000 -00:00:21 | Processed Slot: 49 | Confirmed Slot: 49 | Finalized Slot: 17 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 48 | ◎499.999760000 -00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 -00:00:21 | Processed Slot: 50 | Confirmed Slot: 50 | Finalized Slot: 18 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 49 | ◎499.999755000 -00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 -00:00:22 | Processed Slot: 51 | Confirmed Slot: 51 | Finalized Slot: 19 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 50 | ◎499.999750000 -00:00:22 | Processed Slot: 52 | Confirmed Slot: 52 | Finalized Slot: 20 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 51 | ◎499.999745000 -00:00:22 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 -00:00:23 | Processed Slot: 53 | Confirmed Slot: 53 | Finalized Slot: 21 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 52 | ◎499.999740000 -00:00:23 | Processed Slot: 54 | Confirmed Slot: 54 | Finalized Slot: 22 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 53 | ◎499.999735000 -00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 -00:00:23 | Processed Slot: 55 | Confirmed Slot: 55 | Finalized Slot: 23 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 54 | ◎499.999730000 -00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 -00:00:24 | Processed Slot: 56 | Confirmed Slot: 56 | Finalized Slot: 24 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 55 | ◎499.999725000 -00:00:24 | Processed Slot: 57 | Confirmed Slot: 57 | Finalized Slot: 25 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 56 | ◎499.999720000 -00:00:24 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 -00:00:25 | Processed Slot: 58 | Confirmed Slot: 58 | Finalized Slot: 26 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 57 | ◎499.999715000 -00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 -00:00:25 | Processed Slot: 59 | Confirmed Slot: 59 | Finalized Slot: 27 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 58 | ◎499.999710000 -00:00:25 | Processed Slot: 60 | Confirmed Slot: 60 | Finalized Slot: 28 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 59 | ◎499.999705000 -00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 -00:00:26 | Processed Slot: 61 | Confirmed Slot: 61 | Finalized Slot: 29 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 60 | ◎499.999700000 -00:00:26 | Processed Slot: 62 | Confirmed Slot: 62 | Finalized Slot: 30 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 61 | ◎499.999695000 -00:00:26 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 -00:00:27 | Processed Slot: 63 | Confirmed Slot: 63 | Finalized Slot: 31 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 62 | ◎499.999690000 -00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 -00:00:27 | Processed Slot: 64 | Confirmed Slot: 64 | Finalized Slot: 32 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 63 | ◎499.999685000 -00:00:27 | Processed Slot: 65 | Confirmed Slot: 65 | Finalized Slot: 33 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 64 | ◎499.999680000 -00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 -00:00:28 | Processed Slot: 66 | Confirmed Slot: 66 | Finalized Slot: 34 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 65 | ◎499.999675000 -00:00:28 | Processed Slot: 67 | Confirmed Slot: 67 | Finalized Slot: 35 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 66 | ◎499.999670000 -00:00:28 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 -00:00:29 | Processed Slot: 68 | Confirmed Slot: 68 | Finalized Slot: 36 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 67 | ◎499.999665000 -00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 -00:00:29 | Processed Slot: 69 | Confirmed Slot: 69 | Finalized Slot: 37 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 68 | ◎499.999660000 -00:00:29 | Processed Slot: 70 | Confirmed Slot: 70 | Finalized Slot: 38 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 69 | ◎499.999655000 -00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 -00:00:30 | Processed Slot: 71 | Confirmed Slot: 71 | Finalized Slot: 39 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 70 | ◎499.999650000 -00:00:30 | Processed Slot: 72 | Confirmed Slot: 72 | Finalized Slot: 40 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 71 | ◎499.999645000 -00:00:30 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 -00:00:31 | Processed Slot: 73 | Confirmed Slot: 73 | Finalized Slot: 41 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 72 | ◎499.999640000 -00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 -00:00:31 | Processed Slot: 74 | Confirmed Slot: 74 | Finalized Slot: 42 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 73 | ◎499.999635000 -00:00:31 | Processed Slot: 75 | Confirmed Slot: 75 | Finalized Slot: 43 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 74 | ◎499.999630000 -00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 -00:00:32 | Processed Slot: 76 | Confirmed Slot: 76 | Finalized Slot: 44 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 75 | ◎499.999625000 -00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 -00:00:32 | Processed Slot: 77 | Confirmed Slot: 77 | Finalized Slot: 45 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 76 | ◎499.999620000 -00:00:33 | Processed Slot: 78 | Confirmed Slot: 78 | Finalized Slot: 46 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 77 | ◎499.999615000 -00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 -00:00:33 | Processed Slot: 79 | Confirmed Slot: 79 | Finalized Slot: 47 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 78 | ◎499.999610000 -00:00:33 | Processed Slot: 80 | Confirmed Slot: 80 | Finalized Slot: 48 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 79 | ◎499.999605000 -00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 -00:00:34 | Processed Slot: 81 | Confirmed Slot: 81 | Finalized Slot: 49 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 80 | ◎499.999600000 -00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 -00:00:34 | Processed Slot: 82 | Confirmed Slot: 82 | Finalized Slot: 50 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 81 | ◎499.999595000 -00:00:35 | Processed Slot: 83 | Confirmed Slot: 83 | Finalized Slot: 51 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 82 | ◎499.999590000 -00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 -00:00:35 | Processed Slot: 84 | Confirmed Slot: 84 | Finalized Slot: 52 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 83 | ◎499.999585000 -00:00:35 | Processed Slot: 85 | Confirmed Slot: 85 | Finalized Slot: 53 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 84 | ◎499.999580000 -00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 -00:00:36 | Processed Slot: 86 | Confirmed Slot: 86 | Finalized Slot: 54 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 85 | ◎499.999575000 -00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 -00:00:36 | Processed Slot: 87 | Confirmed Slot: 87 | Finalized Slot: 55 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 86 | ◎499.999570000 -00:00:37 | Processed Slot: 88 | Confirmed Slot: 88 | Finalized Slot: 56 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 87 | ◎499.999565000 -00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 -00:00:37 | Processed Slot: 89 | Confirmed Slot: 89 | Finalized Slot: 57 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 88 | ◎499.999560000 -00:00:37 | Processed Slot: 90 | Confirmed Slot: 90 | Finalized Slot: 58 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 89 | ◎499.999555000 -00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 -00:00:38 | Processed Slot: 91 | Confirmed Slot: 91 | Finalized Slot: 59 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 90 | ◎499.999550000 -00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 -00:00:38 | Processed Slot: 92 | Confirmed Slot: 92 | Finalized Slot: 60 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 91 | ◎499.999545000 -00:00:39 | Processed Slot: 93 | Confirmed Slot: 93 | Finalized Slot: 61 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 92 | ◎499.999540000 -00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 -00:00:39 | Processed Slot: 94 | Confirmed Slot: 94 | Finalized Slot: 62 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 93 | ◎499.999535000 -00:00:39 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 -00:00:40 | Processed Slot: 95 | Confirmed Slot: 95 | Finalized Slot: 63 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 94 | ◎499.999530000 -00:00:40 | Processed Slot: 96 | Confirmed Slot: 96 | Finalized Slot: 64 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 95 | ◎499.999525000 -00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 -00:00:40 | Processed Slot: 97 | Confirmed Slot: 97 | Finalized Slot: 65 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 96 | ◎499.999520000 -00:00:41 | Processed Slot: 98 | Confirmed Slot: 98 | Finalized Slot: 66 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 97 | ◎499.999515000 -00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 -00:00:41 | Processed Slot: 99 | Confirmed Slot: 99 | Finalized Slot: 67 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 98 | ◎499.999510000 -00:00:41 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 -00:00:42 | Processed Slot: 100 | Confirmed Slot: 100 | Finalized Slot: 68 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 99 | ◎499.999505000 -00:00:42 | Processed Slot: 101 | Confirmed Slot: 101 | Finalized Slot: 69 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 100 | ◎499.999500000 -00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 -00:00:42 | Processed Slot: 102 | Confirmed Slot: 102 | Finalized Slot: 70 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 101 | ◎499.999495000 -00:00:43 | Processed Slot: 103 | Confirmed Slot: 103 | Finalized Slot: 71 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 102 | ◎499.999490000 -00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 -00:00:43 | Processed Slot: 104 | Confirmed Slot: 104 | Finalized Slot: 72 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 103 | ◎499.999485000 -00:00:43 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 -00:00:44 | Processed Slot: 105 | Confirmed Slot: 105 | Finalized Slot: 73 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 104 | ◎499.999480000 -00:00:44 | Processed Slot: 106 | Confirmed Slot: 106 | Finalized Slot: 74 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 105 | ◎499.999475000 -00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 -00:00:44 | Processed Slot: 107 | Confirmed Slot: 107 | Finalized Slot: 75 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 106 | ◎499.999470000 -00:00:45 | Processed Slot: 108 | Confirmed Slot: 108 | Finalized Slot: 76 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 107 | ◎499.999465000 -00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 -00:00:45 | Processed Slot: 109 | Confirmed Slot: 109 | Finalized Slot: 77 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 108 | ◎499.999460000 -00:00:45 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 -00:00:46 | Processed Slot: 110 | Confirmed Slot: 110 | Finalized Slot: 78 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 109 | ◎499.999455000 -00:00:46 | Processed Slot: 111 | Confirmed Slot: 111 | Finalized Slot: 79 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 110 | ◎499.999450000 -00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 -00:00:46 | Processed Slot: 112 | Confirmed Slot: 112 | Finalized Slot: 80 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 111 | ◎499.999445000 -00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 -00:00:47 | Processed Slot: 113 | Confirmed Slot: 113 | Finalized Slot: 81 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 112 | ◎499.999440000 -00:00:47 | Processed Slot: 114 | Confirmed Slot: 114 | Finalized Slot: 82 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 113 | ◎499.999435000 -00:00:47 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 -00:00:48 | Processed Slot: 115 | Confirmed Slot: 115 | Finalized Slot: 83 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 114 | ◎499.999430000 -00:00:48 | Processed Slot: 116 | Confirmed Slot: 116 | Finalized Slot: 84 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 115 | ◎499.999425000 -00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 -00:00:48 | Processed Slot: 117 | Confirmed Slot: 117 | Finalized Slot: 85 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 116 | ◎499.999420000 -00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 -00:00:49 | Processed Slot: 118 | Confirmed Slot: 118 | Finalized Slot: 86 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 117 | ◎499.999415000 -00:00:49 | Processed Slot: 119 | Confirmed Slot: 119 | Finalized Slot: 87 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 118 | ◎499.999410000 -00:00:49 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 -00:00:50 | Processed Slot: 120 | Confirmed Slot: 120 | Finalized Slot: 88 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 119 | ◎499.999405000 -00:00:50 | Processed Slot: 121 | Confirmed Slot: 121 | Finalized Slot: 89 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 120 | ◎499.999400000 -00:00:50 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 -00:00:51 | Processed Slot: 122 | Confirmed Slot: 122 | Finalized Slot: 90 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 121 | ◎499.999395000 -00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 -00:00:51 | Processed Slot: 123 | Confirmed Slot: 123 | Finalized Slot: 91 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 122 | ◎499.999390000 -00:00:51 | Processed Slot: 124 | Confirmed Slot: 124 | Finalized Slot: 92 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 123 | ◎499.999385000 -00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 -00:00:52 | Processed Slot: 125 | Confirmed Slot: 125 | Finalized Slot: 93 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 124 | ◎499.999380000 -00:00:52 | Processed Slot: 126 | Confirmed Slot: 126 | Finalized Slot: 94 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 125 | ◎499.999375000 -00:00:52 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 -00:00:53 | Processed Slot: 127 | Confirmed Slot: 127 | Finalized Slot: 95 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 126 | ◎499.999370000 -00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 -00:00:53 | Processed Slot: 128 | Confirmed Slot: 128 | Finalized Slot: 96 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 127 | ◎499.999365000 -00:00:53 | Processed Slot: 129 | Confirmed Slot: 129 | Finalized Slot: 97 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 128 | ◎499.999360000 -00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 -00:00:54 | Processed Slot: 130 | Confirmed Slot: 130 | Finalized Slot: 98 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 129 | ◎499.999355000 -00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: - | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 -00:00:54 | Processed Slot: 131 | Confirmed Slot: 131 | Finalized Slot: 99 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 130 | ◎499.999350000 -00:00:55 | Processed Slot: 132 | Confirmed Slot: 132 | Finalized Slot: 100 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 131 | ◎499.999345000 -00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 -00:00:55 | Processed Slot: 133 | Confirmed Slot: 133 | Finalized Slot: 101 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 132 | ◎499.999340000 -00:00:55 | Processed Slot: 134 | Confirmed Slot: 134 | Finalized Slot: 102 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 133 | ◎499.999335000 -00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 -00:00:56 | Processed Slot: 135 | Confirmed Slot: 135 | Finalized Slot: 103 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 134 | ◎499.999330000 -00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 -00:00:56 | Processed Slot: 136 | Confirmed Slot: 136 | Finalized Slot: 104 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 135 | ◎499.999325000 -00:00:57 | Processed Slot: 137 | Confirmed Slot: 137 | Finalized Slot: 105 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 136 | ◎499.999320000 -00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 -00:00:57 | Processed Slot: 138 | Confirmed Slot: 138 | Finalized Slot: 106 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 137 | ◎499.999315000 -00:00:57 | Processed Slot: 139 | Confirmed Slot: 139 | Finalized Slot: 107 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 138 | ◎499.999310000 -00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999305000 -00:00:58 | Processed Slot: 140 | Confirmed Slot: 140 | Finalized Slot: 108 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 139 | ◎499.999305000 -00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999300000 -00:00:58 | Processed Slot: 141 | Confirmed Slot: 141 | Finalized Slot: 109 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 140 | ◎499.999300000 -00:00:59 | Processed Slot: 142 | Confirmed Slot: 142 | Finalized Slot: 110 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 141 | ◎499.999295000 -00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999290000 -00:00:59 | Processed Slot: 143 | Confirmed Slot: 143 | Finalized Slot: 111 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 142 | ◎499.999290000 -00:00:59 | Processed Slot: 144 | Confirmed Slot: 144 | Finalized Slot: 112 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 143 | ◎499.999285000 -00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999280000 -00:01:00 | Processed Slot: 145 | Confirmed Slot: 145 | Finalized Slot: 113 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 144 | ◎499.999280000 -00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999275000 -00:01:00 | Processed Slot: 146 | Confirmed Slot: 146 | Finalized Slot: 114 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 145 | ◎499.999275000 -00:01:01 | Processed Slot: 147 | Confirmed Slot: 147 | Finalized Slot: 115 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 146 | ◎499.999270000 -00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999265000 -00:01:01 | Processed Slot: 148 | Confirmed Slot: 148 | Finalized Slot: 116 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 147 | ◎499.999265000 -00:01:01 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999260000 -00:01:02 | Processed Slot: 149 | Confirmed Slot: 149 | Finalized Slot: 117 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 148 | ◎499.999260000 -00:01:02 | Processed Slot: 150 | Confirmed Slot: 150 | Finalized Slot: 118 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 149 | ◎499.999255000 -00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999250000 -00:01:02 | Processed Slot: 151 | Confirmed Slot: 151 | Finalized Slot: 119 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 150 | ◎499.999250000 -00:01:03 | Processed Slot: 152 | Confirmed Slot: 152 | Finalized Slot: 120 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 152 | ◎499.999247500 -00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999247500 -00:01:03 | Processed Slot: 153 | Confirmed Slot: 153 | Finalized Slot: 121 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 155 | ◎499.999247500 -00:01:03 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 -00:01:04 | Processed Slot: 154 | Confirmed Slot: 154 | Finalized Slot: 122 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 157 | ◎499.999245000 -00:01:04 | Processed Slot: 155 | Confirmed Slot: 155 | Finalized Slot: 123 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 158 | ◎499.999240000 -00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 -00:01:04 | Processed Slot: 156 | Confirmed Slot: 156 | Finalized Slot: 124 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 159 | ◎499.999235000 -00:01:05 | Processed Slot: 157 | Confirmed Slot: 157 | Finalized Slot: 125 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 160 | ◎499.999230000 -00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 -00:01:05 | Processed Slot: 158 | Confirmed Slot: 158 | Finalized Slot: 126 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 161 | ◎499.999225000 -00:01:05 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 -00:01:06 | Processed Slot: 159 | Confirmed Slot: 159 | Finalized Slot: 127 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 162 | ◎499.999220000 -00:01:06 | Processed Slot: 160 | Confirmed Slot: 160 | Finalized Slot: 128 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 163 | ◎499.999215000 -00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 -00:01:06 | Processed Slot: 161 | Confirmed Slot: 161 | Finalized Slot: 129 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 164 | ◎499.999210000 -00:01:07 | Processed Slot: 162 | Confirmed Slot: 162 | Finalized Slot: 130 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 165 | ◎499.999205000 -00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 -00:01:07 | Processed Slot: 163 | Confirmed Slot: 163 | Finalized Slot: 131 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 166 | ◎499.999200000 -00:01:07 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 -00:01:08 | Processed Slot: 164 | Confirmed Slot: 164 | Finalized Slot: 132 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 167 | ◎499.999195000 -00:01:08 | Processed Slot: 165 | Confirmed Slot: 165 | Finalized Slot: 133 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 168 | ◎499.999190000 -00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 -00:01:08 | Processed Slot: 166 | Confirmed Slot: 166 | Finalized Slot: 134 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 169 | ◎499.999185000 -00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 -00:01:09 | Processed Slot: 167 | Confirmed Slot: 167 | Finalized Slot: 135 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 170 | ◎499.999180000 -00:01:09 | Processed Slot: 168 | Confirmed Slot: 168 | Finalized Slot: 136 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 171 | ◎499.999175000 -00:01:09 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 -00:01:10 | Processed Slot: 169 | Confirmed Slot: 169 | Finalized Slot: 137 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 172 | ◎499.999170000 -00:01:10 | Processed Slot: 170 | Confirmed Slot: 170 | Finalized Slot: 138 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 173 | ◎499.999165000 -00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 -00:01:10 | Processed Slot: 171 | Confirmed Slot: 171 | Finalized Slot: 139 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 174 | ◎499.999160000 -00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 -00:01:11 | Processed Slot: 172 | Confirmed Slot: 172 | Finalized Slot: 140 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 175 | ◎499.999155000 -00:01:11 | Processed Slot: 173 | Confirmed Slot: 173 | Finalized Slot: 141 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 176 | ◎499.999150000 -00:01:11 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 -00:01:12 | Processed Slot: 174 | Confirmed Slot: 174 | Finalized Slot: 142 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 177 | ◎499.999145000 -00:01:12 | Processed Slot: 175 | Confirmed Slot: 175 | Finalized Slot: 143 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 178 | ◎499.999140000 -00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 -00:01:12 | Processed Slot: 176 | Confirmed Slot: 176 | Finalized Slot: 144 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 179 | ◎499.999135000 -00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 -00:01:13 | Processed Slot: 177 | Confirmed Slot: 177 | Finalized Slot: 145 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 180 | ◎499.999130000 -00:01:13 | Processed Slot: 178 | Confirmed Slot: 178 | Finalized Slot: 146 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 181 | ◎499.999125000 -00:01:13 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 -00:01:14 | Processed Slot: 179 | Confirmed Slot: 179 | Finalized Slot: 147 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 182 | ◎499.999120000 -00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 -00:01:14 | Processed Slot: 180 | Confirmed Slot: 180 | Finalized Slot: 148 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 183 | ◎499.999115000 -00:01:14 | Processed Slot: 181 | Confirmed Slot: 181 | Finalized Slot: 149 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 184 | ◎499.999110000 -00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 -00:01:15 | Processed Slot: 182 | Confirmed Slot: 182 | Finalized Slot: 150 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 185 | ◎499.999105000 -00:01:15 | Processed Slot: 183 | Confirmed Slot: 183 | Finalized Slot: 151 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 186 | ◎499.999100000 -00:01:15 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 -00:01:16 | Processed Slot: 184 | Confirmed Slot: 184 | Finalized Slot: 152 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 187 | ◎499.999095000 -00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 -00:01:16 | Processed Slot: 185 | Confirmed Slot: 185 | Finalized Slot: 153 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 188 | ◎499.999090000 -00:01:16 | Processed Slot: 186 | Confirmed Slot: 186 | Finalized Slot: 154 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 189 | ◎499.999085000 -00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 -00:01:17 | Processed Slot: 187 | Confirmed Slot: 187 | Finalized Slot: 155 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 190 | ◎499.999080000 -00:01:17 | Processed Slot: 188 | Confirmed Slot: 188 | Finalized Slot: 156 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 191 | ◎499.999075000 -00:01:17 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 -00:01:18 | Processed Slot: 189 | Confirmed Slot: 189 | Finalized Slot: 157 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 192 | ◎499.999070000 -00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 -00:01:18 | Processed Slot: 190 | Confirmed Slot: 190 | Finalized Slot: 158 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 193 | ◎499.999065000 -00:01:18 | Processed Slot: 191 | Confirmed Slot: 191 | Finalized Slot: 159 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 194 | ◎499.999060000 -00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 -00:01:19 | Processed Slot: 192 | Confirmed Slot: 192 | Finalized Slot: 160 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 195 | ◎499.999055000 -00:01:19 | Processed Slot: 193 | Confirmed Slot: 193 | Finalized Slot: 161 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 196 | ◎499.999050000 -00:01:19 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 -00:01:20 | Processed Slot: 194 | Confirmed Slot: 194 | Finalized Slot: 162 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 197 | ◎499.999045000 -00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 -00:01:20 | Processed Slot: 195 | Confirmed Slot: 195 | Finalized Slot: 163 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 198 | ◎499.999040000 -00:01:20 | Processed Slot: 196 | Confirmed Slot: 196 | Finalized Slot: 164 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 199 | ◎499.999035000 -00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 -00:01:21 | Processed Slot: 197 | Confirmed Slot: 197 | Finalized Slot: 165 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 200 | ◎499.999030000 -00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 -00:01:21 | Processed Slot: 198 | Confirmed Slot: 198 | Finalized Slot: 166 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 201 | ◎499.999025000 -00:01:22 | Processed Slot: 199 | Confirmed Slot: 199 | Finalized Slot: 167 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 202 | ◎499.999020000 -00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 -00:01:22 | Processed Slot: 200 | Confirmed Slot: 200 | Finalized Slot: 168 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 203 | ◎499.999015000 -00:01:22 | Processed Slot: 201 | Confirmed Slot: 201 | Finalized Slot: 169 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 204 | ◎499.999010000 -00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 -00:01:23 | Processed Slot: 202 | Confirmed Slot: 202 | Finalized Slot: 170 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 205 | ◎499.999005000 -00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 -00:01:23 | Processed Slot: 203 | Confirmed Slot: 203 | Finalized Slot: 171 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 206 | ◎499.999000000 -00:01:24 | Processed Slot: 204 | Confirmed Slot: 204 | Finalized Slot: 172 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 207 | ◎499.998995000 -00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 -00:01:24 | Processed Slot: 205 | Confirmed Slot: 205 | Finalized Slot: 173 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 208 | ◎499.998990000 -00:01:24 | Processed Slot: 206 | Confirmed Slot: 206 | Finalized Slot: 174 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 209 | ◎499.998985000 -00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 -00:01:25 | Processed Slot: 207 | Confirmed Slot: 207 | Finalized Slot: 175 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 210 | ◎499.998980000 -00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 -00:01:25 | Processed Slot: 208 | Confirmed Slot: 208 | Finalized Slot: 176 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 211 | ◎499.998975000 -00:01:26 | Processed Slot: 209 | Confirmed Slot: 209 | Finalized Slot: 177 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 212 | ◎499.998970000 -00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 -00:01:26 | Processed Slot: 210 | Confirmed Slot: 210 | Finalized Slot: 178 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 213 | ◎499.998965000 -00:01:26 | Processed Slot: 211 | Confirmed Slot: 211 | Finalized Slot: 179 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 214 | ◎499.998960000 -00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 -00:01:27 | Processed Slot: 212 | Confirmed Slot: 212 | Finalized Slot: 180 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 215 | ◎499.998955000 -00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 -00:01:27 | Processed Slot: 213 | Confirmed Slot: 213 | Finalized Slot: 181 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 216 | ◎499.998950000 -00:01:28 | Processed Slot: 214 | Confirmed Slot: 214 | Finalized Slot: 182 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 217 | ◎499.998945000 -00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 -00:01:28 | Processed Slot: 215 | Confirmed Slot: 215 | Finalized Slot: 183 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 218 | ◎499.998940000 -00:01:28 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 -00:01:29 | Processed Slot: 216 | Confirmed Slot: 216 | Finalized Slot: 184 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 219 | ◎499.998935000 -00:01:29 | Processed Slot: 217 | Confirmed Slot: 217 | Finalized Slot: 185 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 220 | ◎499.998930000 -00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 -00:01:29 | Processed Slot: 218 | Confirmed Slot: 218 | Finalized Slot: 186 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 221 | ◎499.998925000 -00:01:30 | Processed Slot: 219 | Confirmed Slot: 219 | Finalized Slot: 187 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 222 | ◎499.998920000 -00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 -00:01:30 | Processed Slot: 220 | Confirmed Slot: 220 | Finalized Slot: 188 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 223 | ◎499.998915000 -00:01:30 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 -00:01:31 | Processed Slot: 221 | Confirmed Slot: 221 | Finalized Slot: 189 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 224 | ◎499.998910000 -00:01:31 | Processed Slot: 222 | Confirmed Slot: 222 | Finalized Slot: 190 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 225 | ◎499.998905000 -00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 -00:01:31 | Processed Slot: 223 | Confirmed Slot: 223 | Finalized Slot: 191 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 226 | ◎499.998900000 -00:01:32 | Processed Slot: 224 | Confirmed Slot: 224 | Finalized Slot: 192 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 227 | ◎499.998895000 -00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 -00:01:32 | Processed Slot: 225 | Confirmed Slot: 225 | Finalized Slot: 193 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 228 | ◎499.998890000 -00:01:32 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 -00:01:33 | Processed Slot: 226 | Confirmed Slot: 226 | Finalized Slot: 194 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 229 | ◎499.998885000 -00:01:33 | Processed Slot: 227 | Confirmed Slot: 227 | Finalized Slot: 195 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 230 | ◎499.998880000 -00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 -00:01:33 | Processed Slot: 228 | Confirmed Slot: 228 | Finalized Slot: 196 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 231 | ◎499.998875000 -00:01:34 | Processed Slot: 229 | Confirmed Slot: 229 | Finalized Slot: 197 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 232 | ◎499.998870000 -00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 -00:01:34 | Processed Slot: 230 | Confirmed Slot: 230 | Finalized Slot: 198 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 233 | ◎499.998865000 -00:01:34 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 -00:01:35 | Processed Slot: 231 | Confirmed Slot: 231 | Finalized Slot: 199 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 234 | ◎499.998860000 -00:01:35 | Processed Slot: 232 | Confirmed Slot: 232 | Finalized Slot: 200 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 235 | ◎499.998855000 -00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 -00:01:35 | Processed Slot: 233 | Confirmed Slot: 233 | Finalized Slot: 201 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 236 | ◎499.998850000 -00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 -00:01:36 | Processed Slot: 234 | Confirmed Slot: 234 | Finalized Slot: 202 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 237 | ◎499.998845000 -00:01:36 | Processed Slot: 235 | Confirmed Slot: 235 | Finalized Slot: 203 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 238 | ◎499.998840000 -00:01:36 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 -00:01:37 | Processed Slot: 236 | Confirmed Slot: 236 | Finalized Slot: 204 | Full Snapshot Slot: 100 | Incremental Snapshot Slot: - | Transactions: 239 | ◎499.998835000 -00:01:37 | Processed Slot: 237 | Confirmed Slot: 237 | Finalized Slot: 205 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 243 | ◎499.998845000 -00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998840000 -00:01:37 | Processed Slot: 238 | Confirmed Slot: 238 | Finalized Slot: 206 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 244 | ◎499.998840000 -00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998835000 -00:01:38 | Processed Slot: 239 | Confirmed Slot: 239 | Finalized Slot: 207 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 245 | ◎499.998835000 -00:01:38 | Processed Slot: 240 | Confirmed Slot: 240 | Finalized Slot: 208 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 246 | ◎499.998830000 -00:01:38 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998825000 -00:01:39 | Processed Slot: 241 | Confirmed Slot: 241 | Finalized Slot: 209 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 247 | ◎499.998825000 -00:01:39 | Processed Slot: 242 | Confirmed Slot: 242 | Finalized Slot: 210 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 248 | ◎499.998820000 -00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998815000 -00:01:39 | Processed Slot: 243 | Confirmed Slot: 243 | Finalized Slot: 211 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 249 | ◎499.998815000 -00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998810000 -00:01:40 | Processed Slot: 244 | Confirmed Slot: 244 | Finalized Slot: 212 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 250 | ◎499.998810000 -00:01:40 | Processed Slot: 245 | Confirmed Slot: 245 | Finalized Slot: 213 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 251 | ◎499.998805000 -00:01:40 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998800000 -00:01:41 | Processed Slot: 246 | Confirmed Slot: 246 | Finalized Slot: 214 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 252 | ◎499.998800000 -00:01:41 | Processed Slot: 247 | Confirmed Slot: 247 | Finalized Slot: 215 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 253 | ◎499.998795000 -00:01:41 | Processed Slot: 248 | Confirmed Slot: 247 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998790000 -00:01:41 | Processed Slot: 248 | Confirmed Slot: 248 | Finalized Slot: 216 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 254 | ◎499.998790000 -00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998785000 -00:01:42 | Processed Slot: 249 | Confirmed Slot: 249 | Finalized Slot: 217 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 255 | ◎499.998785000 -00:01:42 | Processed Slot: 250 | Confirmed Slot: 250 | Finalized Slot: 218 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 256 | ◎499.998780000 -00:01:42 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998775000 -00:01:43 | Processed Slot: 251 | Confirmed Slot: 251 | Finalized Slot: 219 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 257 | ◎499.998775000 -00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998770000 -00:01:43 | Processed Slot: 252 | Confirmed Slot: 252 | Finalized Slot: 220 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 258 | ◎499.998770000 -00:01:43 | Processed Slot: 253 | Confirmed Slot: 253 | Finalized Slot: 221 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 259 | ◎499.998765000 -00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998760000 -00:01:44 | Processed Slot: 254 | Confirmed Slot: 254 | Finalized Slot: 222 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 260 | ◎499.998760000 -00:01:44 | Processed Slot: 255 | Confirmed Slot: 255 | Finalized Slot: 223 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 261 | ◎499.998755000 -00:01:44 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998750000 -00:01:45 | Processed Slot: 256 | Confirmed Slot: 256 | Finalized Slot: 224 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 262 | ◎499.998750000 -00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998745000 -00:01:45 | Processed Slot: 257 | Confirmed Slot: 257 | Finalized Slot: 225 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 263 | ◎499.998745000 -00:01:45 | Processed Slot: 258 | Confirmed Slot: 258 | Finalized Slot: 226 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 264 | ◎499.998740000 -00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998735000 -00:01:46 | Processed Slot: 259 | Confirmed Slot: 259 | Finalized Slot: 227 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 265 | ◎499.998735000 -00:01:46 | Processed Slot: 260 | Confirmed Slot: 260 | Finalized Slot: 228 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 266 | ◎499.998730000 -00:01:46 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998725000 -00:01:47 | Processed Slot: 261 | Confirmed Slot: 261 | Finalized Slot: 229 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 267 | ◎499.998725000 -00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998720000 -00:01:47 | Processed Slot: 262 | Confirmed Slot: 262 | Finalized Slot: 230 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 268 | ◎499.998720000 -00:01:47 | Processed Slot: 263 | Confirmed Slot: 263 | Finalized Slot: 231 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 269 | ◎499.998715000 -00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998710000 -00:01:48 | Processed Slot: 264 | Confirmed Slot: 264 | Finalized Slot: 232 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 270 | ◎499.998710000 -00:01:48 | Processed Slot: 265 | Confirmed Slot: 265 | Finalized Slot: 233 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 271 | ◎499.998705000 -00:01:48 | Processed Slot: 266 | Confirmed Slot: 265 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998705000 -00:01:49 | Processed Slot: 266 | Confirmed Slot: 266 | Finalized Slot: 234 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 272 | ◎499.998700000 -00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998695000 -00:01:49 | Processed Slot: 267 | Confirmed Slot: 267 | Finalized Slot: 235 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 273 | ◎499.998695000 -00:01:49 | Processed Slot: 268 | Confirmed Slot: 268 | Finalized Slot: 236 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 274 | ◎499.998690000 -00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998685000 -00:01:50 | Processed Slot: 269 | Confirmed Slot: 269 | Finalized Slot: 237 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 275 | ◎499.998685000 -00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998845000 -00:01:50 | Processed Slot: 270 | Confirmed Slot: 270 | Finalized Slot: 238 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 309 | ◎499.998845000 -00:01:51 | Processed Slot: 271 | Confirmed Slot: 271 | Finalized Slot: 239 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 344 | ◎499.999010000 -00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.999225000 -00:01:51 | Processed Slot: 272 | Confirmed Slot: 272 | Finalized Slot: 240 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 389 | ◎499.999225000 -00:01:51 | Processed Slot: 273 | Confirmed Slot: 273 | Finalized Slot: 241 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 433 | ◎499.999435000 -00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.999615000 -00:01:52 | Processed Slot: 274 | Confirmed Slot: 274 | Finalized Slot: 242 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 471 | ◎499.999615000 -00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.999790000 -00:01:52 | Processed Slot: 275 | Confirmed Slot: 275 | Finalized Slot: 243 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 508 | ◎499.999790000 -00:01:53 | Processed Slot: 276 | Confirmed Slot: 276 | Finalized Slot: 244 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 545 | ◎499.999965000 -00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 577 | ◎500.000115000 -00:01:53 | Processed Slot: 277 | Confirmed Slot: 277 | Finalized Slot: 245 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 577 | ◎500.000115000 -00:01:53 | Processed Slot: 278 | Confirmed Slot: 278 | Finalized Slot: 246 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 606 | ◎500.000250000 -00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 633 | ◎500.000375000 -00:01:54 | Processed Slot: 279 | Confirmed Slot: 279 | Finalized Slot: 247 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 633 | ◎500.000375000 -00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 665 | ◎500.000525000 -00:01:54 | Processed Slot: 280 | Confirmed Slot: 280 | Finalized Slot: 248 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 665 | ◎500.000525000 -00:01:55 | Processed Slot: 281 | Confirmed Slot: 281 | Finalized Slot: 249 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 701 | ◎500.000695000 -00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 734 | ◎500.000850000 -00:01:55 | Processed Slot: 282 | Confirmed Slot: 282 | Finalized Slot: 250 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 734 | ◎500.000850000 -00:01:55 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 764 | ◎500.000990000 -00:01:56 | Processed Slot: 283 | Confirmed Slot: 283 | Finalized Slot: 251 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 764 | ◎500.000990000 -00:01:56 | Processed Slot: 284 | Confirmed Slot: 284 | Finalized Slot: 252 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 783 | ◎500.001075000 -00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 784 | ◎500.001070000 -00:01:56 | Processed Slot: 285 | Confirmed Slot: 285 | Finalized Slot: 253 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 784 | ◎500.001070000 -00:01:57 | Processed Slot: 286 | Confirmed Slot: 286 | Finalized Slot: 254 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 790 | ◎500.001090000 -00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 801 | ◎500.001135000 -00:01:57 | Processed Slot: 287 | Confirmed Slot: 287 | Finalized Slot: 255 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 801 | ◎500.001135000 -00:01:57 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 805 | ◎500.001145000 -00:01:58 | Processed Slot: 288 | Confirmed Slot: 288 | Finalized Slot: 256 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 805 | ◎500.001145000 -00:01:58 | Processed Slot: 289 | Confirmed Slot: 289 | Finalized Slot: 257 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 813 | ◎500.001175000 -00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 823 | ◎500.001215000 -00:01:58 | Processed Slot: 290 | Confirmed Slot: 290 | Finalized Slot: 258 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 823 | ◎500.001215000 -00:01:59 | Processed Slot: 291 | Confirmed Slot: 291 | Finalized Slot: 259 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 830 | ◎500.001240000 -00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 831 | ◎500.001235000 -00:01:59 | Processed Slot: 292 | Confirmed Slot: 292 | Finalized Slot: 260 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 831 | ◎500.001235000 -00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 832 | ◎500.001230000 -00:02:00 | Processed Slot: 293 | Confirmed Slot: 293 | Finalized Slot: 261 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 832 | ◎500.001230000 -00:02:00 | Processed Slot: 294 | Confirmed Slot: 294 | Finalized Slot: 262 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 834 | ◎500.001230000 -00:02:00 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 842 | ◎500.001260000 -00:02:01 | Processed Slot: 295 | Confirmed Slot: 295 | Finalized Slot: 263 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 842 | ◎500.001260000 -00:02:01 | Processed Slot: 296 | Confirmed Slot: 296 | Finalized Slot: 264 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 850 | ◎500.001290000 -00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 855 | ◎500.001305000 -00:02:01 | Processed Slot: 297 | Confirmed Slot: 297 | Finalized Slot: 265 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 855 | ◎500.001305000 -00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 865 | ◎500.001345000 -00:02:02 | Processed Slot: 298 | Confirmed Slot: 298 | Finalized Slot: 266 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 865 | ◎500.001345000 -00:02:02 | Processed Slot: 299 | Confirmed Slot: 299 | Finalized Slot: 267 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 872 | ◎500.001370000 -00:02:02 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 884 | ◎500.001420000 -00:02:03 | Processed Slot: 300 | Confirmed Slot: 300 | Finalized Slot: 268 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 884 | ◎500.001420000 -00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 886 | ◎500.001420000 -00:02:03 | Processed Slot: 301 | Confirmed Slot: 301 | Finalized Slot: 269 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 886 | ◎500.001420000 -00:02:03 | Processed Slot: 302 | Confirmed Slot: 302 | Finalized Slot: 270 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 901 | ◎500.001485000 -00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 921 | ◎500.001575000 -00:02:04 | Processed Slot: 303 | Confirmed Slot: 303 | Finalized Slot: 271 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 921 | ◎500.001575000 -00:02:04 | Processed Slot: 304 | Confirmed Slot: 304 | Finalized Slot: 272 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 939 | ◎500.001655000 -00:02:04 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 952 | ◎500.001710000 -00:02:05 | Processed Slot: 305 | Confirmed Slot: 305 | Finalized Slot: 273 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 952 | ◎500.001710000 -00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 961 | ◎500.001745000 -00:02:05 | Processed Slot: 306 | Confirmed Slot: 306 | Finalized Slot: 274 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 961 | ◎500.001745000 -00:02:05 | Processed Slot: 307 | Confirmed Slot: 307 | Finalized Slot: 275 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 975 | ◎500.001805000 -00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 984 | ◎500.001840000 -00:02:06 | Processed Slot: 308 | Confirmed Slot: 308 | Finalized Slot: 276 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 984 | ◎500.001840000 -00:02:06 | Processed Slot: 309 | Confirmed Slot: 309 | Finalized Slot: 277 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 986 | ◎500.001840000 -00:02:06 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 987 | ◎500.001835000 -00:02:07 | Processed Slot: 310 | Confirmed Slot: 310 | Finalized Slot: 278 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 987 | ◎500.001835000 -00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 988 | ◎500.001830000 -00:02:07 | Processed Slot: 311 | Confirmed Slot: 311 | Finalized Slot: 279 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 988 | ◎500.001830000 -00:02:07 | Processed Slot: 312 | Confirmed Slot: 312 | Finalized Slot: 280 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 989 | ◎500.001825000 -00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 990 | ◎500.001820000 -00:02:08 | Processed Slot: 313 | Confirmed Slot: 313 | Finalized Slot: 281 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 990 | ◎500.001820000 -00:02:08 | Processed Slot: 314 | Confirmed Slot: 314 | Finalized Slot: 282 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 991 | ◎500.001815000 -00:02:08 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 992 | ◎500.001810000 -00:02:09 | Processed Slot: 315 | Confirmed Slot: 315 | Finalized Slot: 283 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 992 | ◎500.001810000 -00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 993 | ◎500.001805000 -00:02:09 | Processed Slot: 316 | Confirmed Slot: 316 | Finalized Slot: 284 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 993 | ◎500.001805000 -00:02:09 | Processed Slot: 317 | Confirmed Slot: 317 | Finalized Slot: 285 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 996 | ◎500.001810000 -00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎500.001835000 -00:02:10 | Processed Slot: 318 | Confirmed Slot: 318 | Finalized Slot: 286 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1003 | ◎500.001835000 -00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎500.001885000 -00:02:10 | Processed Slot: 319 | Confirmed Slot: 319 | Finalized Slot: 287 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1015 | ◎500.001885000 -00:02:11 | Processed Slot: 320 | Confirmed Slot: 320 | Finalized Slot: 288 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1032 | ◎500.001960000 -00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎500.002040000 -00:02:11 | Processed Slot: 321 | Confirmed Slot: 321 | Finalized Slot: 289 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1050 | ◎500.002040000 -00:02:11 | Processed Slot: 322 | Confirmed Slot: 322 | Finalized Slot: 290 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1055 | ◎500.002055000 -00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎500.002050000 -00:02:12 | Processed Slot: 323 | Confirmed Slot: 323 | Finalized Slot: 291 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1056 | ◎500.002050000 -00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎500.002045000 -00:02:12 | Processed Slot: 324 | Confirmed Slot: 324 | Finalized Slot: 292 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1057 | ◎500.002045000 -00:02:13 | Processed Slot: 325 | Confirmed Slot: 325 | Finalized Slot: 293 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1058 | ◎500.002040000 -00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎500.002035000 -00:02:13 | Processed Slot: 326 | Confirmed Slot: 326 | Finalized Slot: 294 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1059 | ◎500.002035000 -00:02:13 | Processed Slot: 327 | Confirmed Slot: 327 | Finalized Slot: 295 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1060 | ◎500.002030000 -00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎500.002025000 -00:02:14 | Processed Slot: 328 | Confirmed Slot: 328 | Finalized Slot: 296 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1061 | ◎500.002025000 -00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎500.002020000 -00:02:14 | Processed Slot: 329 | Confirmed Slot: 329 | Finalized Slot: 297 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1062 | ◎500.002020000 -00:02:15 | Processed Slot: 330 | Confirmed Slot: 330 | Finalized Slot: 298 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1063 | ◎500.002015000 -00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎500.002010000 -00:02:15 | Processed Slot: 331 | Confirmed Slot: 331 | Finalized Slot: 299 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1064 | ◎500.002010000 -00:02:15 | Processed Slot: 332 | Confirmed Slot: 332 | Finalized Slot: 300 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1069 | ◎500.002025000 -00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎500.002040000 -00:02:16 | Processed Slot: 333 | Confirmed Slot: 333 | Finalized Slot: 301 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1074 | ◎500.002040000 -00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎500.002055000 -00:02:16 | Processed Slot: 334 | Confirmed Slot: 334 | Finalized Slot: 302 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1079 | ◎500.002055000 -00:02:17 | Processed Slot: 335 | Confirmed Slot: 335 | Finalized Slot: 303 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1081 | ◎500.002055000 -00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 200 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎500.002050000 -00:02:17 | Processed Slot: 336 | Confirmed Slot: 336 | Finalized Slot: 304 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1082 | ◎500.002050000 -00:02:17 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎500.002045000 -00:02:18 | Processed Slot: 337 | Confirmed Slot: 337 | Finalized Slot: 305 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1083 | ◎500.002045000 -00:02:18 | Processed Slot: 338 | Confirmed Slot: 338 | Finalized Slot: 306 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1084 | ◎500.002040000 -00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎500.002035000 -00:02:18 | Processed Slot: 339 | Confirmed Slot: 339 | Finalized Slot: 307 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1085 | ◎500.002035000 -00:02:19 | Processed Slot: 340 | Confirmed Slot: 340 | Finalized Slot: 308 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1086 | ◎500.002030000 -00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎500.002025000 -00:02:19 | Processed Slot: 341 | Confirmed Slot: 341 | Finalized Slot: 309 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1087 | ◎500.002025000 -00:02:19 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎500.002020000 -00:02:20 | Processed Slot: 342 | Confirmed Slot: 342 | Finalized Slot: 310 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1088 | ◎500.002020000 -00:02:20 | Processed Slot: 343 | Confirmed Slot: 343 | Finalized Slot: 311 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1089 | ◎500.002015000 -00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎500.002010000 -00:02:20 | Processed Slot: 344 | Confirmed Slot: 344 | Finalized Slot: 312 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1090 | ◎500.002010000 -00:02:21 | Processed Slot: 345 | Confirmed Slot: 345 | Finalized Slot: 313 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1099 | ◎500.002045000 -00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎500.002080000 -00:02:21 | Processed Slot: 346 | Confirmed Slot: 346 | Finalized Slot: 314 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1108 | ◎500.002080000 -00:02:21 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎500.002100000 -00:02:22 | Processed Slot: 347 | Confirmed Slot: 347 | Finalized Slot: 315 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1114 | ◎500.002100000 -00:02:22 | Processed Slot: 348 | Confirmed Slot: 348 | Finalized Slot: 316 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1115 | ◎500.002095000 -00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎500.002090000 -00:02:22 | Processed Slot: 349 | Confirmed Slot: 349 | Finalized Slot: 317 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1116 | ◎500.002090000 -00:02:23 | Processed Slot: 350 | Confirmed Slot: 350 | Finalized Slot: 318 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1117 | ◎500.002085000 -00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎500.002080000 -00:02:23 | Processed Slot: 351 | Confirmed Slot: 351 | Finalized Slot: 319 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1118 | ◎500.002080000 -00:02:23 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎500.002075000 -00:02:24 | Processed Slot: 352 | Confirmed Slot: 352 | Finalized Slot: 320 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1119 | ◎500.002075000 -00:02:24 | Processed Slot: 353 | Confirmed Slot: 353 | Finalized Slot: 321 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1120 | ◎500.002070000 -00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎500.002065000 -00:02:24 | Processed Slot: 354 | Confirmed Slot: 354 | Finalized Slot: 322 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1121 | ◎500.002065000 -00:02:25 | Processed Slot: 355 | Confirmed Slot: 355 | Finalized Slot: 323 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1122 | ◎500.002060000 -00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎500.002065000 -00:02:25 | Processed Slot: 356 | Confirmed Slot: 356 | Finalized Slot: 324 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1125 | ◎500.002065000 -00:02:25 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎500.002075000 -00:02:26 | Processed Slot: 357 | Confirmed Slot: 357 | Finalized Slot: 325 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1129 | ◎500.002075000 -00:02:26 | Processed Slot: 358 | Confirmed Slot: 358 | Finalized Slot: 326 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1134 | ◎500.002090000 -00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎500.002095000 -00:02:26 | Processed Slot: 359 | Confirmed Slot: 359 | Finalized Slot: 327 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1137 | ◎500.002095000 -00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎500.002090000 -00:02:27 | Processed Slot: 360 | Confirmed Slot: 360 | Finalized Slot: 328 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1138 | ◎500.002090000 -00:02:27 | Processed Slot: 361 | Confirmed Slot: 361 | Finalized Slot: 329 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1139 | ◎500.002085000 -00:02:27 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎500.002080000 -00:02:28 | Processed Slot: 362 | Confirmed Slot: 362 | Finalized Slot: 330 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1140 | ◎500.002080000 -00:02:28 | Processed Slot: 363 | Confirmed Slot: 363 | Finalized Slot: 331 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1141 | ◎500.002075000 -00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎500.002070000 -00:02:28 | Processed Slot: 364 | Confirmed Slot: 364 | Finalized Slot: 332 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1142 | ◎500.002070000 -00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎500.002065000 -00:02:29 | Processed Slot: 365 | Confirmed Slot: 365 | Finalized Slot: 333 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1143 | ◎500.002065000 -00:02:29 | Processed Slot: 366 | Confirmed Slot: 366 | Finalized Slot: 334 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1144 | ◎500.002060000 -00:02:29 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎500.002055000 -00:02:30 | Processed Slot: 367 | Confirmed Slot: 367 | Finalized Slot: 335 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1145 | ◎500.002055000 -00:02:30 | Processed Slot: 368 | Confirmed Slot: 368 | Finalized Slot: 336 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1146 | ◎500.002050000 -00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎500.002065000 -00:02:30 | Processed Slot: 369 | Confirmed Slot: 369 | Finalized Slot: 337 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1151 | ◎500.002065000 -00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎500.002075000 -00:02:31 | Processed Slot: 370 | Confirmed Slot: 370 | Finalized Slot: 338 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1155 | ◎500.002075000 -00:02:31 | Processed Slot: 371 | Confirmed Slot: 371 | Finalized Slot: 339 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1156 | ◎500.002070000 -00:02:31 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎500.002065000 -00:02:32 | Processed Slot: 372 | Confirmed Slot: 372 | Finalized Slot: 340 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1157 | ◎500.002065000 -00:02:32 | Processed Slot: 373 | Confirmed Slot: 373 | Finalized Slot: 341 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1158 | ◎500.002060000 -00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎500.002055000 -00:02:32 | Processed Slot: 374 | Confirmed Slot: 374 | Finalized Slot: 342 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1159 | ◎500.002055000 -00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎500.002050000 -00:02:33 | Processed Slot: 375 | Confirmed Slot: 375 | Finalized Slot: 343 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1160 | ◎500.002050000 -00:02:33 | Processed Slot: 376 | Confirmed Slot: 376 | Finalized Slot: 344 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1161 | ◎500.002045000 -00:02:33 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎500.002040000 -00:02:34 | Processed Slot: 377 | Confirmed Slot: 377 | Finalized Slot: 345 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1162 | ◎500.002040000 -00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎500.002035000 -00:02:34 | Processed Slot: 378 | Confirmed Slot: 378 | Finalized Slot: 346 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1163 | ◎500.002035000 -00:02:34 | Processed Slot: 379 | Confirmed Slot: 379 | Finalized Slot: 347 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1164 | ◎500.002030000 -00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎500.002040000 -00:02:35 | Processed Slot: 380 | Confirmed Slot: 380 | Finalized Slot: 348 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1168 | ◎500.002040000 -00:02:35 | Processed Slot: 381 | Confirmed Slot: 381 | Finalized Slot: 349 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1175 | ◎500.002065000 -00:02:35 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎500.002060000 -00:02:36 | Processed Slot: 382 | Confirmed Slot: 382 | Finalized Slot: 350 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1176 | ◎500.002060000 -00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎500.002055000 -00:02:36 | Processed Slot: 383 | Confirmed Slot: 383 | Finalized Slot: 351 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1177 | ◎500.002055000 -00:02:36 | Processed Slot: 384 | Confirmed Slot: 384 | Finalized Slot: 352 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1178 | ◎500.002050000 -00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎500.002045000 -00:02:37 | Processed Slot: 385 | Confirmed Slot: 385 | Finalized Slot: 353 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1179 | ◎500.002045000 -00:02:37 | Processed Slot: 386 | Confirmed Slot: 386 | Finalized Slot: 354 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1180 | ◎500.002040000 -00:02:37 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎500.002035000 -00:02:38 | Processed Slot: 387 | Confirmed Slot: 387 | Finalized Slot: 355 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1181 | ◎500.002035000 -00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎500.002030000 -00:02:38 | Processed Slot: 388 | Confirmed Slot: 388 | Finalized Slot: 356 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1182 | ◎500.002030000 -00:02:38 | Processed Slot: 389 | Confirmed Slot: 389 | Finalized Slot: 357 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1183 | ◎500.002025000 -00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎500.002020000 -00:02:39 | Processed Slot: 390 | Confirmed Slot: 390 | Finalized Slot: 358 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1184 | ◎500.002020000 -00:02:39 | Processed Slot: 391 | Confirmed Slot: 391 | Finalized Slot: 359 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1186 | ◎500.002020000 -00:02:39 | Processed Slot: 392 | Confirmed Slot: 391 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎500.002015000 -00:02:40 | Processed Slot: 392 | Confirmed Slot: 392 | Finalized Slot: 360 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1187 | ◎500.002015000 -00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎500.002010000 -00:02:40 | Processed Slot: 393 | Confirmed Slot: 393 | Finalized Slot: 361 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1188 | ◎500.002010000 -00:02:40 | Processed Slot: 394 | Confirmed Slot: 394 | Finalized Slot: 362 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1189 | ◎500.002005000 -00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎500.002000000 -00:02:41 | Processed Slot: 395 | Confirmed Slot: 395 | Finalized Slot: 363 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1190 | ◎500.002000000 -00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎500.001995000 -00:02:41 | Processed Slot: 396 | Confirmed Slot: 396 | Finalized Slot: 364 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1191 | ◎500.001995000 -00:02:42 | Processed Slot: 397 | Confirmed Slot: 397 | Finalized Slot: 365 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1192 | ◎500.001990000 -00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎500.001985000 -00:02:42 | Processed Slot: 398 | Confirmed Slot: 398 | Finalized Slot: 366 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1193 | ◎500.001985000 -00:02:42 | Processed Slot: 399 | Confirmed Slot: 399 | Finalized Slot: 367 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1194 | ◎500.001980000 -00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎500.001975000 -00:02:43 | Processed Slot: 400 | Confirmed Slot: 400 | Finalized Slot: 368 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1195 | ◎500.001975000 -00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎500.001970000 -00:02:43 | Processed Slot: 401 | Confirmed Slot: 401 | Finalized Slot: 369 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1196 | ◎500.001970000 -00:02:44 | Processed Slot: 402 | Confirmed Slot: 402 | Finalized Slot: 370 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1197 | ◎500.001965000 -00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎500.001960000 -00:02:44 | Processed Slot: 403 | Confirmed Slot: 403 | Finalized Slot: 371 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1198 | ◎500.001960000 -00:02:44 | Processed Slot: 404 | Confirmed Slot: 404 | Finalized Slot: 372 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1199 | ◎500.001955000 -00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎500.001950000 -00:02:45 | Processed Slot: 405 | Confirmed Slot: 405 | Finalized Slot: 373 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1200 | ◎500.001950000 -00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎500.001945000 -00:02:45 | Processed Slot: 406 | Confirmed Slot: 406 | Finalized Slot: 374 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1201 | ◎500.001945000 -00:02:46 | Processed Slot: 407 | Confirmed Slot: 407 | Finalized Slot: 375 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1202 | ◎500.001940000 -00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎500.001935000 -00:02:46 | Processed Slot: 408 | Confirmed Slot: 408 | Finalized Slot: 376 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1203 | ◎500.001935000 -00:02:46 | Processed Slot: 409 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1204 | ◎500.001930000 -00:02:47 | Processed Slot: 410 | Confirmed Slot: 409 | Finalized Slot: 377 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎500.001930000 -00:02:47 | Processed Slot: 410 | Confirmed Slot: 410 | Finalized Slot: 378 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1205 | ◎500.001925000 -00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎500.001920000 -00:02:47 | Processed Slot: 411 | Confirmed Slot: 411 | Finalized Slot: 379 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1206 | ◎500.001920000 -00:02:48 | Processed Slot: 412 | Confirmed Slot: 412 | Finalized Slot: 380 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1207 | ◎500.001915000 -00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎500.001910000 -00:02:48 | Processed Slot: 413 | Confirmed Slot: 413 | Finalized Slot: 381 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1208 | ◎500.001910000 -00:02:48 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎500.001905000 -00:02:49 | Processed Slot: 414 | Confirmed Slot: 414 | Finalized Slot: 382 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1209 | ◎500.001905000 -00:02:49 | Processed Slot: 415 | Confirmed Slot: 415 | Finalized Slot: 383 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1210 | ◎500.001900000 -00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎500.001895000 -00:02:49 | Processed Slot: 416 | Confirmed Slot: 416 | Finalized Slot: 384 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1211 | ◎500.001895000 -00:02:50 | Processed Slot: 417 | Confirmed Slot: 417 | Finalized Slot: 385 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1212 | ◎500.001890000 -00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎500.001885000 -00:02:50 | Processed Slot: 418 | Confirmed Slot: 418 | Finalized Slot: 386 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1213 | ◎500.001885000 -00:02:50 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎500.001880000 -00:02:51 | Processed Slot: 419 | Confirmed Slot: 419 | Finalized Slot: 387 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1214 | ◎500.001880000 -00:02:51 | Processed Slot: 420 | Confirmed Slot: 420 | Finalized Slot: 388 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1215 | ◎500.001875000 -00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎500.001870000 -00:02:51 | Processed Slot: 421 | Confirmed Slot: 421 | Finalized Slot: 389 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1216 | ◎500.001870000 -00:02:52 | Processed Slot: 422 | Confirmed Slot: 422 | Finalized Slot: 390 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1217 | ◎500.001865000 -00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎500.001860000 -00:02:52 | Processed Slot: 423 | Confirmed Slot: 423 | Finalized Slot: 391 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1218 | ◎500.001860000 -00:02:52 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎500.001855000 -00:02:53 | Processed Slot: 424 | Confirmed Slot: 424 | Finalized Slot: 392 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1219 | ◎500.001855000 -00:02:53 | Processed Slot: 425 | Confirmed Slot: 425 | Finalized Slot: 393 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1220 | ◎500.001850000 -00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎500.001845000 -00:02:53 | Processed Slot: 426 | Confirmed Slot: 426 | Finalized Slot: 394 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1221 | ◎500.001845000 -00:02:54 | Processed Slot: 427 | Confirmed Slot: 427 | Finalized Slot: 395 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1222 | ◎500.001840000 -00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎500.001835000 -00:02:54 | Processed Slot: 428 | Confirmed Slot: 428 | Finalized Slot: 396 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1223 | ◎500.001835000 -00:02:54 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎500.001830000 -00:02:55 | Processed Slot: 429 | Confirmed Slot: 429 | Finalized Slot: 397 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1224 | ◎500.001830000 -00:02:55 | Processed Slot: 430 | Confirmed Slot: 430 | Finalized Slot: 398 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1225 | ◎500.001825000 -00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎500.001820000 -00:02:55 | Processed Slot: 431 | Confirmed Slot: 431 | Finalized Slot: 399 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1226 | ◎500.001820000 -00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎500.001815000 -00:02:56 | Processed Slot: 432 | Confirmed Slot: 432 | Finalized Slot: 400 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1227 | ◎500.001815000 -00:02:56 | Processed Slot: 433 | Confirmed Slot: 433 | Finalized Slot: 401 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1228 | ◎500.001810000 -00:02:56 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎500.001805000 -00:02:57 | Processed Slot: 434 | Confirmed Slot: 434 | Finalized Slot: 402 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1229 | ◎500.001805000 -00:02:57 | Processed Slot: 435 | Confirmed Slot: 435 | Finalized Slot: 403 | Full Snapshot Slot: 300 | Incremental Snapshot Slot: - | Transactions: 1230 | ◎500.001800000 -00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎500.001795000 -00:02:57 | Processed Slot: 436 | Confirmed Slot: 436 | Finalized Slot: 404 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1231 | ◎500.001795000 -00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎500.001790000 -00:02:58 | Processed Slot: 437 | Confirmed Slot: 437 | Finalized Slot: 405 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1232 | ◎500.001790000 -00:02:58 | Processed Slot: 438 | Confirmed Slot: 438 | Finalized Slot: 406 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1233 | ◎500.001785000 -00:02:58 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎500.001780000 -00:02:59 | Processed Slot: 439 | Confirmed Slot: 439 | Finalized Slot: 407 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1234 | ◎500.001780000 -00:02:59 | Processed Slot: 440 | Confirmed Slot: 440 | Finalized Slot: 408 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1235 | ◎500.001775000 -00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎500.001770000 -00:02:59 | Processed Slot: 441 | Confirmed Slot: 441 | Finalized Slot: 409 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1236 | ◎500.001770000 -00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎500.001765000 -00:03:00 | Processed Slot: 442 | Confirmed Slot: 442 | Finalized Slot: 410 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1237 | ◎500.001765000 -00:03:00 | Processed Slot: 443 | Confirmed Slot: 443 | Finalized Slot: 411 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1238 | ◎500.001760000 -00:03:00 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎500.001755000 -00:03:01 | Processed Slot: 444 | Confirmed Slot: 444 | Finalized Slot: 412 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1239 | ◎500.001755000 -00:03:01 | Processed Slot: 445 | Confirmed Slot: 445 | Finalized Slot: 413 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1240 | ◎500.001750000 -00:03:01 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎500.001745000 -00:03:02 | Processed Slot: 446 | Confirmed Slot: 446 | Finalized Slot: 414 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1241 | ◎500.001745000 -00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎500.001740000 -00:03:02 | Processed Slot: 447 | Confirmed Slot: 447 | Finalized Slot: 415 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1242 | ◎500.001740000 -00:03:02 | Processed Slot: 448 | Confirmed Slot: 448 | Finalized Slot: 416 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1243 | ◎500.001735000 -00:03:03 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎500.001730000 -00:03:03 | Processed Slot: 449 | Confirmed Slot: 449 | Finalized Slot: 417 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1244 | ◎500.001730000 -00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎500.001725000 -00:03:03 | Processed Slot: 450 | Confirmed Slot: 450 | Finalized Slot: 418 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1245 | ◎500.001725000 -00:03:04 | Processed Slot: 451 | Confirmed Slot: 451 | Finalized Slot: 419 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1246 | ◎500.001720000 -00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎500.001715000 -00:03:04 | Processed Slot: 452 | Confirmed Slot: 452 | Finalized Slot: 420 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1247 | ◎500.001715000 -00:03:04 | Processed Slot: 453 | Confirmed Slot: 453 | Finalized Slot: 421 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1248 | ◎500.001710000 -00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎500.001705000 -00:03:05 | Processed Slot: 454 | Confirmed Slot: 454 | Finalized Slot: 422 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1249 | ◎500.001705000 -00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎500.001700000 -00:03:05 | Processed Slot: 455 | Confirmed Slot: 455 | Finalized Slot: 423 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1250 | ◎500.001700000 -00:03:06 | Processed Slot: 456 | Confirmed Slot: 456 | Finalized Slot: 424 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1251 | ◎500.001695000 -00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎500.001690000 -00:03:06 | Processed Slot: 457 | Confirmed Slot: 457 | Finalized Slot: 425 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1252 | ◎500.001690000 -00:03:06 | Processed Slot: 458 | Confirmed Slot: 458 | Finalized Slot: 426 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1253 | ◎500.001685000 -00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎500.001680000 -00:03:07 | Processed Slot: 459 | Confirmed Slot: 459 | Finalized Slot: 427 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1254 | ◎500.001680000 -00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎500.001675000 -00:03:07 | Processed Slot: 460 | Confirmed Slot: 460 | Finalized Slot: 428 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1255 | ◎500.001675000 -00:03:08 | Processed Slot: 461 | Confirmed Slot: 461 | Finalized Slot: 429 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1256 | ◎500.001670000 -00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎500.001665000 -00:03:08 | Processed Slot: 462 | Confirmed Slot: 462 | Finalized Slot: 430 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1257 | ◎500.001665000 -00:03:08 | Processed Slot: 463 | Confirmed Slot: 463 | Finalized Slot: 431 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1258 | ◎500.001660000 -00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎500.001655000 -00:03:09 | Processed Slot: 464 | Confirmed Slot: 464 | Finalized Slot: 432 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1259 | ◎500.001655000 -00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎500.001650000 -00:03:09 | Processed Slot: 465 | Confirmed Slot: 465 | Finalized Slot: 433 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1260 | ◎500.001650000 -00:03:10 | Processed Slot: 466 | Confirmed Slot: 466 | Finalized Slot: 434 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1261 | ◎500.001645000 -00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎500.001640000 -00:03:10 | Processed Slot: 467 | Confirmed Slot: 467 | Finalized Slot: 435 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1262 | ◎500.001640000 -00:03:10 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎500.001635000 -00:03:11 | Processed Slot: 468 | Confirmed Slot: 468 | Finalized Slot: 436 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1263 | ◎500.001635000 -00:03:11 | Processed Slot: 469 | Confirmed Slot: 469 | Finalized Slot: 437 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1264 | ◎500.001630000 -00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎500.001625000 -00:03:11 | Processed Slot: 470 | Confirmed Slot: 470 | Finalized Slot: 438 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1265 | ◎500.001625000 -00:03:12 | Processed Slot: 471 | Confirmed Slot: 471 | Finalized Slot: 439 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1266 | ◎500.001620000 -00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎500.001615000 -00:03:12 | Processed Slot: 472 | Confirmed Slot: 472 | Finalized Slot: 440 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1267 | ◎500.001615000 -00:03:12 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎500.001610000 -00:03:13 | Processed Slot: 473 | Confirmed Slot: 473 | Finalized Slot: 441 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1268 | ◎500.001610000 -00:03:13 | Processed Slot: 474 | Confirmed Slot: 474 | Finalized Slot: 442 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1269 | ◎500.001605000 -00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎500.001600000 -00:03:13 | Processed Slot: 475 | Confirmed Slot: 475 | Finalized Slot: 443 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1270 | ◎500.001600000 -00:03:14 | Processed Slot: 476 | Confirmed Slot: 476 | Finalized Slot: 444 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1271 | ◎500.001595000 -00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎500.001590000 -00:03:14 | Processed Slot: 477 | Confirmed Slot: 477 | Finalized Slot: 445 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1272 | ◎500.001590000 -00:03:14 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎500.001585000 -00:03:15 | Processed Slot: 478 | Confirmed Slot: 478 | Finalized Slot: 446 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1273 | ◎500.001585000 -00:03:15 | Processed Slot: 479 | Confirmed Slot: 479 | Finalized Slot: 447 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1274 | ◎500.001580000 -00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎500.001575000 -00:03:15 | Processed Slot: 480 | Confirmed Slot: 480 | Finalized Slot: 448 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1275 | ◎500.001575000 -00:03:16 | Processed Slot: 481 | Confirmed Slot: 481 | Finalized Slot: 449 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1276 | ◎500.001570000 -00:03:16 | Processed Slot: 482 | Confirmed Slot: 481 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎500.001570000 -00:03:16 | Processed Slot: 482 | Confirmed Slot: 482 | Finalized Slot: 450 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1277 | ◎500.001565000 -00:03:16 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎500.001560000 -00:03:17 | Processed Slot: 483 | Confirmed Slot: 483 | Finalized Slot: 451 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1278 | ◎500.001560000 -00:03:17 | Processed Slot: 484 | Confirmed Slot: 484 | Finalized Slot: 452 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1279 | ◎500.001555000 -00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎500.001550000 -00:03:17 | Processed Slot: 485 | Confirmed Slot: 485 | Finalized Slot: 453 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1280 | ◎500.001550000 -00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎500.001545000 -00:03:18 | Processed Slot: 486 | Confirmed Slot: 486 | Finalized Slot: 454 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1281 | ◎500.001545000 -00:03:18 | Processed Slot: 487 | Confirmed Slot: 487 | Finalized Slot: 455 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1282 | ◎500.001540000 -00:03:18 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎500.001535000 -00:03:19 | Processed Slot: 488 | Confirmed Slot: 488 | Finalized Slot: 456 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1283 | ◎500.001535000 -00:03:19 | Processed Slot: 489 | Confirmed Slot: 489 | Finalized Slot: 457 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1284 | ◎500.001530000 -00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎500.001525000 -00:03:19 | Processed Slot: 490 | Confirmed Slot: 490 | Finalized Slot: 458 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1285 | ◎500.001525000 -00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎500.001520000 -00:03:20 | Processed Slot: 491 | Confirmed Slot: 491 | Finalized Slot: 459 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1286 | ◎500.001520000 -00:03:20 | Processed Slot: 492 | Confirmed Slot: 492 | Finalized Slot: 460 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1287 | ◎500.001515000 -00:03:20 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎500.001510000 -00:03:21 | Processed Slot: 493 | Confirmed Slot: 493 | Finalized Slot: 461 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1288 | ◎500.001510000 -00:03:21 | Processed Slot: 494 | Confirmed Slot: 494 | Finalized Slot: 462 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1289 | ◎500.001505000 -00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎500.001500000 -00:03:21 | Processed Slot: 495 | Confirmed Slot: 495 | Finalized Slot: 463 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1290 | ◎500.001500000 -00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎500.001495000 -00:03:22 | Processed Slot: 496 | Confirmed Slot: 496 | Finalized Slot: 464 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1291 | ◎500.001495000 -00:03:22 | Processed Slot: 497 | Confirmed Slot: 497 | Finalized Slot: 465 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1292 | ◎500.001490000 -00:03:22 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎500.001485000 -00:03:23 | Processed Slot: 498 | Confirmed Slot: 498 | Finalized Slot: 466 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1293 | ◎500.001485000 -00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎500.001480000 -00:03:23 | Processed Slot: 499 | Confirmed Slot: 499 | Finalized Slot: 467 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1294 | ◎500.001480000 -00:03:23 | Processed Slot: 500 | Confirmed Slot: 500 | Finalized Slot: 468 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1295 | ◎500.001475000 -00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎500.001470000 -00:03:24 | Processed Slot: 501 | Confirmed Slot: 501 | Finalized Slot: 469 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1296 | ◎500.001470000 -00:03:24 | Processed Slot: 502 | Confirmed Slot: 502 | Finalized Slot: 470 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1297 | ◎500.001465000 -00:03:24 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎500.001460000 -00:03:25 | Processed Slot: 503 | Confirmed Slot: 503 | Finalized Slot: 471 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1298 | ◎500.001460000 -00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎500.001455000 -00:03:25 | Processed Slot: 504 | Confirmed Slot: 504 | Finalized Slot: 472 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1299 | ◎500.001455000 -00:03:25 | Processed Slot: 505 | Confirmed Slot: 505 | Finalized Slot: 473 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1300 | ◎500.001450000 -00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎500.001445000 -00:03:26 | Processed Slot: 506 | Confirmed Slot: 506 | Finalized Slot: 474 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1301 | ◎500.001445000 -00:03:26 | Processed Slot: 507 | Confirmed Slot: 507 | Finalized Slot: 475 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1302 | ◎500.001440000 -00:03:26 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎500.001435000 -00:03:27 | Processed Slot: 508 | Confirmed Slot: 508 | Finalized Slot: 476 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1303 | ◎500.001435000 -00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎500.001430000 -00:03:27 | Processed Slot: 509 | Confirmed Slot: 509 | Finalized Slot: 477 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1304 | ◎500.001430000 -00:03:27 | Processed Slot: 510 | Confirmed Slot: 510 | Finalized Slot: 478 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1305 | ◎500.001425000 -00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎500.001420000 -00:03:28 | Processed Slot: 511 | Confirmed Slot: 511 | Finalized Slot: 479 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1306 | ◎500.001420000 -00:03:28 | Processed Slot: 512 | Confirmed Slot: 512 | Finalized Slot: 480 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1307 | ◎500.001415000 -00:03:28 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎500.001410000 -00:03:29 | Processed Slot: 513 | Confirmed Slot: 513 | Finalized Slot: 481 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1308 | ◎500.001410000 -00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎500.001405000 -00:03:29 | Processed Slot: 514 | Confirmed Slot: 514 | Finalized Slot: 482 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1309 | ◎500.001405000 -00:03:29 | Processed Slot: 515 | Confirmed Slot: 515 | Finalized Slot: 483 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1310 | ◎500.001400000 -00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎500.001395000 -00:03:30 | Processed Slot: 516 | Confirmed Slot: 516 | Finalized Slot: 484 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1311 | ◎500.001395000 -00:03:30 | Processed Slot: 517 | Confirmed Slot: 517 | Finalized Slot: 485 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1312 | ◎500.001390000 -00:03:30 | Processed Slot: 518 | Confirmed Slot: 517 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎500.001390000 -00:03:31 | Processed Slot: 518 | Confirmed Slot: 518 | Finalized Slot: 486 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1313 | ◎500.001385000 -00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎500.001380000 -00:03:31 | Processed Slot: 519 | Confirmed Slot: 519 | Finalized Slot: 487 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1314 | ◎500.001380000 -00:03:31 | Processed Slot: 520 | Confirmed Slot: 520 | Finalized Slot: 488 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1315 | ◎500.001375000 -00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎500.001370000 -00:03:32 | Processed Slot: 521 | Confirmed Slot: 521 | Finalized Slot: 489 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1316 | ◎500.001370000 -00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎500.001365000 -00:03:32 | Processed Slot: 522 | Confirmed Slot: 522 | Finalized Slot: 490 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1317 | ◎500.001365000 -00:03:33 | Processed Slot: 523 | Confirmed Slot: 523 | Finalized Slot: 491 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1318 | ◎500.001360000 -00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎500.001355000 -00:03:33 | Processed Slot: 524 | Confirmed Slot: 524 | Finalized Slot: 492 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1319 | ◎500.001355000 -00:03:33 | Processed Slot: 525 | Confirmed Slot: 525 | Finalized Slot: 493 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1320 | ◎500.001350000 -00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎500.001345000 -00:03:34 | Processed Slot: 526 | Confirmed Slot: 526 | Finalized Slot: 494 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1321 | ◎500.001345000 -00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎500.001340000 -00:03:34 | Processed Slot: 527 | Confirmed Slot: 527 | Finalized Slot: 495 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1322 | ◎500.001340000 -00:03:35 | Processed Slot: 528 | Confirmed Slot: 528 | Finalized Slot: 496 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1323 | ◎500.001335000 -00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎500.001330000 -00:03:35 | Processed Slot: 529 | Confirmed Slot: 529 | Finalized Slot: 497 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1324 | ◎500.001330000 -00:03:35 | Processed Slot: 530 | Confirmed Slot: 530 | Finalized Slot: 498 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1325 | ◎500.001325000 -00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎500.001320000 -00:03:36 | Processed Slot: 531 | Confirmed Slot: 531 | Finalized Slot: 499 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1326 | ◎500.001320000 -00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎500.001315000 -00:03:36 | Processed Slot: 532 | Confirmed Slot: 532 | Finalized Slot: 500 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1327 | ◎500.001315000 -00:03:37 | Processed Slot: 533 | Confirmed Slot: 533 | Finalized Slot: 501 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1328 | ◎500.001310000 -00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎500.001305000 -00:03:37 | Processed Slot: 534 | Confirmed Slot: 534 | Finalized Slot: 502 | Full Snapshot Slot: 400 | Incremental Snapshot Slot: - | Transactions: 1329 | ◎500.001305000 -00:03:37 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎500.001300000 -00:03:38 | Processed Slot: 535 | Confirmed Slot: 535 | Finalized Slot: 503 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1330 | ◎500.001300000 -00:03:38 | Processed Slot: 536 | Confirmed Slot: 536 | Finalized Slot: 504 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1331 | ◎500.001295000 -00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎500.001290000 -00:03:38 | Processed Slot: 537 | Confirmed Slot: 537 | Finalized Slot: 505 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1332 | ◎500.001290000 -00:03:39 | Processed Slot: 538 | Confirmed Slot: 538 | Finalized Slot: 506 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1333 | ◎500.001285000 -00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎500.001280000 -00:03:39 | Processed Slot: 539 | Confirmed Slot: 539 | Finalized Slot: 507 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1334 | ◎500.001280000 -00:03:39 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎500.001275000 -00:03:40 | Processed Slot: 540 | Confirmed Slot: 540 | Finalized Slot: 508 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1335 | ◎500.001275000 -00:03:40 | Processed Slot: 541 | Confirmed Slot: 541 | Finalized Slot: 509 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1336 | ◎500.001270000 -00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎500.001265000 -00:03:40 | Processed Slot: 542 | Confirmed Slot: 542 | Finalized Slot: 510 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1337 | ◎500.001265000 -00:03:41 | Processed Slot: 543 | Confirmed Slot: 543 | Finalized Slot: 511 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1338 | ◎500.001260000 -00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎500.001255000 -00:03:41 | Processed Slot: 544 | Confirmed Slot: 544 | Finalized Slot: 512 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1339 | ◎500.001255000 -00:03:41 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎500.001250000 -00:03:42 | Processed Slot: 545 | Confirmed Slot: 545 | Finalized Slot: 513 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1340 | ◎500.001250000 -00:03:42 | Processed Slot: 546 | Confirmed Slot: 546 | Finalized Slot: 514 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1341 | ◎500.001245000 -00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎500.001240000 -00:03:42 | Processed Slot: 547 | Confirmed Slot: 547 | Finalized Slot: 515 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1342 | ◎500.001240000 -00:03:43 | Processed Slot: 548 | Confirmed Slot: 548 | Finalized Slot: 516 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1343 | ◎500.001235000 -00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎500.001230000 -00:03:43 | Processed Slot: 549 | Confirmed Slot: 549 | Finalized Slot: 517 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1344 | ◎500.001230000 -00:03:43 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎500.001225000 -00:03:44 | Processed Slot: 550 | Confirmed Slot: 550 | Finalized Slot: 518 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1345 | ◎500.001225000 -00:03:44 | Processed Slot: 551 | Confirmed Slot: 551 | Finalized Slot: 519 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1346 | ◎500.001220000 -00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎500.001215000 -00:03:44 | Processed Slot: 552 | Confirmed Slot: 552 | Finalized Slot: 520 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1347 | ◎500.001215000 -00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎500.001210000 -00:03:45 | Processed Slot: 553 | Confirmed Slot: 553 | Finalized Slot: 521 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1348 | ◎500.001210000 -00:03:45 | Processed Slot: 554 | Confirmed Slot: 554 | Finalized Slot: 522 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1349 | ◎500.001205000 -00:03:45 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎500.001200000 -00:03:46 | Processed Slot: 555 | Confirmed Slot: 555 | Finalized Slot: 523 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1350 | ◎500.001200000 -00:03:46 | Processed Slot: 556 | Confirmed Slot: 556 | Finalized Slot: 524 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1351 | ◎500.001195000 -00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎500.001190000 -00:03:46 | Processed Slot: 557 | Confirmed Slot: 557 | Finalized Slot: 525 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1352 | ◎500.001190000 -00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎500.001185000 -00:03:47 | Processed Slot: 558 | Confirmed Slot: 558 | Finalized Slot: 526 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1353 | ◎500.001185000 -00:03:47 | Processed Slot: 559 | Confirmed Slot: 559 | Finalized Slot: 527 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1354 | ◎500.001180000 -00:03:47 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎500.001175000 -00:03:48 | Processed Slot: 560 | Confirmed Slot: 560 | Finalized Slot: 528 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1355 | ◎500.001175000 -00:03:48 | Processed Slot: 561 | Confirmed Slot: 561 | Finalized Slot: 529 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1356 | ◎500.001170000 -00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎500.001165000 -00:03:48 | Processed Slot: 562 | Confirmed Slot: 562 | Finalized Slot: 530 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1357 | ◎500.001165000 -00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎500.001160000 -00:03:49 | Processed Slot: 563 | Confirmed Slot: 563 | Finalized Slot: 531 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1358 | ◎500.001160000 -00:03:49 | Processed Slot: 564 | Confirmed Slot: 564 | Finalized Slot: 532 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1359 | ◎500.001155000 -00:03:49 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎500.001150000 -00:03:50 | Processed Slot: 565 | Confirmed Slot: 565 | Finalized Slot: 533 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1360 | ◎500.001150000 -00:03:50 | Processed Slot: 566 | Confirmed Slot: 566 | Finalized Slot: 534 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1361 | ◎500.001145000 -00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎500.001140000 -00:03:50 | Processed Slot: 567 | Confirmed Slot: 567 | Finalized Slot: 535 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1362 | ◎500.001140000 -00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎500.001135000 -00:03:51 | Processed Slot: 568 | Confirmed Slot: 568 | Finalized Slot: 536 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1363 | ◎500.001135000 -00:03:51 | Processed Slot: 569 | Confirmed Slot: 569 | Finalized Slot: 537 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1364 | ◎500.001130000 -00:03:51 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎500.001125000 -00:03:52 | Processed Slot: 570 | Confirmed Slot: 570 | Finalized Slot: 538 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1365 | ◎500.001125000 -00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎500.001120000 -00:03:52 | Processed Slot: 571 | Confirmed Slot: 571 | Finalized Slot: 539 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1366 | ◎500.001120000 -00:03:52 | Processed Slot: 572 | Confirmed Slot: 572 | Finalized Slot: 540 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1376 | ◎500.001160000 -00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎500.001155000 -00:03:53 | Processed Slot: 573 | Confirmed Slot: 573 | Finalized Slot: 541 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1377 | ◎500.001155000 -00:03:53 | Processed Slot: 574 | Confirmed Slot: 574 | Finalized Slot: 542 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1378 | ◎500.001150000 -00:03:53 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎500.001145000 -00:03:54 | Processed Slot: 575 | Confirmed Slot: 575 | Finalized Slot: 543 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1379 | ◎500.001145000 -00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎500.001140000 -00:03:54 | Processed Slot: 576 | Confirmed Slot: 576 | Finalized Slot: 544 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1380 | ◎500.001140000 -00:03:54 | Processed Slot: 577 | Confirmed Slot: 577 | Finalized Slot: 545 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1381 | ◎500.001135000 -00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎500.001130000 -00:03:55 | Processed Slot: 578 | Confirmed Slot: 578 | Finalized Slot: 546 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1382 | ◎500.001130000 -00:03:55 | Processed Slot: 579 | Confirmed Slot: 579 | Finalized Slot: 547 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1383 | ◎500.001125000 -00:03:55 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1399 | ◎500.001195000 -00:03:56 | Processed Slot: 580 | Confirmed Slot: 580 | Finalized Slot: 548 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1399 | ◎500.001195000 -00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1417 | ◎500.001275000 -00:03:56 | Processed Slot: 581 | Confirmed Slot: 581 | Finalized Slot: 549 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1417 | ◎500.001275000 -00:03:56 | Processed Slot: 582 | Confirmed Slot: 582 | Finalized Slot: 550 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1441 | ◎500.001385000 -00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1464 | ◎500.001490000 -00:03:57 | Processed Slot: 583 | Confirmed Slot: 583 | Finalized Slot: 551 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1464 | ◎500.001490000 -00:03:57 | Processed Slot: 584 | Confirmed Slot: 584 | Finalized Slot: 552 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1486 | ◎500.001590000 -00:03:57 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1504 | ◎500.001670000 -00:03:58 | Processed Slot: 585 | Confirmed Slot: 585 | Finalized Slot: 553 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1504 | ◎500.001670000 -00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1523 | ◎500.001755000 -00:03:58 | Processed Slot: 586 | Confirmed Slot: 586 | Finalized Slot: 554 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1523 | ◎500.001755000 -00:03:58 | Processed Slot: 587 | Confirmed Slot: 587 | Finalized Slot: 555 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1548 | ◎500.001870000 -00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1568 | ◎500.001960000 -00:03:59 | Processed Slot: 588 | Confirmed Slot: 588 | Finalized Slot: 556 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1568 | ◎500.001960000 -00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1569 | ◎500.001955000 -00:03:59 | Processed Slot: 589 | Confirmed Slot: 589 | Finalized Slot: 557 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1569 | ◎500.001955000 -00:04:00 | Processed Slot: 590 | Confirmed Slot: 590 | Finalized Slot: 558 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1570 | ◎500.001950000 -00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1571 | ◎500.001945000 -00:04:00 | Processed Slot: 591 | Confirmed Slot: 591 | Finalized Slot: 559 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1571 | ◎500.001945000 -00:04:00 | Processed Slot: 592 | Confirmed Slot: 592 | Finalized Slot: 560 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1576 | ◎500.001960000 -00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1577 | ◎500.001955000 -00:04:01 | Processed Slot: 593 | Confirmed Slot: 593 | Finalized Slot: 561 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1577 | ◎500.001955000 -00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1578 | ◎500.001950000 -00:04:01 | Processed Slot: 594 | Confirmed Slot: 594 | Finalized Slot: 562 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1578 | ◎500.001950000 -00:04:02 | Processed Slot: 595 | Confirmed Slot: 595 | Finalized Slot: 563 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1579 | ◎500.001945000 -00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1580 | ◎500.001940000 -00:04:02 | Processed Slot: 596 | Confirmed Slot: 596 | Finalized Slot: 564 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1580 | ◎500.001940000 -00:04:02 | Processed Slot: 597 | Confirmed Slot: 597 | Finalized Slot: 565 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1581 | ◎500.001935000 -00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1582 | ◎500.001930000 -00:04:03 | Processed Slot: 598 | Confirmed Slot: 598 | Finalized Slot: 566 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1582 | ◎500.001930000 -00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1591 | ◎500.001965000 -00:04:03 | Processed Slot: 599 | Confirmed Slot: 599 | Finalized Slot: 567 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1591 | ◎500.001965000 -00:04:04 | Processed Slot: 600 | Confirmed Slot: 600 | Finalized Slot: 568 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1602 | ◎500.002010000 -00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1608 | ◎500.002030000 -00:04:04 | Processed Slot: 601 | Confirmed Slot: 601 | Finalized Slot: 569 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1608 | ◎500.002030000 -00:04:04 | Processed Slot: 602 | Confirmed Slot: 602 | Finalized Slot: 570 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1618 | ◎500.002070000 -00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1629 | ◎500.002115000 -00:04:05 | Processed Slot: 603 | Confirmed Slot: 603 | Finalized Slot: 571 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1629 | ◎500.002115000 -00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1640 | ◎500.002160000 -00:04:05 | Processed Slot: 604 | Confirmed Slot: 604 | Finalized Slot: 572 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1640 | ◎500.002160000 -00:04:06 | Processed Slot: 605 | Confirmed Slot: 605 | Finalized Slot: 573 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1651 | ◎500.002205000 -00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1658 | ◎500.002230000 -00:04:06 | Processed Slot: 606 | Confirmed Slot: 606 | Finalized Slot: 574 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1658 | ◎500.002230000 -00:04:06 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1665 | ◎500.002255000 -00:04:07 | Processed Slot: 607 | Confirmed Slot: 607 | Finalized Slot: 575 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1665 | ◎500.002255000 -00:04:07 | Processed Slot: 608 | Confirmed Slot: 608 | Finalized Slot: 576 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1666 | ◎500.002250000 -00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1667 | ◎500.002245000 -00:04:07 | Processed Slot: 609 | Confirmed Slot: 609 | Finalized Slot: 577 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1667 | ◎500.002245000 -00:04:08 | Processed Slot: 610 | Confirmed Slot: 610 | Finalized Slot: 578 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1668 | ◎500.002240000 -00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1669 | ◎500.002235000 -00:04:08 | Processed Slot: 611 | Confirmed Slot: 611 | Finalized Slot: 579 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1669 | ◎500.002235000 -00:04:08 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1670 | ◎500.002230000 -00:04:09 | Processed Slot: 612 | Confirmed Slot: 612 | Finalized Slot: 580 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1670 | ◎500.002230000 -00:04:09 | Processed Slot: 613 | Confirmed Slot: 613 | Finalized Slot: 581 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1672 | ◎500.002230000 -00:04:09 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1673 | ◎500.002225000 -00:04:10 | Processed Slot: 614 | Confirmed Slot: 614 | Finalized Slot: 582 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1673 | ◎500.002225000 -00:04:10 | Processed Slot: 615 | Confirmed Slot: 615 | Finalized Slot: 583 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1674 | ◎500.002220000 -00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1675 | ◎500.002215000 -00:04:10 | Processed Slot: 616 | Confirmed Slot: 616 | Finalized Slot: 584 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1675 | ◎500.002215000 -00:04:11 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1676 | ◎500.002210000 -00:04:11 | Processed Slot: 617 | Confirmed Slot: 617 | Finalized Slot: 585 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1676 | ◎500.002210000 -00:04:11 | Processed Slot: 618 | Confirmed Slot: 618 | Finalized Slot: 586 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1693 | ◎500.002285000 -00:04:11 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1703 | ◎500.002325000 -00:04:12 | Processed Slot: 619 | Confirmed Slot: 619 | Finalized Slot: 587 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1703 | ◎500.002325000 -00:04:12 | Processed Slot: 620 | Confirmed Slot: 620 | Finalized Slot: 588 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1711 | ◎500.002355000 -00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1719 | ◎500.002385000 -00:04:12 | Processed Slot: 621 | Confirmed Slot: 621 | Finalized Slot: 589 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1719 | ◎500.002385000 -00:04:13 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1725 | ◎500.002405000 -00:04:13 | Processed Slot: 622 | Confirmed Slot: 622 | Finalized Slot: 590 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1725 | ◎500.002405000 -00:04:13 | Processed Slot: 623 | Confirmed Slot: 623 | Finalized Slot: 591 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1731 | ◎500.002425000 -00:04:13 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1733 | ◎500.002425000 -00:04:14 | Processed Slot: 624 | Confirmed Slot: 624 | Finalized Slot: 592 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1733 | ◎500.002425000 -00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1734 | ◎500.002420000 -00:04:14 | Processed Slot: 625 | Confirmed Slot: 625 | Finalized Slot: 593 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1734 | ◎500.002420000 -00:04:14 | Processed Slot: 626 | Confirmed Slot: 626 | Finalized Slot: 594 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1735 | ◎500.002415000 -00:04:15 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1736 | ◎500.002410000 -00:04:15 | Processed Slot: 627 | Confirmed Slot: 627 | Finalized Slot: 595 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1736 | ◎500.002410000 -00:04:15 | Processed Slot: 628 | Confirmed Slot: 628 | Finalized Slot: 596 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1737 | ◎500.002405000 -00:04:15 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1738 | ◎500.002400000 -00:04:16 | Processed Slot: 629 | Confirmed Slot: 629 | Finalized Slot: 597 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1738 | ◎500.002400000 -00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1739 | ◎500.002395000 -00:04:16 | Processed Slot: 630 | Confirmed Slot: 630 | Finalized Slot: 598 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1739 | ◎500.002395000 -00:04:16 | Processed Slot: 631 | Confirmed Slot: 631 | Finalized Slot: 599 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1740 | ◎500.002390000 -00:04:17 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1741 | ◎500.002385000 -00:04:17 | Processed Slot: 632 | Confirmed Slot: 632 | Finalized Slot: 600 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1741 | ◎500.002385000 -00:04:17 | Processed Slot: 633 | Confirmed Slot: 633 | Finalized Slot: 601 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1742 | ◎500.002380000 -00:04:17 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 500 | Incremental Snapshot Slot: - | Transactions: 1752 | ◎500.002420000 -00:04:18 | Processed Slot: 634 | Confirmed Slot: 634 | Finalized Slot: 602 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1752 | ◎500.002420000 -00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1760 | ◎500.002450000 -00:04:18 | Processed Slot: 635 | Confirmed Slot: 635 | Finalized Slot: 603 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1760 | ◎500.002450000 -00:04:18 | Processed Slot: 636 | Confirmed Slot: 636 | Finalized Slot: 604 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1763 | ◎500.002455000 -00:04:19 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1772 | ◎500.002490000 -00:04:19 | Processed Slot: 637 | Confirmed Slot: 637 | Finalized Slot: 605 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1772 | ◎500.002490000 -00:04:19 | Processed Slot: 638 | Confirmed Slot: 638 | Finalized Slot: 606 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1773 | ◎500.002485000 -00:04:19 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1774 | ◎500.002480000 -00:04:20 | Processed Slot: 639 | Confirmed Slot: 639 | Finalized Slot: 607 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1774 | ◎500.002480000 -00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1775 | ◎500.002475000 -00:04:20 | Processed Slot: 640 | Confirmed Slot: 640 | Finalized Slot: 608 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1775 | ◎500.002475000 -00:04:20 | Processed Slot: 641 | Confirmed Slot: 641 | Finalized Slot: 609 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1776 | ◎500.002470000 -00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1777 | ◎500.002465000 -00:04:21 | Processed Slot: 642 | Confirmed Slot: 642 | Finalized Slot: 610 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1777 | ◎500.002465000 -00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1778 | ◎500.002460000 -00:04:21 | Processed Slot: 643 | Confirmed Slot: 643 | Finalized Slot: 611 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1778 | ◎500.002460000 -00:04:22 | Processed Slot: 644 | Confirmed Slot: 644 | Finalized Slot: 612 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1779 | ◎500.002455000 -00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1780 | ◎500.002450000 -00:04:22 | Processed Slot: 645 | Confirmed Slot: 645 | Finalized Slot: 613 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1780 | ◎500.002450000 -00:04:22 | Processed Slot: 646 | Confirmed Slot: 646 | Finalized Slot: 614 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1781 | ◎500.002445000 -00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1783 | ◎500.002445000 -00:04:23 | Processed Slot: 647 | Confirmed Slot: 647 | Finalized Slot: 615 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1783 | ◎500.002445000 -00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1787 | ◎500.002455000 -00:04:23 | Processed Slot: 648 | Confirmed Slot: 648 | Finalized Slot: 616 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1787 | ◎500.002455000 -00:04:24 | Processed Slot: 649 | Confirmed Slot: 649 | Finalized Slot: 617 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1798 | ◎500.002500000 -00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1802 | ◎500.002510000 -00:04:24 | Processed Slot: 650 | Confirmed Slot: 650 | Finalized Slot: 618 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1802 | ◎500.002510000 -00:04:24 | Processed Slot: 651 | Confirmed Slot: 651 | Finalized Slot: 619 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1803 | ◎500.002505000 -00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1804 | ◎500.002500000 -00:04:25 | Processed Slot: 652 | Confirmed Slot: 652 | Finalized Slot: 620 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1804 | ◎500.002500000 -00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1805 | ◎500.002495000 -00:04:25 | Processed Slot: 653 | Confirmed Slot: 653 | Finalized Slot: 621 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1805 | ◎500.002495000 -00:04:26 | Processed Slot: 654 | Confirmed Slot: 654 | Finalized Slot: 622 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1806 | ◎500.002490000 -00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1807 | ◎500.002485000 -00:04:26 | Processed Slot: 655 | Confirmed Slot: 655 | Finalized Slot: 623 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1807 | ◎500.002485000 -00:04:26 | Processed Slot: 656 | Confirmed Slot: 656 | Finalized Slot: 624 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1808 | ◎500.002480000 -00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1809 | ◎500.002475000 -00:04:27 | Processed Slot: 657 | Confirmed Slot: 657 | Finalized Slot: 625 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1809 | ◎500.002475000 -00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1810 | ◎500.002470000 -00:04:27 | Processed Slot: 658 | Confirmed Slot: 658 | Finalized Slot: 626 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1810 | ◎500.002470000 -00:04:28 | Processed Slot: 659 | Confirmed Slot: 659 | Finalized Slot: 627 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1811 | ◎500.002465000 -00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1819 | ◎500.002495000 -00:04:28 | Processed Slot: 660 | Confirmed Slot: 660 | Finalized Slot: 628 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1819 | ◎500.002495000 -00:04:28 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1820 | ◎500.002490000 -00:04:29 | Processed Slot: 661 | Confirmed Slot: 661 | Finalized Slot: 629 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1820 | ◎500.002490000 -00:04:29 | Processed Slot: 662 | Confirmed Slot: 662 | Finalized Slot: 630 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1821 | ◎500.002485000 -00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1822 | ◎500.002480000 -00:04:29 | Processed Slot: 663 | Confirmed Slot: 663 | Finalized Slot: 631 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1822 | ◎500.002480000 -00:04:30 | Processed Slot: 664 | Confirmed Slot: 664 | Finalized Slot: 632 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1823 | ◎500.002475000 -00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1824 | ◎500.002470000 -00:04:30 | Processed Slot: 665 | Confirmed Slot: 665 | Finalized Slot: 633 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1824 | ◎500.002470000 -00:04:30 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1825 | ◎500.002465000 -00:04:31 | Processed Slot: 666 | Confirmed Slot: 666 | Finalized Slot: 634 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1825 | ◎500.002465000 -00:04:31 | Processed Slot: 667 | Confirmed Slot: 667 | Finalized Slot: 635 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1826 | ◎500.002460000 -00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1827 | ◎500.002455000 -00:04:31 | Processed Slot: 668 | Confirmed Slot: 668 | Finalized Slot: 636 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1827 | ◎500.002455000 -00:04:32 | Processed Slot: 669 | Confirmed Slot: 669 | Finalized Slot: 637 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1828 | ◎500.002450000 -00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1829 | ◎500.002445000 -00:04:32 | Processed Slot: 670 | Confirmed Slot: 670 | Finalized Slot: 638 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1829 | ◎500.002445000 -00:04:32 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1830 | ◎500.002440000 -00:04:33 | Processed Slot: 671 | Confirmed Slot: 671 | Finalized Slot: 639 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1830 | ◎500.002440000 -00:04:33 | Processed Slot: 672 | Confirmed Slot: 672 | Finalized Slot: 640 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1831 | ◎500.002435000 -00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1832 | ◎500.002430000 -00:04:33 | Processed Slot: 673 | Confirmed Slot: 673 | Finalized Slot: 641 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1832 | ◎500.002430000 -00:04:34 | Processed Slot: 674 | Confirmed Slot: 674 | Finalized Slot: 642 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1833 | ◎500.002425000 -00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1834 | ◎500.002420000 -00:04:34 | Processed Slot: 675 | Confirmed Slot: 675 | Finalized Slot: 643 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1834 | ◎500.002420000 -00:04:34 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1835 | ◎500.002415000 -00:04:35 | Processed Slot: 676 | Confirmed Slot: 676 | Finalized Slot: 644 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1835 | ◎500.002415000 -00:04:35 | Processed Slot: 677 | Confirmed Slot: 677 | Finalized Slot: 645 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1836 | ◎500.002410000 -00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1837 | ◎500.002405000 -00:04:35 | Processed Slot: 678 | Confirmed Slot: 678 | Finalized Slot: 646 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1837 | ◎500.002405000 -00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1838 | ◎500.002400000 -00:04:36 | Processed Slot: 679 | Confirmed Slot: 679 | Finalized Slot: 647 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1838 | ◎500.002400000 -00:04:36 | Processed Slot: 680 | Confirmed Slot: 680 | Finalized Slot: 648 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1839 | ◎500.002395000 -00:04:36 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1840 | ◎500.002390000 -00:04:37 | Processed Slot: 681 | Confirmed Slot: 681 | Finalized Slot: 649 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1840 | ◎500.002390000 -00:04:37 | Processed Slot: 682 | Confirmed Slot: 682 | Finalized Slot: 650 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1841 | ◎500.002385000 -00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1842 | ◎500.002380000 -00:04:37 | Processed Slot: 683 | Confirmed Slot: 683 | Finalized Slot: 651 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1842 | ◎500.002380000 -00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1843 | ◎500.002375000 -00:04:38 | Processed Slot: 684 | Confirmed Slot: 684 | Finalized Slot: 652 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1843 | ◎500.002375000 -00:04:38 | Processed Slot: 685 | Confirmed Slot: 685 | Finalized Slot: 653 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1844 | ◎500.002370000 -00:04:38 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1845 | ◎500.002365000 -00:04:39 | Processed Slot: 686 | Confirmed Slot: 686 | Finalized Slot: 654 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1845 | ◎500.002365000 -00:04:39 | Processed Slot: 687 | Confirmed Slot: 687 | Finalized Slot: 655 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1846 | ◎500.002360000 -00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1847 | ◎500.002355000 -00:04:39 | Processed Slot: 688 | Confirmed Slot: 688 | Finalized Slot: 656 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1847 | ◎500.002355000 -00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1848 | ◎500.002350000 -00:04:40 | Processed Slot: 689 | Confirmed Slot: 689 | Finalized Slot: 657 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1848 | ◎500.002350000 -00:04:40 | Processed Slot: 690 | Confirmed Slot: 690 | Finalized Slot: 658 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1849 | ◎500.002345000 -00:04:40 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1850 | ◎500.002340000 -00:04:41 | Processed Slot: 691 | Confirmed Slot: 691 | Finalized Slot: 659 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1850 | ◎500.002340000 -00:04:41 | Processed Slot: 692 | Confirmed Slot: 692 | Finalized Slot: 660 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1851 | ◎500.002335000 -00:04:41 | Processed Slot: 693 | Confirmed Slot: 692 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1852 | ◎500.002335000 -00:04:41 | Processed Slot: 693 | Confirmed Slot: 693 | Finalized Slot: 661 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1852 | ◎500.002330000 -00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1853 | ◎500.002325000 -00:04:42 | Processed Slot: 694 | Confirmed Slot: 694 | Finalized Slot: 662 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1853 | ◎500.002325000 -00:04:42 | Processed Slot: 695 | Confirmed Slot: 695 | Finalized Slot: 663 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1855 | ◎500.002325000 -00:04:42 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1856 | ◎500.002320000 -00:04:43 | Processed Slot: 696 | Confirmed Slot: 696 | Finalized Slot: 664 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1856 | ◎500.002320000 -00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1857 | ◎500.002315000 -00:04:43 | Processed Slot: 697 | Confirmed Slot: 697 | Finalized Slot: 665 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1857 | ◎500.002315000 -00:04:43 | Processed Slot: 698 | Confirmed Slot: 698 | Finalized Slot: 666 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1858 | ◎500.002310000 -00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1859 | ◎500.002305000 -00:04:44 | Processed Slot: 699 | Confirmed Slot: 699 | Finalized Slot: 667 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1859 | ◎500.002305000 -00:04:44 | Processed Slot: 700 | Confirmed Slot: 700 | Finalized Slot: 668 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1860 | ◎500.002300000 -00:04:44 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1861 | ◎500.002295000 -00:04:45 | Processed Slot: 701 | Confirmed Slot: 701 | Finalized Slot: 669 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1861 | ◎500.002295000 -00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1862 | ◎500.002290000 -00:04:45 | Processed Slot: 702 | Confirmed Slot: 702 | Finalized Slot: 670 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1862 | ◎500.002290000 -00:04:45 | Processed Slot: 703 | Confirmed Slot: 703 | Finalized Slot: 671 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1863 | ◎500.002285000 -00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1864 | ◎500.002280000 -00:04:46 | Processed Slot: 704 | Confirmed Slot: 704 | Finalized Slot: 672 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1864 | ◎500.002280000 -00:04:46 | Processed Slot: 705 | Confirmed Slot: 705 | Finalized Slot: 673 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1865 | ◎500.002275000 -00:04:46 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1866 | ◎500.002270000 -00:04:47 | Processed Slot: 706 | Confirmed Slot: 706 | Finalized Slot: 674 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1866 | ◎500.002270000 -00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1867 | ◎500.002265000 -00:04:47 | Processed Slot: 707 | Confirmed Slot: 707 | Finalized Slot: 675 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1867 | ◎500.002265000 -00:04:47 | Processed Slot: 708 | Confirmed Slot: 708 | Finalized Slot: 676 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1868 | ◎500.002260000 -00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1869 | ◎500.002255000 -00:04:48 | Processed Slot: 709 | Confirmed Slot: 709 | Finalized Slot: 677 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1869 | ◎500.002255000 -00:04:48 | Processed Slot: 710 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1870 | ◎500.002250000 -00:04:48 | Processed Slot: 711 | Confirmed Slot: 710 | Finalized Slot: 678 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1871 | ◎500.002250000 -00:04:49 | Processed Slot: 711 | Confirmed Slot: 711 | Finalized Slot: 679 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1871 | ◎500.002245000 -00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1872 | ◎500.002240000 -00:04:49 | Processed Slot: 712 | Confirmed Slot: 712 | Finalized Slot: 680 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1872 | ◎500.002240000 -00:04:49 | Processed Slot: 713 | Confirmed Slot: 713 | Finalized Slot: 681 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1873 | ◎500.002235000 -00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1874 | ◎500.002230000 -00:04:50 | Processed Slot: 714 | Confirmed Slot: 714 | Finalized Slot: 682 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1874 | ◎500.002230000 -00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1875 | ◎500.002225000 -00:04:50 | Processed Slot: 715 | Confirmed Slot: 715 | Finalized Slot: 683 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1875 | ◎500.002225000 -00:04:51 | Processed Slot: 716 | Confirmed Slot: 716 | Finalized Slot: 684 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1876 | ◎500.002220000 -00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1877 | ◎500.002215000 -00:04:51 | Processed Slot: 717 | Confirmed Slot: 717 | Finalized Slot: 685 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1877 | ◎500.002215000 -00:04:51 | Processed Slot: 718 | Confirmed Slot: 718 | Finalized Slot: 686 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1878 | ◎500.002210000 -00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1879 | ◎500.002205000 -00:04:52 | Processed Slot: 719 | Confirmed Slot: 719 | Finalized Slot: 687 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1879 | ◎500.002205000 -00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1880 | ◎500.002200000 -00:04:52 | Processed Slot: 720 | Confirmed Slot: 720 | Finalized Slot: 688 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1880 | ◎500.002200000 -00:04:53 | Processed Slot: 721 | Confirmed Slot: 721 | Finalized Slot: 689 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1881 | ◎500.002195000 -00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1882 | ◎500.002190000 -00:04:53 | Processed Slot: 722 | Confirmed Slot: 722 | Finalized Slot: 690 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1882 | ◎500.002190000 -00:04:53 | Processed Slot: 723 | Confirmed Slot: 723 | Finalized Slot: 691 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1883 | ◎500.002185000 -00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1884 | ◎500.002180000 -00:04:54 | Processed Slot: 724 | Confirmed Slot: 724 | Finalized Slot: 692 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1884 | ◎500.002180000 -00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1885 | ◎500.002175000 -00:04:54 | Processed Slot: 725 | Confirmed Slot: 725 | Finalized Slot: 693 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1885 | ◎500.002175000 -00:04:55 | Processed Slot: 726 | Confirmed Slot: 726 | Finalized Slot: 694 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1886 | ◎500.002170000 -00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1887 | ◎500.002165000 -00:04:55 | Processed Slot: 727 | Confirmed Slot: 727 | Finalized Slot: 695 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1887 | ◎500.002165000 -00:04:55 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1888 | ◎500.002160000 -00:04:56 | Processed Slot: 728 | Confirmed Slot: 728 | Finalized Slot: 696 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1888 | ◎500.002160000 -00:04:56 | Processed Slot: 729 | Confirmed Slot: 729 | Finalized Slot: 697 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1890 | ◎500.002160000 -00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1893 | ◎500.002160000 -00:04:56 | Processed Slot: 730 | Confirmed Slot: 730 | Finalized Slot: 698 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1893 | ◎500.002160000 -00:04:57 | Processed Slot: 731 | Confirmed Slot: 731 | Finalized Slot: 699 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1896 | ◎500.002160000 -00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1898 | ◎500.002157500 -00:04:57 | Processed Slot: 732 | Confirmed Slot: 732 | Finalized Slot: 700 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1898 | ◎500.002157500 -00:04:57 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 600 | Incremental Snapshot Slot: - | Transactions: 1900 | ◎500.002157500 -00:04:58 | Processed Slot: 733 | Confirmed Slot: 733 | Finalized Slot: 701 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1900 | ◎500.002157500 -00:04:58 | Processed Slot: 734 | Confirmed Slot: 734 | Finalized Slot: 702 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1901 | ◎500.002152500 -00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1903 | ◎500.002152500 -00:04:58 | Processed Slot: 735 | Confirmed Slot: 735 | Finalized Slot: 703 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1903 | ◎500.002152500 -00:04:59 | Processed Slot: 736 | Confirmed Slot: 736 | Finalized Slot: 704 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1904 | ◎500.002147500 -00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1906 | ◎500.002147500 -00:04:59 | Processed Slot: 737 | Confirmed Slot: 737 | Finalized Slot: 705 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1906 | ◎500.002147500 -00:04:59 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1907 | ◎500.002142500 -00:05:00 | Processed Slot: 738 | Confirmed Slot: 738 | Finalized Slot: 706 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1907 | ◎500.002142500 -00:05:00 | Processed Slot: 739 | Confirmed Slot: 739 | Finalized Slot: 707 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1908 | ◎500.002137500 -00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1910 | ◎500.002137500 -00:05:00 | Processed Slot: 740 | Confirmed Slot: 740 | Finalized Slot: 708 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1910 | ◎500.002137500 -00:05:01 | Processed Slot: 741 | Confirmed Slot: 741 | Finalized Slot: 709 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1911 | ◎500.002132500 -00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1912 | ◎500.002127500 -00:05:01 | Processed Slot: 742 | Confirmed Slot: 742 | Finalized Slot: 710 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1912 | ◎500.002127500 -00:05:01 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1913 | ◎500.002122500 -00:05:02 | Processed Slot: 743 | Confirmed Slot: 743 | Finalized Slot: 711 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1913 | ◎500.002122500 -00:05:02 | Processed Slot: 744 | Confirmed Slot: 744 | Finalized Slot: 712 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1914 | ◎500.002117500 -00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1915 | ◎500.002112500 -00:05:02 | Processed Slot: 745 | Confirmed Slot: 745 | Finalized Slot: 713 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1915 | ◎500.002112500 -00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1916 | ◎500.002107500 -00:05:03 | Processed Slot: 746 | Confirmed Slot: 746 | Finalized Slot: 714 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1916 | ◎500.002107500 -00:05:03 | Processed Slot: 747 | Confirmed Slot: 747 | Finalized Slot: 715 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1917 | ◎500.002102500 -00:05:03 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1918 | ◎500.002097500 -00:05:04 | Processed Slot: 748 | Confirmed Slot: 748 | Finalized Slot: 716 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1918 | ◎500.002097500 -00:05:04 | Processed Slot: 749 | Confirmed Slot: 749 | Finalized Slot: 717 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1919 | ◎500.002092500 -00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1920 | ◎500.002087500 -00:05:04 | Processed Slot: 750 | Confirmed Slot: 750 | Finalized Slot: 718 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1920 | ◎500.002087500 -00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1921 | ◎500.002082500 -00:05:05 | Processed Slot: 751 | Confirmed Slot: 751 | Finalized Slot: 719 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1921 | ◎500.002082500 -00:05:05 | Processed Slot: 752 | Confirmed Slot: 752 | Finalized Slot: 720 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1922 | ◎500.002077500 -00:05:05 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1923 | ◎500.002072500 -00:05:06 | Processed Slot: 753 | Confirmed Slot: 753 | Finalized Slot: 721 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1923 | ◎500.002072500 -00:05:06 | Processed Slot: 754 | Confirmed Slot: 754 | Finalized Slot: 722 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1924 | ◎500.002067500 -00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1925 | ◎500.002062500 -00:05:06 | Processed Slot: 755 | Confirmed Slot: 755 | Finalized Slot: 723 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1925 | ◎500.002062500 -00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1926 | ◎500.002057500 -00:05:07 | Processed Slot: 756 | Confirmed Slot: 756 | Finalized Slot: 724 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1926 | ◎500.002057500 -00:05:07 | Processed Slot: 757 | Confirmed Slot: 757 | Finalized Slot: 725 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1927 | ◎500.002052500 -00:05:07 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1928 | ◎500.002047500 -00:05:08 | Processed Slot: 758 | Confirmed Slot: 758 | Finalized Slot: 726 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1928 | ◎500.002047500 -00:05:08 | Processed Slot: 759 | Confirmed Slot: 759 | Finalized Slot: 727 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1929 | ◎500.002042500 -00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1930 | ◎500.002037500 -00:05:08 | Processed Slot: 760 | Confirmed Slot: 760 | Finalized Slot: 728 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1930 | ◎500.002037500 -00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1931 | ◎500.002032500 -00:05:09 | Processed Slot: 761 | Confirmed Slot: 761 | Finalized Slot: 729 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1931 | ◎500.002032500 -00:05:09 | Processed Slot: 762 | Confirmed Slot: 762 | Finalized Slot: 730 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1932 | ◎500.002027500 -00:05:09 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1933 | ◎500.002022500 -00:05:10 | Processed Slot: 763 | Confirmed Slot: 763 | Finalized Slot: 731 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1933 | ◎500.002022500 -00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1934 | ◎500.002017500 -00:05:10 | Processed Slot: 764 | Confirmed Slot: 764 | Finalized Slot: 732 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1934 | ◎500.002017500 -00:05:10 | Processed Slot: 765 | Confirmed Slot: 765 | Finalized Slot: 733 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1935 | ◎500.002012500 -00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1936 | ◎500.002007500 -00:05:11 | Processed Slot: 766 | Confirmed Slot: 766 | Finalized Slot: 734 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1936 | ◎500.002007500 -00:05:11 | Processed Slot: 767 | Confirmed Slot: 767 | Finalized Slot: 735 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1937 | ◎500.002002500 -00:05:11 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1938 | ◎500.001997500 -00:05:12 | Processed Slot: 768 | Confirmed Slot: 768 | Finalized Slot: 736 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1938 | ◎500.001997500 -00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1939 | ◎500.001992500 -00:05:12 | Processed Slot: 769 | Confirmed Slot: 769 | Finalized Slot: 737 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1939 | ◎500.001992500 -00:05:12 | Processed Slot: 770 | Confirmed Slot: 770 | Finalized Slot: 738 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1940 | ◎500.001987500 -00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1941 | ◎500.001982500 -00:05:13 | Processed Slot: 771 | Confirmed Slot: 771 | Finalized Slot: 739 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1941 | ◎500.001982500 -00:05:13 | Processed Slot: 772 | Confirmed Slot: 772 | Finalized Slot: 740 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1942 | ◎500.001977500 -00:05:13 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1943 | ◎500.001972500 -00:05:14 | Processed Slot: 773 | Confirmed Slot: 773 | Finalized Slot: 741 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1943 | ◎500.001972500 -00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1944 | ◎500.001967500 -00:05:14 | Processed Slot: 774 | Confirmed Slot: 774 | Finalized Slot: 742 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1944 | ◎500.001967500 -00:05:14 | Processed Slot: 775 | Confirmed Slot: 775 | Finalized Slot: 743 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1946 | ◎500.001965000 -00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1947 | ◎500.001960000 -00:05:15 | Processed Slot: 776 | Confirmed Slot: 776 | Finalized Slot: 744 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1947 | ◎500.001960000 -00:05:15 | Processed Slot: 777 | Confirmed Slot: 777 | Finalized Slot: 745 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1948 | ◎500.001955000 -00:05:15 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1949 | ◎500.001950000 -00:05:16 | Processed Slot: 778 | Confirmed Slot: 778 | Finalized Slot: 746 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1949 | ◎500.001950000 -00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1950 | ◎500.001945000 -00:05:16 | Processed Slot: 779 | Confirmed Slot: 779 | Finalized Slot: 747 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1950 | ◎500.001945000 -00:05:16 | Processed Slot: 780 | Confirmed Slot: 780 | Finalized Slot: 748 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1951 | ◎500.001940000 -00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1952 | ◎500.001935000 -00:05:17 | Processed Slot: 781 | Confirmed Slot: 781 | Finalized Slot: 749 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1952 | ◎500.001935000 -00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1953 | ◎500.001930000 -00:05:17 | Processed Slot: 782 | Confirmed Slot: 782 | Finalized Slot: 750 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1953 | ◎500.001930000 -00:05:18 | Processed Slot: 783 | Confirmed Slot: 783 | Finalized Slot: 751 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1954 | ◎500.001925000 -00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1955 | ◎500.001920000 -00:05:18 | Processed Slot: 784 | Confirmed Slot: 784 | Finalized Slot: 752 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1955 | ◎500.001920000 -00:05:18 | Processed Slot: 785 | Confirmed Slot: 785 | Finalized Slot: 753 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1956 | ◎500.001915000 -00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1957 | ◎500.001910000 -00:05:19 | Processed Slot: 786 | Confirmed Slot: 786 | Finalized Slot: 754 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1957 | ◎500.001910000 -00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1958 | ◎500.001905000 -00:05:19 | Processed Slot: 787 | Confirmed Slot: 787 | Finalized Slot: 755 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1958 | ◎500.001905000 -00:05:20 | Processed Slot: 788 | Confirmed Slot: 788 | Finalized Slot: 756 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1959 | ◎500.001900000 -00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1960 | ◎500.001895000 -00:05:20 | Processed Slot: 789 | Confirmed Slot: 789 | Finalized Slot: 757 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1960 | ◎500.001895000 -00:05:21 | Processed Slot: 790 | Confirmed Slot: 790 | Finalized Slot: 758 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1961 | ◎500.001890000 -00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1962 | ◎500.001885000 -00:05:21 | Processed Slot: 791 | Confirmed Slot: 791 | Finalized Slot: 759 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1962 | ◎500.001885000 -00:05:21 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1963 | ◎500.001880000 -00:05:22 | Processed Slot: 792 | Confirmed Slot: 792 | Finalized Slot: 760 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1963 | ◎500.001880000 -00:05:22 | Processed Slot: 793 | Confirmed Slot: 793 | Finalized Slot: 761 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1964 | ◎500.001875000 -00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1965 | ◎500.001870000 -00:05:22 | Processed Slot: 794 | Confirmed Slot: 794 | Finalized Slot: 762 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1965 | ◎500.001870000 -00:05:23 | Processed Slot: 795 | Confirmed Slot: 795 | Finalized Slot: 763 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1966 | ◎500.001865000 -00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1967 | ◎500.001860000 -00:05:23 | Processed Slot: 796 | Confirmed Slot: 796 | Finalized Slot: 764 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1967 | ◎500.001860000 -00:05:23 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1968 | ◎500.001855000 -00:05:24 | Processed Slot: 797 | Confirmed Slot: 797 | Finalized Slot: 765 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1968 | ◎500.001855000 -00:05:24 | Processed Slot: 798 | Confirmed Slot: 798 | Finalized Slot: 766 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1969 | ◎500.001850000 -00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1970 | ◎500.001845000 -00:05:24 | Processed Slot: 799 | Confirmed Slot: 799 | Finalized Slot: 767 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1970 | ◎500.001845000 -00:05:25 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1971 | ◎500.001840000 -00:05:25 | Processed Slot: 800 | Confirmed Slot: 800 | Finalized Slot: 768 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1971 | ◎500.001840000 -00:05:25 | Processed Slot: 801 | Confirmed Slot: 801 | Finalized Slot: 769 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1972 | ◎500.001835000 -00:05:25 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1973 | ◎500.001830000 -00:05:26 | Processed Slot: 802 | Confirmed Slot: 802 | Finalized Slot: 770 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1973 | ◎500.001830000 -00:05:26 | Processed Slot: 803 | Confirmed Slot: 803 | Finalized Slot: 771 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1974 | ◎500.001825000 -00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1975 | ◎500.001820000 -00:05:26 | Processed Slot: 804 | Confirmed Slot: 804 | Finalized Slot: 772 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1975 | ◎500.001820000 -00:05:27 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1976 | ◎500.001815000 -00:05:27 | Processed Slot: 805 | Confirmed Slot: 805 | Finalized Slot: 773 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1976 | ◎500.001815000 -00:05:27 | Processed Slot: 806 | Confirmed Slot: 806 | Finalized Slot: 774 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1977 | ◎500.001810000 -00:05:27 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1978 | ◎500.001805000 -00:05:28 | Processed Slot: 807 | Confirmed Slot: 807 | Finalized Slot: 775 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1978 | ◎500.001805000 -00:05:28 | Processed Slot: 808 | Confirmed Slot: 808 | Finalized Slot: 776 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1979 | ◎500.001800000 -00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1981 | ◎500.001800000 -00:05:28 | Processed Slot: 809 | Confirmed Slot: 809 | Finalized Slot: 777 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1981 | ◎500.001800000 -00:05:29 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1982 | ◎500.001795000 -00:05:29 | Processed Slot: 810 | Confirmed Slot: 810 | Finalized Slot: 778 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1982 | ◎500.001795000 -00:05:29 | Processed Slot: 811 | Confirmed Slot: 811 | Finalized Slot: 779 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1983 | ◎500.001790000 -00:05:29 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1984 | ◎500.001785000 -00:05:30 | Processed Slot: 812 | Confirmed Slot: 812 | Finalized Slot: 780 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1984 | ◎500.001785000 -00:05:30 | Processed Slot: 813 | Confirmed Slot: 813 | Finalized Slot: 781 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1985 | ◎500.001780000 -00:05:30 | Processed Slot: 814 | Confirmed Slot: 813 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1986 | ◎500.001780000 -00:05:30 | Processed Slot: 814 | Confirmed Slot: 814 | Finalized Slot: 782 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1986 | ◎500.001775000 -00:05:31 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1987 | ◎500.001770000 -00:05:31 | Processed Slot: 815 | Confirmed Slot: 815 | Finalized Slot: 783 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1987 | ◎500.001770000 -00:05:31 | Processed Slot: 816 | Confirmed Slot: 816 | Finalized Slot: 784 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1988 | ◎500.001765000 -00:05:31 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1989 | ◎500.001760000 -00:05:32 | Processed Slot: 817 | Confirmed Slot: 817 | Finalized Slot: 785 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1989 | ◎500.001760000 -00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1990 | ◎500.001755000 -00:05:32 | Processed Slot: 818 | Confirmed Slot: 818 | Finalized Slot: 786 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1990 | ◎500.001755000 -00:05:32 | Processed Slot: 819 | Confirmed Slot: 819 | Finalized Slot: 787 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1991 | ◎500.001750000 -00:05:33 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1992 | ◎500.001745000 -00:05:33 | Processed Slot: 820 | Confirmed Slot: 820 | Finalized Slot: 788 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1992 | ◎500.001745000 -00:05:33 | Processed Slot: 821 | Confirmed Slot: 821 | Finalized Slot: 789 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1993 | ◎500.001740000 -00:05:33 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1994 | ◎500.001735000 -00:05:34 | Processed Slot: 822 | Confirmed Slot: 822 | Finalized Slot: 790 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1994 | ◎500.001735000 -00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1995 | ◎500.001730000 -00:05:34 | Processed Slot: 823 | Confirmed Slot: 823 | Finalized Slot: 791 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1995 | ◎500.001730000 -00:05:34 | Processed Slot: 824 | Confirmed Slot: 824 | Finalized Slot: 792 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1996 | ◎500.001725000 -00:05:35 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1997 | ◎500.001720000 -00:05:35 | Processed Slot: 825 | Confirmed Slot: 825 | Finalized Slot: 793 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1997 | ◎500.001720000 -00:05:35 | Processed Slot: 826 | Confirmed Slot: 826 | Finalized Slot: 794 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1998 | ◎500.001715000 -00:05:35 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1999 | ◎500.001710000 -00:05:36 | Processed Slot: 827 | Confirmed Slot: 827 | Finalized Slot: 795 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 1999 | ◎500.001710000 -00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2000 | ◎500.001705000 -00:05:36 | Processed Slot: 828 | Confirmed Slot: 828 | Finalized Slot: 796 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2000 | ◎500.001705000 -00:05:36 | Processed Slot: 829 | Confirmed Slot: 829 | Finalized Slot: 797 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2001 | ◎500.001700000 -00:05:37 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2002 | ◎500.001695000 -00:05:37 | Processed Slot: 830 | Confirmed Slot: 830 | Finalized Slot: 798 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2002 | ◎500.001695000 -00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2003 | ◎500.001690000 -00:05:37 | Processed Slot: 831 | Confirmed Slot: 831 | Finalized Slot: 799 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2003 | ◎500.001690000 -00:05:38 | Processed Slot: 832 | Confirmed Slot: 832 | Finalized Slot: 800 | Full Snapshot Slot: 700 | Incremental Snapshot Slot: - | Transactions: 2004 | ◎500.001685000 -00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2005 | ◎500.001680000 -00:05:38 | Processed Slot: 833 | Confirmed Slot: 833 | Finalized Slot: 801 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2005 | ◎500.001680000 -00:05:38 | Processed Slot: 834 | Confirmed Slot: 834 | Finalized Slot: 802 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2006 | ◎500.001675000 -00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2007 | ◎500.001670000 -00:05:39 | Processed Slot: 835 | Confirmed Slot: 835 | Finalized Slot: 803 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2007 | ◎500.001670000 -00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2008 | ◎500.001665000 -00:05:39 | Processed Slot: 836 | Confirmed Slot: 836 | Finalized Slot: 804 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2008 | ◎500.001665000 -00:05:40 | Processed Slot: 837 | Confirmed Slot: 837 | Finalized Slot: 805 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2009 | ◎500.001660000 -00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2010 | ◎500.001655000 -00:05:40 | Processed Slot: 838 | Confirmed Slot: 838 | Finalized Slot: 806 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2010 | ◎500.001655000 -00:05:40 | Processed Slot: 839 | Confirmed Slot: 839 | Finalized Slot: 807 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2011 | ◎500.001650000 -00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2012 | ◎500.001645000 -00:05:41 | Processed Slot: 840 | Confirmed Slot: 840 | Finalized Slot: 808 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2012 | ◎500.001645000 -00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2013 | ◎500.001640000 -00:05:41 | Processed Slot: 841 | Confirmed Slot: 841 | Finalized Slot: 809 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2013 | ◎500.001640000 -00:05:42 | Processed Slot: 842 | Confirmed Slot: 842 | Finalized Slot: 810 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2014 | ◎500.001635000 -00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2016 | ◎500.001632500 -00:05:42 | Processed Slot: 843 | Confirmed Slot: 843 | Finalized Slot: 811 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2016 | ◎500.001632500 -00:05:42 | Processed Slot: 844 | Confirmed Slot: 844 | Finalized Slot: 812 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2017 | ◎500.001627500 -00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2019 | ◎500.001625000 -00:05:43 | Processed Slot: 845 | Confirmed Slot: 845 | Finalized Slot: 813 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2019 | ◎500.001625000 -00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2021 | ◎500.001622500 -00:05:43 | Processed Slot: 846 | Confirmed Slot: 846 | Finalized Slot: 814 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2021 | ◎500.001622500 -00:05:44 | Processed Slot: 847 | Confirmed Slot: 847 | Finalized Slot: 815 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2022 | ◎500.001617500 -00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2024 | ◎500.001617500 -00:05:44 | Processed Slot: 848 | Confirmed Slot: 848 | Finalized Slot: 816 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2024 | ◎500.001617500 -00:05:44 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2025 | ◎500.001612500 -00:05:45 | Processed Slot: 849 | Confirmed Slot: 849 | Finalized Slot: 817 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2025 | ◎500.001612500 -00:05:45 | Processed Slot: 850 | Confirmed Slot: 850 | Finalized Slot: 818 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2026 | ◎500.001607500 -00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2027 | ◎500.001602500 -00:05:45 | Processed Slot: 851 | Confirmed Slot: 851 | Finalized Slot: 819 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2027 | ◎500.001602500 -00:05:46 | Processed Slot: 852 | Confirmed Slot: 852 | Finalized Slot: 820 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2028 | ◎500.001597500 -00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2029 | ◎500.001592500 -00:05:46 | Processed Slot: 853 | Confirmed Slot: 853 | Finalized Slot: 821 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2029 | ◎500.001592500 -00:05:46 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2030 | ◎500.001587500 -00:05:47 | Processed Slot: 854 | Confirmed Slot: 854 | Finalized Slot: 822 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2030 | ◎500.001587500 -00:05:47 | Processed Slot: 855 | Confirmed Slot: 855 | Finalized Slot: 823 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2031 | ◎500.001582500 -00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2032 | ◎500.001577500 -00:05:47 | Processed Slot: 856 | Confirmed Slot: 856 | Finalized Slot: 824 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2032 | ◎500.001577500 -00:05:48 | Processed Slot: 857 | Confirmed Slot: 857 | Finalized Slot: 825 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2033 | ◎500.001572500 -00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2034 | ◎500.001567500 -00:05:48 | Processed Slot: 858 | Confirmed Slot: 858 | Finalized Slot: 826 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2034 | ◎500.001567500 -00:05:48 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2035 | ◎500.001562500 -00:05:49 | Processed Slot: 859 | Confirmed Slot: 859 | Finalized Slot: 827 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2035 | ◎500.001562500 -00:05:49 | Processed Slot: 860 | Confirmed Slot: 860 | Finalized Slot: 828 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2036 | ◎500.001557500 -00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2037 | ◎500.001552500 -00:05:49 | Processed Slot: 861 | Confirmed Slot: 861 | Finalized Slot: 829 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2037 | ◎500.001552500 -00:05:50 | Processed Slot: 862 | Confirmed Slot: 862 | Finalized Slot: 830 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2038 | ◎500.001547500 -00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2039 | ◎500.001542500 -00:05:50 | Processed Slot: 863 | Confirmed Slot: 863 | Finalized Slot: 831 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2039 | ◎500.001542500 -00:05:50 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2040 | ◎500.001537500 -00:05:51 | Processed Slot: 864 | Confirmed Slot: 864 | Finalized Slot: 832 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2040 | ◎500.001537500 -00:05:51 | Processed Slot: 865 | Confirmed Slot: 865 | Finalized Slot: 833 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2041 | ◎500.001532500 -00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2042 | ◎500.001527500 -00:05:51 | Processed Slot: 866 | Confirmed Slot: 866 | Finalized Slot: 834 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2042 | ◎500.001527500 -00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2043 | ◎500.001522500 -00:05:52 | Processed Slot: 867 | Confirmed Slot: 867 | Finalized Slot: 835 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2043 | ◎500.001522500 -00:05:52 | Processed Slot: 868 | Confirmed Slot: 868 | Finalized Slot: 836 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2044 | ◎500.001517500 -00:05:52 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2045 | ◎500.001512500 -00:05:53 | Processed Slot: 869 | Confirmed Slot: 869 | Finalized Slot: 837 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2045 | ◎500.001512500 -00:05:53 | Processed Slot: 870 | Confirmed Slot: 870 | Finalized Slot: 838 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2046 | ◎500.001507500 -00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2047 | ◎500.001502500 -00:05:53 | Processed Slot: 871 | Confirmed Slot: 871 | Finalized Slot: 839 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2047 | ◎500.001502500 -00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2048 | ◎500.001497500 -00:05:54 | Processed Slot: 872 | Confirmed Slot: 872 | Finalized Slot: 840 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2048 | ◎500.001497500 -00:05:54 | Processed Slot: 873 | Confirmed Slot: 873 | Finalized Slot: 841 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2049 | ◎500.001492500 -00:05:54 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2050 | ◎500.001487500 -00:05:55 | Processed Slot: 874 | Confirmed Slot: 874 | Finalized Slot: 842 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2050 | ◎500.001487500 -00:05:55 | Processed Slot: 875 | Confirmed Slot: 875 | Finalized Slot: 843 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2051 | ◎500.001482500 -00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2052 | ◎500.001477500 -00:05:55 | Processed Slot: 876 | Confirmed Slot: 876 | Finalized Slot: 844 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2052 | ◎500.001477500 -00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2053 | ◎500.001472500 -00:05:56 | Processed Slot: 877 | Confirmed Slot: 877 | Finalized Slot: 845 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2053 | ◎500.001472500 -00:05:56 | Processed Slot: 878 | Confirmed Slot: 878 | Finalized Slot: 846 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2054 | ◎500.001467500 -00:05:56 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2055 | ◎500.001462500 -00:05:57 | Processed Slot: 879 | Confirmed Slot: 879 | Finalized Slot: 847 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2055 | ◎500.001462500 -00:05:57 | Processed Slot: 880 | Confirmed Slot: 880 | Finalized Slot: 848 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2056 | ◎500.001457500 -00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2057 | ◎500.001452500 -00:05:57 | Processed Slot: 881 | Confirmed Slot: 881 | Finalized Slot: 849 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2057 | ◎500.001452500 -00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2059 | ◎500.001450000 -00:05:58 | Processed Slot: 882 | Confirmed Slot: 882 | Finalized Slot: 850 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2059 | ◎500.001450000 -00:05:58 | Processed Slot: 883 | Confirmed Slot: 883 | Finalized Slot: 851 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2060 | ◎500.001445000 -00:05:58 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2061 | ◎500.001440000 -00:05:59 | Processed Slot: 884 | Confirmed Slot: 884 | Finalized Slot: 852 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2061 | ◎500.001440000 -00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2062 | ◎500.001435000 -00:05:59 | Processed Slot: 885 | Confirmed Slot: 885 | Finalized Slot: 853 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2062 | ◎500.001435000 -00:05:59 | Processed Slot: 886 | Confirmed Slot: 886 | Finalized Slot: 854 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2063 | ◎500.001430000 -00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2064 | ◎500.001425000 -00:06:00 | Processed Slot: 887 | Confirmed Slot: 887 | Finalized Slot: 855 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2064 | ◎500.001425000 -00:06:00 | Processed Slot: 888 | Confirmed Slot: 888 | Finalized Slot: 856 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2065 | ◎500.001420000 -00:06:00 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2066 | ◎500.001415000 -00:06:01 | Processed Slot: 889 | Confirmed Slot: 889 | Finalized Slot: 857 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2066 | ◎500.001415000 -00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2067 | ◎500.001410000 -00:06:01 | Processed Slot: 890 | Confirmed Slot: 890 | Finalized Slot: 858 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2067 | ◎500.001410000 -00:06:01 | Processed Slot: 891 | Confirmed Slot: 891 | Finalized Slot: 859 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2068 | ◎500.001405000 -00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2069 | ◎500.001400000 -00:06:02 | Processed Slot: 892 | Confirmed Slot: 892 | Finalized Slot: 860 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2069 | ◎500.001400000 -00:06:02 | Processed Slot: 893 | Confirmed Slot: 893 | Finalized Slot: 861 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2070 | ◎500.001395000 -00:06:02 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2071 | ◎500.001390000 -00:06:03 | Processed Slot: 894 | Confirmed Slot: 894 | Finalized Slot: 862 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2071 | ◎500.001390000 -00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2072 | ◎500.001385000 -00:06:03 | Processed Slot: 895 | Confirmed Slot: 895 | Finalized Slot: 863 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2072 | ◎500.001385000 -00:06:03 | Processed Slot: 896 | Confirmed Slot: 896 | Finalized Slot: 864 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2073 | ◎500.001380000 -00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2074 | ◎500.001375000 -00:06:04 | Processed Slot: 897 | Confirmed Slot: 897 | Finalized Slot: 865 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2074 | ◎500.001375000 -00:06:04 | Processed Slot: 898 | Confirmed Slot: 898 | Finalized Slot: 866 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2075 | ◎500.001370000 -00:06:04 | Processed Slot: 899 | Confirmed Slot: 898 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2076 | ◎500.001370000 -00:06:05 | Processed Slot: 899 | Confirmed Slot: 899 | Finalized Slot: 867 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2076 | ◎500.001365000 -00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2077 | ◎500.001360000 -00:06:05 | Processed Slot: 900 | Confirmed Slot: 900 | Finalized Slot: 868 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2077 | ◎500.001360000 -00:06:05 | Processed Slot: 901 | Confirmed Slot: 901 | Finalized Slot: 869 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2078 | ◎500.001355000 -00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2079 | ◎500.001350000 -00:06:06 | Processed Slot: 902 | Confirmed Slot: 902 | Finalized Slot: 870 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2079 | ◎500.001350000 -00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2080 | ◎500.001345000 -00:06:06 | Processed Slot: 903 | Confirmed Slot: 903 | Finalized Slot: 871 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2080 | ◎500.001345000 -00:06:07 | Processed Slot: 904 | Confirmed Slot: 904 | Finalized Slot: 872 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2081 | ◎500.001340000 -00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2082 | ◎500.001335000 -00:06:07 | Processed Slot: 905 | Confirmed Slot: 905 | Finalized Slot: 873 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2082 | ◎500.001335000 -00:06:07 | Processed Slot: 906 | Confirmed Slot: 906 | Finalized Slot: 874 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2083 | ◎500.001330000 -00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2084 | ◎500.001325000 -00:06:08 | Processed Slot: 907 | Confirmed Slot: 907 | Finalized Slot: 875 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2084 | ◎500.001325000 -00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2085 | ◎500.001320000 -00:06:08 | Processed Slot: 908 | Confirmed Slot: 908 | Finalized Slot: 876 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2085 | ◎500.001320000 -00:06:09 | Processed Slot: 909 | Confirmed Slot: 909 | Finalized Slot: 877 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2086 | ◎500.001315000 -00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2087 | ◎500.001310000 -00:06:09 | Processed Slot: 910 | Confirmed Slot: 910 | Finalized Slot: 878 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2087 | ◎500.001310000 -00:06:09 | Processed Slot: 911 | Confirmed Slot: 911 | Finalized Slot: 879 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2088 | ◎500.001305000 -00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2089 | ◎500.001300000 -00:06:10 | Processed Slot: 912 | Confirmed Slot: 912 | Finalized Slot: 880 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2089 | ◎500.001300000 -00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2090 | ◎500.001295000 -00:06:10 | Processed Slot: 913 | Confirmed Slot: 913 | Finalized Slot: 881 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2090 | ◎500.001295000 -00:06:11 | Processed Slot: 914 | Confirmed Slot: 914 | Finalized Slot: 882 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2091 | ◎500.001290000 -00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2092 | ◎500.001285000 -00:06:11 | Processed Slot: 915 | Confirmed Slot: 915 | Finalized Slot: 883 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2092 | ◎500.001285000 -00:06:11 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2094 | ◎500.001285000 -00:06:12 | Processed Slot: 916 | Confirmed Slot: 916 | Finalized Slot: 884 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2094 | ◎500.001285000 -00:06:12 | Processed Slot: 917 | Confirmed Slot: 917 | Finalized Slot: 885 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2095 | ◎500.001280000 -00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2096 | ◎500.001275000 -00:06:12 | Processed Slot: 918 | Confirmed Slot: 918 | Finalized Slot: 886 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2096 | ◎500.001275000 -00:06:13 | Processed Slot: 919 | Confirmed Slot: 919 | Finalized Slot: 887 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2097 | ◎500.001270000 -00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2098 | ◎500.001265000 -00:06:13 | Processed Slot: 920 | Confirmed Slot: 920 | Finalized Slot: 888 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2098 | ◎500.001265000 -00:06:13 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2099 | ◎500.001260000 -00:06:14 | Processed Slot: 921 | Confirmed Slot: 921 | Finalized Slot: 889 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2099 | ◎500.001260000 -00:06:14 | Processed Slot: 922 | Confirmed Slot: 922 | Finalized Slot: 890 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2100 | ◎500.001255000 -00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2101 | ◎500.001250000 -00:06:14 | Processed Slot: 923 | Confirmed Slot: 923 | Finalized Slot: 891 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2101 | ◎500.001250000 -00:06:15 | Processed Slot: 924 | Confirmed Slot: 924 | Finalized Slot: 892 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2102 | ◎500.001245000 -00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2103 | ◎500.001240000 -00:06:15 | Processed Slot: 925 | Confirmed Slot: 925 | Finalized Slot: 893 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2103 | ◎500.001240000 -00:06:15 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2104 | ◎500.001235000 -00:06:16 | Processed Slot: 926 | Confirmed Slot: 926 | Finalized Slot: 894 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2104 | ◎500.001235000 -00:06:16 | Processed Slot: 927 | Confirmed Slot: 927 | Finalized Slot: 895 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2105 | ◎500.001230000 -00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2106 | ◎500.001225000 -00:06:16 | Processed Slot: 928 | Confirmed Slot: 928 | Finalized Slot: 896 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2106 | ◎500.001225000 -00:06:17 | Processed Slot: 929 | Confirmed Slot: 929 | Finalized Slot: 897 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2107 | ◎500.001220000 -00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2108 | ◎500.001215000 -00:06:17 | Processed Slot: 930 | Confirmed Slot: 930 | Finalized Slot: 898 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2108 | ◎500.001215000 -00:06:17 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2109 | ◎500.001210000 -00:06:18 | Processed Slot: 931 | Confirmed Slot: 931 | Finalized Slot: 899 | Full Snapshot Slot: 800 | Incremental Snapshot Slot: - | Transactions: 2109 | ◎500.001210000 -00:06:18 | Processed Slot: 932 | Confirmed Slot: 932 | Finalized Slot: 900 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2110 | ◎500.001205000 -00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2111 | ◎500.001200000 -00:06:18 | Processed Slot: 933 | Confirmed Slot: 933 | Finalized Slot: 901 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2111 | ◎500.001200000 -00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2112 | ◎500.001195000 -00:06:19 | Processed Slot: 934 | Confirmed Slot: 934 | Finalized Slot: 902 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2112 | ◎500.001195000 -00:06:19 | Processed Slot: 935 | Confirmed Slot: 935 | Finalized Slot: 903 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2113 | ◎500.001190000 -00:06:19 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2114 | ◎500.001185000 -00:06:20 | Processed Slot: 936 | Confirmed Slot: 936 | Finalized Slot: 904 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2114 | ◎500.001185000 -00:06:20 | Processed Slot: 937 | Confirmed Slot: 937 | Finalized Slot: 905 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2115 | ◎500.001180000 -00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2116 | ◎500.001175000 -00:06:20 | Processed Slot: 938 | Confirmed Slot: 938 | Finalized Slot: 906 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2116 | ◎500.001175000 -00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2117 | ◎500.001170000 -00:06:21 | Processed Slot: 939 | Confirmed Slot: 939 | Finalized Slot: 907 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2117 | ◎500.001170000 -00:06:21 | Processed Slot: 940 | Confirmed Slot: 940 | Finalized Slot: 908 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2118 | ◎500.001165000 -00:06:21 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2119 | ◎500.001160000 -00:06:22 | Processed Slot: 941 | Confirmed Slot: 941 | Finalized Slot: 909 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2119 | ◎500.001160000 -00:06:22 | Processed Slot: 942 | Confirmed Slot: 942 | Finalized Slot: 910 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2120 | ◎500.001155000 -00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2121 | ◎500.001150000 -00:06:22 | Processed Slot: 943 | Confirmed Slot: 943 | Finalized Slot: 911 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2121 | ◎500.001150000 -00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2122 | ◎500.001145000 -00:06:23 | Processed Slot: 944 | Confirmed Slot: 944 | Finalized Slot: 912 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2122 | ◎500.001145000 -00:06:23 | Processed Slot: 945 | Confirmed Slot: 945 | Finalized Slot: 913 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2123 | ◎500.001140000 -00:06:23 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2124 | ◎500.001135000 -00:06:24 | Processed Slot: 946 | Confirmed Slot: 946 | Finalized Slot: 914 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2124 | ◎500.001135000 -00:06:24 | Processed Slot: 947 | Confirmed Slot: 947 | Finalized Slot: 915 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2125 | ◎500.001130000 -00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2126 | ◎500.001125000 -00:06:24 | Processed Slot: 948 | Confirmed Slot: 948 | Finalized Slot: 916 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2126 | ◎500.001125000 -00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2127 | ◎500.001120000 -00:06:25 | Processed Slot: 949 | Confirmed Slot: 949 | Finalized Slot: 917 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2127 | ◎500.001120000 -00:06:25 | Processed Slot: 950 | Confirmed Slot: 950 | Finalized Slot: 918 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2129 | ◎500.001117500 -00:06:25 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2130 | ◎500.001112500 -00:06:26 | Processed Slot: 951 | Confirmed Slot: 951 | Finalized Slot: 919 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2130 | ◎500.001112500 -00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2131 | ◎500.001107500 -00:06:26 | Processed Slot: 952 | Confirmed Slot: 952 | Finalized Slot: 920 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2131 | ◎500.001107500 -00:06:26 | Processed Slot: 953 | Confirmed Slot: 953 | Finalized Slot: 921 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2132 | ◎500.001102500 -00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2133 | ◎500.001097500 -00:06:27 | Processed Slot: 954 | Confirmed Slot: 954 | Finalized Slot: 922 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2133 | ◎500.001097500 -00:06:27 | Processed Slot: 955 | Confirmed Slot: 955 | Finalized Slot: 923 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2134 | ◎500.001092500 -00:06:27 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2135 | ◎500.001087500 -00:06:28 | Processed Slot: 956 | Confirmed Slot: 956 | Finalized Slot: 924 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2135 | ◎500.001087500 -00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2136 | ◎500.001082500 -00:06:28 | Processed Slot: 957 | Confirmed Slot: 957 | Finalized Slot: 925 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2136 | ◎500.001082500 -00:06:28 | Processed Slot: 958 | Confirmed Slot: 958 | Finalized Slot: 926 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2137 | ◎500.001077500 -00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2138 | ◎500.001072500 -00:06:29 | Processed Slot: 959 | Confirmed Slot: 959 | Finalized Slot: 927 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2138 | ◎500.001072500 -00:06:29 | Processed Slot: 960 | Confirmed Slot: 960 | Finalized Slot: 928 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2139 | ◎500.001067500 -00:06:29 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2140 | ◎500.001062500 -00:06:30 | Processed Slot: 961 | Confirmed Slot: 961 | Finalized Slot: 929 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2140 | ◎500.001062500 -00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2141 | ◎500.001057500 -00:06:30 | Processed Slot: 962 | Confirmed Slot: 962 | Finalized Slot: 930 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2141 | ◎500.001057500 -00:06:30 | Processed Slot: 963 | Confirmed Slot: 963 | Finalized Slot: 931 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2142 | ◎500.001052500 -00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2143 | ◎500.001047500 -00:06:31 | Processed Slot: 964 | Confirmed Slot: 964 | Finalized Slot: 932 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2143 | ◎500.001047500 -00:06:31 | Processed Slot: 965 | Confirmed Slot: 965 | Finalized Slot: 933 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2144 | ◎500.001042500 -00:06:31 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2145 | ◎500.001037500 -00:06:32 | Processed Slot: 966 | Confirmed Slot: 966 | Finalized Slot: 934 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2145 | ◎500.001037500 -00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2146 | ◎500.001032500 -00:06:32 | Processed Slot: 967 | Confirmed Slot: 967 | Finalized Slot: 935 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2146 | ◎500.001032500 -00:06:33 | Processed Slot: 968 | Confirmed Slot: 968 | Finalized Slot: 936 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2147 | ◎500.001027500 -00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2148 | ◎500.001022500 -00:06:33 | Processed Slot: 969 | Confirmed Slot: 969 | Finalized Slot: 937 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2148 | ◎500.001022500 -00:06:33 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2149 | ◎500.001017500 -00:06:34 | Processed Slot: 970 | Confirmed Slot: 970 | Finalized Slot: 938 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2149 | ◎500.001017500 -00:06:34 | Processed Slot: 971 | Confirmed Slot: 971 | Finalized Slot: 939 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2150 | ◎500.001012500 -00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2151 | ◎500.001007500 -00:06:34 | Processed Slot: 972 | Confirmed Slot: 972 | Finalized Slot: 940 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2151 | ◎500.001007500 -00:06:35 | Processed Slot: 973 | Confirmed Slot: 973 | Finalized Slot: 941 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2152 | ◎500.001002500 -00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2153 | ◎500.000997500 -00:06:35 | Processed Slot: 974 | Confirmed Slot: 974 | Finalized Slot: 942 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2153 | ◎500.000997500 -00:06:35 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2154 | ◎500.000992500 -00:06:36 | Processed Slot: 975 | Confirmed Slot: 975 | Finalized Slot: 943 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2154 | ◎500.000992500 -00:06:36 | Processed Slot: 976 | Confirmed Slot: 976 | Finalized Slot: 944 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2155 | ◎500.000987500 -00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2156 | ◎500.000982500 -00:06:36 | Processed Slot: 977 | Confirmed Slot: 977 | Finalized Slot: 945 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2156 | ◎500.000982500 -00:06:37 | Processed Slot: 978 | Confirmed Slot: 978 | Finalized Slot: 946 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2157 | ◎500.000977500 -00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2158 | ◎500.000972500 -00:06:37 | Processed Slot: 979 | Confirmed Slot: 979 | Finalized Slot: 947 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2158 | ◎500.000972500 -00:06:37 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2159 | ◎500.000967500 -00:06:38 | Processed Slot: 980 | Confirmed Slot: 980 | Finalized Slot: 948 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2159 | ◎500.000967500 -00:06:38 | Processed Slot: 981 | Confirmed Slot: 981 | Finalized Slot: 949 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2160 | ◎500.000962500 -00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2161 | ◎500.000957500 -00:06:38 | Processed Slot: 982 | Confirmed Slot: 982 | Finalized Slot: 950 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2161 | ◎500.000957500 -00:06:39 | Processed Slot: 983 | Confirmed Slot: 983 | Finalized Slot: 951 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2162 | ◎500.000952500 -00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2164 | ◎500.000950000 -00:06:39 | Processed Slot: 984 | Confirmed Slot: 984 | Finalized Slot: 952 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2164 | ◎500.000950000 -00:06:39 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2165 | ◎500.000945000 -00:06:40 | Processed Slot: 985 | Confirmed Slot: 985 | Finalized Slot: 953 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2165 | ◎500.000945000 -00:06:40 | Processed Slot: 986 | Confirmed Slot: 986 | Finalized Slot: 954 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2166 | ◎500.000940000 -00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2167 | ◎500.000935000 -00:06:40 | Processed Slot: 987 | Confirmed Slot: 987 | Finalized Slot: 955 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2167 | ◎500.000935000 -00:06:41 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2168 | ◎500.000930000 -00:06:41 | Processed Slot: 988 | Confirmed Slot: 988 | Finalized Slot: 956 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2168 | ◎500.000930000 -00:06:41 | Processed Slot: 989 | Confirmed Slot: 989 | Finalized Slot: 957 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2169 | ◎500.000925000 -00:06:41 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2170 | ◎500.000920000 -00:06:42 | Processed Slot: 990 | Confirmed Slot: 990 | Finalized Slot: 958 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2170 | ◎500.000920000 -00:06:42 | Processed Slot: 991 | Confirmed Slot: 991 | Finalized Slot: 959 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2171 | ◎500.000915000 -00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2172 | ◎500.000910000 -00:06:42 | Processed Slot: 992 | Confirmed Slot: 992 | Finalized Slot: 960 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2172 | ◎500.000910000 -00:06:43 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2173 | ◎500.000905000 -00:06:43 | Processed Slot: 993 | Confirmed Slot: 993 | Finalized Slot: 961 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2173 | ◎500.000905000 -00:06:43 | Processed Slot: 994 | Confirmed Slot: 994 | Finalized Slot: 962 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2174 | ◎500.000900000 -00:06:43 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2175 | ◎500.000895000 -00:06:44 | Processed Slot: 995 | Confirmed Slot: 995 | Finalized Slot: 963 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2175 | ◎500.000895000 -00:06:44 | Processed Slot: 996 | Confirmed Slot: 996 | Finalized Slot: 964 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2176 | ◎500.000890000 -00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2177 | ◎500.000885000 -00:06:44 | Processed Slot: 997 | Confirmed Slot: 997 | Finalized Slot: 965 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2177 | ◎500.000885000 -00:06:45 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2178 | ◎500.000880000 -00:06:45 | Processed Slot: 998 | Confirmed Slot: 998 | Finalized Slot: 966 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2178 | ◎500.000880000 -00:06:45 | Processed Slot: 999 | Confirmed Slot: 999 | Finalized Slot: 967 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2179 | ◎500.000875000 -00:06:45 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2180 | ◎500.000870000 -00:06:46 | Processed Slot: 1000 | Confirmed Slot: 1000 | Finalized Slot: 968 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2180 | ◎500.000870000 -00:06:46 | Processed Slot: 1001 | Confirmed Slot: 1001 | Finalized Slot: 969 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2181 | ◎500.000865000 -00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2182 | ◎500.000860000 -00:06:46 | Processed Slot: 1002 | Confirmed Slot: 1002 | Finalized Slot: 970 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2182 | ◎500.000860000 -00:06:47 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2183 | ◎500.000855000 -00:06:47 | Processed Slot: 1003 | Confirmed Slot: 1003 | Finalized Slot: 971 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2183 | ◎500.000855000 -00:06:47 | Processed Slot: 1004 | Confirmed Slot: 1004 | Finalized Slot: 972 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2184 | ◎500.000850000 -00:06:47 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2185 | ◎500.000845000 -00:06:48 | Processed Slot: 1005 | Confirmed Slot: 1005 | Finalized Slot: 973 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2185 | ◎500.000845000 -00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2186 | ◎500.000840000 -00:06:48 | Processed Slot: 1006 | Confirmed Slot: 1006 | Finalized Slot: 974 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2186 | ◎500.000840000 -00:06:48 | Processed Slot: 1007 | Confirmed Slot: 1007 | Finalized Slot: 975 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2187 | ◎500.000835000 -00:06:49 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2188 | ◎500.000830000 -00:06:49 | Processed Slot: 1008 | Confirmed Slot: 1008 | Finalized Slot: 976 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2188 | ◎500.000830000 -00:06:49 | Processed Slot: 1009 | Confirmed Slot: 1009 | Finalized Slot: 977 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2189 | ◎500.000825000 -00:06:49 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2190 | ◎500.000820000 -00:06:50 | Processed Slot: 1010 | Confirmed Slot: 1010 | Finalized Slot: 978 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2190 | ◎500.000820000 -00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2191 | ◎500.000815000 -00:06:50 | Processed Slot: 1011 | Confirmed Slot: 1011 | Finalized Slot: 979 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2191 | ◎500.000815000 -00:06:50 | Processed Slot: 1012 | Confirmed Slot: 1012 | Finalized Slot: 980 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2192 | ◎500.000810000 -00:06:51 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2193 | ◎500.000805000 -00:06:51 | Processed Slot: 1013 | Confirmed Slot: 1013 | Finalized Slot: 981 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2193 | ◎500.000805000 -00:06:51 | Processed Slot: 1014 | Confirmed Slot: 1014 | Finalized Slot: 982 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2194 | ◎500.000800000 -00:06:51 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2195 | ◎500.000795000 -00:06:52 | Processed Slot: 1015 | Confirmed Slot: 1015 | Finalized Slot: 983 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2195 | ◎500.000795000 -00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2196 | ◎500.000790000 -00:06:52 | Processed Slot: 1016 | Confirmed Slot: 1016 | Finalized Slot: 984 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2196 | ◎500.000790000 -00:06:52 | Processed Slot: 1017 | Confirmed Slot: 1017 | Finalized Slot: 985 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2197 | ◎500.000785000 -00:06:53 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2199 | ◎500.000782500 -00:06:53 | Processed Slot: 1018 | Confirmed Slot: 1018 | Finalized Slot: 986 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2199 | ◎500.000782500 -00:06:53 | Processed Slot: 1019 | Confirmed Slot: 1019 | Finalized Slot: 987 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2200 | ◎500.000777500 -00:06:53 | Processed Slot: 1020 | Confirmed Slot: 1019 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2201 | ◎500.000777500 -00:06:54 | Processed Slot: 1020 | Confirmed Slot: 1020 | Finalized Slot: 988 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2201 | ◎500.000772500 -00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2202 | ◎500.000767500 -00:06:54 | Processed Slot: 1021 | Confirmed Slot: 1021 | Finalized Slot: 989 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2202 | ◎500.000767500 -00:06:54 | Processed Slot: 1022 | Confirmed Slot: 1022 | Finalized Slot: 990 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2203 | ◎500.000762500 -00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2204 | ◎500.000757500 -00:06:55 | Processed Slot: 1023 | Confirmed Slot: 1023 | Finalized Slot: 991 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2204 | ◎500.000757500 -00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2205 | ◎500.000752500 -00:06:55 | Processed Slot: 1024 | Confirmed Slot: 1024 | Finalized Slot: 992 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2205 | ◎500.000752500 -00:06:56 | Processed Slot: 1025 | Confirmed Slot: 1025 | Finalized Slot: 993 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2206 | ◎500.000747500 -00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2207 | ◎500.000742500 -00:06:56 | Processed Slot: 1026 | Confirmed Slot: 1026 | Finalized Slot: 994 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2207 | ◎500.000742500 -00:06:56 | Processed Slot: 1027 | Confirmed Slot: 1027 | Finalized Slot: 995 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2208 | ◎500.000737500 -00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2209 | ◎500.000732500 -00:06:57 | Processed Slot: 1028 | Confirmed Slot: 1028 | Finalized Slot: 996 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2209 | ◎500.000732500 -00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2210 | ◎500.000727500 -00:06:57 | Processed Slot: 1029 | Confirmed Slot: 1029 | Finalized Slot: 997 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2210 | ◎500.000727500 -00:06:58 | Processed Slot: 1030 | Confirmed Slot: 1030 | Finalized Slot: 998 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2211 | ◎500.000722500 -00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2212 | ◎500.000717500 -00:06:58 | Processed Slot: 1031 | Confirmed Slot: 1031 | Finalized Slot: 999 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2212 | ◎500.000717500 -00:06:58 | Processed Slot: 1032 | Confirmed Slot: 1032 | Finalized Slot: 1000 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2213 | ◎500.000712500 -00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2214 | ◎500.000707500 -00:06:59 | Processed Slot: 1033 | Confirmed Slot: 1033 | Finalized Slot: 1001 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2214 | ◎500.000707500 -00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2215 | ◎500.000702500 -00:06:59 | Processed Slot: 1034 | Confirmed Slot: 1034 | Finalized Slot: 1002 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2215 | ◎500.000702500 -00:07:00 | Processed Slot: 1035 | Confirmed Slot: 1035 | Finalized Slot: 1003 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2216 | ◎500.000697500 -00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2217 | ◎500.000692500 -00:07:00 | Processed Slot: 1036 | Confirmed Slot: 1036 | Finalized Slot: 1004 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2217 | ◎500.000692500 -00:07:00 | Processed Slot: 1037 | Confirmed Slot: 1037 | Finalized Slot: 1005 | Full Snapshot Slot: 900 | Incremental Snapshot Slot: - | Transactions: 2218 | ◎500.000687500 -00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1037 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2219 | ◎500.000687500 -00:07:01 | Processed Slot: 1038 | Confirmed Slot: 1038 | Finalized Slot: 1006 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2219 | ◎500.000682500 -00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2220 | ◎500.000677500 -00:07:01 | Processed Slot: 1039 | Confirmed Slot: 1039 | Finalized Slot: 1007 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2220 | ◎500.000677500 -00:07:02 | Processed Slot: 1040 | Confirmed Slot: 1040 | Finalized Slot: 1008 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2221 | ◎500.000672500 -00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2222 | ◎500.000667500 -00:07:02 | Processed Slot: 1041 | Confirmed Slot: 1041 | Finalized Slot: 1009 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2222 | ◎500.000667500 -00:07:02 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2223 | ◎500.000662500 -00:07:03 | Processed Slot: 1042 | Confirmed Slot: 1042 | Finalized Slot: 1010 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2223 | ◎500.000662500 -00:07:03 | Processed Slot: 1043 | Confirmed Slot: 1043 | Finalized Slot: 1011 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2224 | ◎500.000657500 -00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2225 | ◎500.000652500 -00:07:03 | Processed Slot: 1044 | Confirmed Slot: 1044 | Finalized Slot: 1012 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2225 | ◎500.000652500 -00:07:04 | Processed Slot: 1045 | Confirmed Slot: 1045 | Finalized Slot: 1013 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2226 | ◎500.000647500 -00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2227 | ◎500.000642500 -00:07:04 | Processed Slot: 1046 | Confirmed Slot: 1046 | Finalized Slot: 1014 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2227 | ◎500.000642500 -00:07:04 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2228 | ◎500.000637500 -00:07:05 | Processed Slot: 1047 | Confirmed Slot: 1047 | Finalized Slot: 1015 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2228 | ◎500.000637500 -00:07:05 | Processed Slot: 1048 | Confirmed Slot: 1048 | Finalized Slot: 1016 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2229 | ◎500.000632500 -00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2230 | ◎500.000627500 -00:07:05 | Processed Slot: 1049 | Confirmed Slot: 1049 | Finalized Slot: 1017 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2230 | ◎500.000627500 -00:07:06 | Processed Slot: 1050 | Confirmed Slot: 1050 | Finalized Slot: 1018 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2231 | ◎500.000622500 -00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2232 | ◎500.000617500 -00:07:06 | Processed Slot: 1051 | Confirmed Slot: 1051 | Finalized Slot: 1019 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2232 | ◎500.000617500 -00:07:06 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2233 | ◎500.000612500 -00:07:07 | Processed Slot: 1052 | Confirmed Slot: 1052 | Finalized Slot: 1020 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2233 | ◎500.000612500 -00:07:07 | Processed Slot: 1053 | Confirmed Slot: 1053 | Finalized Slot: 1021 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2234 | ◎500.000607500 -00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2235 | ◎500.000602500 -00:07:07 | Processed Slot: 1054 | Confirmed Slot: 1054 | Finalized Slot: 1022 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2235 | ◎500.000602500 -00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2236 | ◎500.000597500 -00:07:08 | Processed Slot: 1055 | Confirmed Slot: 1055 | Finalized Slot: 1023 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2236 | ◎500.000597500 -00:07:08 | Processed Slot: 1056 | Confirmed Slot: 1056 | Finalized Slot: 1024 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2237 | ◎500.000592500 -00:07:08 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2238 | ◎500.000587500 -00:07:09 | Processed Slot: 1057 | Confirmed Slot: 1057 | Finalized Slot: 1025 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2238 | ◎500.000587500 -00:07:09 | Processed Slot: 1058 | Confirmed Slot: 1058 | Finalized Slot: 1026 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2239 | ◎500.000582500 -00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2240 | ◎500.000577500 -00:07:09 | Processed Slot: 1059 | Confirmed Slot: 1059 | Finalized Slot: 1027 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2240 | ◎500.000577500 -00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2241 | ◎500.000572500 -00:07:10 | Processed Slot: 1060 | Confirmed Slot: 1060 | Finalized Slot: 1028 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2241 | ◎500.000572500 -00:07:10 | Processed Slot: 1061 | Confirmed Slot: 1061 | Finalized Slot: 1029 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2242 | ◎500.000567500 -00:07:10 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2243 | ◎500.000562500 -00:07:11 | Processed Slot: 1062 | Confirmed Slot: 1062 | Finalized Slot: 1030 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2243 | ◎500.000562500 -00:07:11 | Processed Slot: 1063 | Confirmed Slot: 1063 | Finalized Slot: 1031 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2244 | ◎500.000557500 -00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2245 | ◎500.000552500 -00:07:11 | Processed Slot: 1064 | Confirmed Slot: 1064 | Finalized Slot: 1032 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2245 | ◎500.000552500 -00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2246 | ◎500.000547500 -00:07:12 | Processed Slot: 1065 | Confirmed Slot: 1065 | Finalized Slot: 1033 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2246 | ◎500.000547500 -00:07:12 | Processed Slot: 1066 | Confirmed Slot: 1066 | Finalized Slot: 1034 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2247 | ◎500.000542500 -00:07:12 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2248 | ◎500.000537500 -00:07:13 | Processed Slot: 1067 | Confirmed Slot: 1067 | Finalized Slot: 1035 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2248 | ◎500.000537500 -00:07:13 | Processed Slot: 1068 | Confirmed Slot: 1068 | Finalized Slot: 1036 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2250 | ◎500.000535000 -00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2251 | ◎500.000530000 -00:07:13 | Processed Slot: 1069 | Confirmed Slot: 1069 | Finalized Slot: 1037 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2251 | ◎500.000530000 -00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2253 | ◎500.000527500 -00:07:14 | Processed Slot: 1070 | Confirmed Slot: 1070 | Finalized Slot: 1038 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2253 | ◎500.000527500 -00:07:14 | Processed Slot: 1071 | Confirmed Slot: 1071 | Finalized Slot: 1039 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2254 | ◎500.000522500 -00:07:14 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2255 | ◎500.000517500 -00:07:15 | Processed Slot: 1072 | Confirmed Slot: 1072 | Finalized Slot: 1040 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2255 | ◎500.000517500 -00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2257 | ◎500.000515000 -00:07:15 | Processed Slot: 1073 | Confirmed Slot: 1073 | Finalized Slot: 1041 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2257 | ◎500.000515000 -00:07:15 | Processed Slot: 1074 | Confirmed Slot: 1074 | Finalized Slot: 1042 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2258 | ◎500.000510000 -00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2260 | ◎500.000507500 -00:07:16 | Processed Slot: 1075 | Confirmed Slot: 1075 | Finalized Slot: 1043 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2260 | ◎500.000507500 -00:07:16 | Processed Slot: 1076 | Confirmed Slot: 1076 | Finalized Slot: 1044 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2261 | ◎500.000502500 -00:07:16 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2262 | ◎500.000497500 -00:07:17 | Processed Slot: 1077 | Confirmed Slot: 1077 | Finalized Slot: 1045 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2262 | ◎500.000497500 -00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2264 | ◎500.000495000 -00:07:17 | Processed Slot: 1078 | Confirmed Slot: 1078 | Finalized Slot: 1046 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2264 | ◎500.000495000 -00:07:17 | Processed Slot: 1079 | Confirmed Slot: 1079 | Finalized Slot: 1047 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2265 | ◎500.000490000 -00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2267 | ◎500.000487500 -00:07:18 | Processed Slot: 1080 | Confirmed Slot: 1080 | Finalized Slot: 1048 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2267 | ◎500.000487500 -00:07:18 | Processed Slot: 1081 | Confirmed Slot: 1081 | Finalized Slot: 1049 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2268 | ◎500.000482500 -00:07:18 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2269 | ◎500.000477500 -00:07:19 | Processed Slot: 1082 | Confirmed Slot: 1082 | Finalized Slot: 1050 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2269 | ◎500.000477500 -00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2271 | ◎500.000475000 -00:07:19 | Processed Slot: 1083 | Confirmed Slot: 1083 | Finalized Slot: 1051 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2271 | ◎500.000475000 -00:07:19 | Processed Slot: 1084 | Confirmed Slot: 1084 | Finalized Slot: 1052 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2272 | ◎500.000470000 -00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2274 | ◎500.000467500 -00:07:20 | Processed Slot: 1085 | Confirmed Slot: 1085 | Finalized Slot: 1053 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2274 | ◎500.000467500 -00:07:20 | Processed Slot: 1086 | Confirmed Slot: 1086 | Finalized Slot: 1054 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2275 | ◎500.000462500 -00:07:20 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2276 | ◎500.000457500 -00:07:21 | Processed Slot: 1087 | Confirmed Slot: 1087 | Finalized Slot: 1055 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2276 | ◎500.000457500 -00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2278 | ◎500.000455000 -00:07:21 | Processed Slot: 1088 | Confirmed Slot: 1088 | Finalized Slot: 1056 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2278 | ◎500.000455000 -00:07:21 | Processed Slot: 1089 | Confirmed Slot: 1089 | Finalized Slot: 1057 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2279 | ◎500.000450000 -00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2281 | ◎500.000447500 -00:07:22 | Processed Slot: 1090 | Confirmed Slot: 1090 | Finalized Slot: 1058 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2281 | ◎500.000447500 -00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2282 | ◎500.000442500 -00:07:22 | Processed Slot: 1091 | Confirmed Slot: 1091 | Finalized Slot: 1059 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2282 | ◎500.000442500 -00:07:23 | Processed Slot: 1092 | Confirmed Slot: 1092 | Finalized Slot: 1060 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2283 | ◎500.000437500 -00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2285 | ◎500.000435000 -00:07:23 | Processed Slot: 1093 | Confirmed Slot: 1093 | Finalized Slot: 1061 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2285 | ◎500.000435000 -00:07:23 | Processed Slot: 1094 | Confirmed Slot: 1094 | Finalized Slot: 1062 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2286 | ◎500.000430000 -00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2288 | ◎500.000427500 -00:07:24 | Processed Slot: 1095 | Confirmed Slot: 1095 | Finalized Slot: 1063 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2288 | ◎500.000427500 -00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2289 | ◎500.000422500 -00:07:24 | Processed Slot: 1096 | Confirmed Slot: 1096 | Finalized Slot: 1064 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2289 | ◎500.000422500 -00:07:25 | Processed Slot: 1097 | Confirmed Slot: 1097 | Finalized Slot: 1065 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2290 | ◎500.000417500 -00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2292 | ◎500.000415000 -00:07:25 | Processed Slot: 1098 | Confirmed Slot: 1098 | Finalized Slot: 1066 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2292 | ◎500.000415000 -00:07:25 | Processed Slot: 1099 | Confirmed Slot: 1099 | Finalized Slot: 1067 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2293 | ◎500.000410000 -00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2295 | ◎500.000407500 -00:07:26 | Processed Slot: 1100 | Confirmed Slot: 1100 | Finalized Slot: 1068 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2295 | ◎500.000407500 -00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2296 | ◎500.000402500 -00:07:26 | Processed Slot: 1101 | Confirmed Slot: 1101 | Finalized Slot: 1069 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2296 | ◎500.000402500 -00:07:27 | Processed Slot: 1102 | Confirmed Slot: 1102 | Finalized Slot: 1070 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2297 | ◎500.000397500 -00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2299 | ◎500.000395000 -00:07:27 | Processed Slot: 1103 | Confirmed Slot: 1103 | Finalized Slot: 1071 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2299 | ◎500.000395000 -00:07:27 | Processed Slot: 1104 | Confirmed Slot: 1104 | Finalized Slot: 1072 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2300 | ◎500.000390000 -00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2302 | ◎500.000387500 -00:07:28 | Processed Slot: 1105 | Confirmed Slot: 1105 | Finalized Slot: 1073 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2302 | ◎500.000387500 -00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2303 | ◎500.000382500 -00:07:28 | Processed Slot: 1106 | Confirmed Slot: 1106 | Finalized Slot: 1074 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2303 | ◎500.000382500 -00:07:29 | Processed Slot: 1107 | Confirmed Slot: 1107 | Finalized Slot: 1075 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2304 | ◎500.000377500 -00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2306 | ◎500.000375000 -00:07:29 | Processed Slot: 1108 | Confirmed Slot: 1108 | Finalized Slot: 1076 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2306 | ◎500.000375000 -00:07:29 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2307 | ◎500.000370000 -00:07:30 | Processed Slot: 1109 | Confirmed Slot: 1109 | Finalized Slot: 1077 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2307 | ◎500.000370000 -00:07:30 | Processed Slot: 1110 | Confirmed Slot: 1110 | Finalized Slot: 1078 | Full Snapshot Slot: 1000 | Incremental Snapshot Slot: - | Transactions: 2309 | ◎500.000367500